lua_plugin if (WantConfig) then return { name = 'flagReset' } end local period = 3600 local lastTime = BZ.GetTimer() function CallIn.TickEvent() local nowTime = BZ.GetTimer() if (period < BZ.DiffTimers(nowTime, lastTime)) then BZ.ResetFlags(true) lastTime = nowTime end-- end-- end