26.07.2018, 17:52
Why are you using shorter and shorter timers? If you want something to happen once an hour, use a one hour timer:
Simple!
Then use the timerfix plugin to improve the accuracy. Don’t use ad-hoc half-baked pawn solutions that just end up vastly more complex code.
Код:
task RaceTimer[60 * 60 * 1000]() { // Called once an hour - no messing, no misses! }
Then use the timerfix plugin to improve the accuracy. Don’t use ad-hoc half-baked pawn solutions that just end up vastly more complex code.