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

12 lines
332 B
Plaintext

void main()
{
int delayID = 5001; //keep this the same as defined in lel_gong.
int gongTimer = GetLocalInt(OBJECT_SELF, "gongTimer");
if(gongTimer > 0)
{
gongTimer--;
SetLocalInt(OBJECT_SELF, "gongTimer", gongTimer);
DelayCommand(60.0, SignalEvent(OBJECT_SELF, EventUserDefined(delayID)));
}
}