TheHordeUndead_PRC8/_module/nss/templegateattak.nss
Jaysyn904 e0ec0015e6 Initial upload
Initial upload
2023-09-21 20:25:34 -04:00

15 lines
348 B
Plaintext

void main()
{
if (GetLocalInt(OBJECT_SELF,"NW_DO_ONCE") != 0)
{
return;
}
object oScout = GetObjectByTag("Henrick");
ActionDoCommand(SetLocalInt(OBJECT_SELF, "NW_DO_ONCE", 1));
ActionWait(30.0f);
ActionDoCommand(SetLocalInt(oScout, "nTempleGate", 1));
ActionWait(60.0);
ActionDoCommand(SetLocalInt(OBJECT_SELF, "NW_DO_ONCE", 0));
}