Amon_PRC8/_module/nss/locktimer.nss
Jaysyn904 c5cffc37af Initial Commit
Initial Commit [v1.01]
2025-04-03 19:00:46 -04:00

14 lines
260 B
Plaintext

void main()
{
int nIncrement = GetLocalInt(OBJECT_SELF, "DeleteTimer");
int nTimeSet = nIncrement + 1;
SetLocalInt(OBJECT_SELF, "DeleteTimer", nTimeSet);
if (GetLocalInt(OBJECT_SELF, "DeleteTimer") >= 10)
{
SetLocked(OBJECT_SELF, TRUE);
}
}