Files
Anphillia_PRC8/_module/nss/light_decay.nss
Jaysyn904 28cdb617b3 Initial commit
Adding all of the current content for Anphillia Unlimited.
2024-01-04 07:49:38 -05:00

12 lines
263 B
Plaintext

void main()
{
int myTimer = GetLocalInt(OBJECT_SELF, "TIMER");
myTimer = myTimer - 1;
if (myTimer < 1)
{
SetPlotFlag(OBJECT_SELF, FALSE);
DestroyObject(OBJECT_SELF, 1.0);
}
SetLocalInt(OBJECT_SELF, "TIMER", myTimer);
}