generated from Jaysyn/ModuleTemplate
Initial Commit
Initial Commit
This commit is contained in:
16
_module/nss/deity_abort.nss
Normal file
16
_module/nss/deity_abort.nss
Normal file
@@ -0,0 +1,16 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user