Reverted to 4.56 to track down a bug that started in 4.57. Bugfixed back to 4.61. It's amazing the damage that one skipped case statement can do.
11 lines
302 B
Plaintext
11 lines
302 B
Plaintext
#include "moi_inc_moifunc"
|
|
#include "psi_inc_psifunc"
|
|
|
|
void main()
|
|
{
|
|
object oMeldshaper = OBJECT_SELF;
|
|
int nEssentia = GetEssentiaInvestedFeat(oMeldshaper, FEAT_AZURE_TALENT);
|
|
if (GetCanBindChakra(oMeldshaper, CHAKRA_CROWN)) nEssentia += 2;
|
|
|
|
GainPowerPoints(oMeldshaper, nEssentia, TRUE, TRUE);
|
|
} |