AOC_PRC8/_module/nss/setxp_hi.nss
Jaysyn904 5e558169a0 Initial Commit
Initial Commit
2025-04-03 11:24:16 -04:00

13 lines
372 B
Plaintext

void main()
{
object oPC = GetPCSpeaker();
int oXP = GetLocalInt(oPC, "TARGET_XP");
effect eVis = EffectVisualEffect(VFX_FNF_LOS_HOLY_10);
ActionPauseConversation();
ActionCastFakeSpellAtObject(SPELL_AID, oPC);
DelayCommand(2.5, SetXP(oPC, oXP));
DelayCommand(2.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oPC));
DelayCommand(2.75, ActionResumeConversation());
}