15 lines
349 B
Plaintext
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));
|
|
}
|