18.09.2013, 05:21
You should use the method below to destroy a SA:MP timer, at least this is how I've always done it
This should work:
This should work:
Код:
new YourTimerName;
YourTimerName = SetTimer("YourTimerCallback", 1000, true); //Replace these arguments
KillTimer(YourTimerName);
