TheHordeOrcs_PRC8/_module/nss/templegateattak.nss
Jaysyn904 defc8f9f6d Re-uploaded instead of migrated
Re-uploaded instead of migrated.
2024-08-03 15:05:13 -04:00

15 lines
349 B
Plaintext

void main()
{
if (GetLocalInt(OBJECT_SELF,"NW_DO_ONCE") != 0)
{
return;
}
object oScout = GetObjectByTag("Lomiolad");
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));
}