TheHordeUndead_PRC8/_module/nss/templegateattak.nss

15 lines
348 B
Plaintext
Raw Normal View History

2023-09-21 20:25:34 -04:00
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));
}