TheHordeOrcs_PRC8/_module/nss/northgateattak.nss

15 lines
348 B
Plaintext
Raw Permalink Normal View History

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, "nNorthGate", 1));
ActionWait(60.0);
ActionDoCommand(SetLocalInt(OBJECT_SELF, "NW_DO_ONCE", 0));
}