15.11.2013, 14:58
I mean that SetTimer uses as parameter the interval.
So if you want it to be called every second instead of 8, you should use 1000 as interval (in milliseconds - it's 1 second).
pawn Код:
SetTimer(funcname[], interval, repeating);
pawn Код:
SetTimer("OnMapUpdate", 1000, true);