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

17 lines
377 B
Plaintext

void main()
{
object oPC = GetFirstPC();
int nInt = GetLocalInt(oPC, "shrine");
while (GetIsObjectValid(oPC))
{
if(nInt==1)
{
SetLocalInt(oPC, "shrine", 1);
AssignCommand(oPC, ClearAllActions());
DelayCommand(0.2, AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_BOW)));
}
oPC = GetNextPC();
}
}