HiddenTradition_PRC8/_module/nss/ro_dei_gnostic.nss
2024-06-20 15:47:42 -04:00

22 lines
366 B
Plaintext

void main()
{
// apply whiz-bang FX
object oPC = GetPCSpeaker();
effect eVisual = EffectVisualEffect(VFX_IMP_RESTORATION_GREATER);
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVisual, oPC);
// Give the speaker some XP
GiveXPToCreature(oPC, 44);
//Change Alignment to Chaotic
AdjustAlignment(oPC, ALIGNMENT_CHAOTIC, 5);
}