EN6_PRC8/_module/nss/tm1_enter.nss
Jaysyn904 a6f6db7303 Initial commit
Initial commit.  Updated release archive.
2024-06-13 15:08:33 -04:00

13 lines
278 B
Plaintext

void main()
{
object oTrap;
if (GetLocalInt(OBJECT_SELF,"RunOnce") == 0)
{
oTrap=GetObjectByTag("TM1_Teleport" + IntToString(Random(2)+1));
SetLocalInt(oTrap,"Active",1);
SetLocalInt(OBJECT_SELF,"RunOnce",1);
}
ExecuteScript("en6_areaenter",OBJECT_SELF);
}