Amon_PRC8/_module/nss/killgate.nss

18 lines
322 B
Plaintext
Raw Normal View History

2025-04-03 19:00:46 -04:00
void main()
{
ExportAllCharacters();
int nIncrement = GetLocalInt(OBJECT_SELF, "KillGate1");
int nTimeSet = nIncrement + 1;
SetLocalInt(OBJECT_SELF, "KillGate1", nTimeSet);
if (GetLocalInt(OBJECT_SELF, "KillGate1") == 10)
{
DestroyObject(OBJECT_SELF);
}
}