AOC_PRC8/_module/nss/deity_abort.nss

17 lines
377 B
Plaintext
Raw Normal View History

2025-04-03 11:24:16 -04:00
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();
}
}