15.11.2013, 17:47
Because they do not exist. I told you to search for "OnMapUpdate" only (without the quotes "" of course).
was an example of the parameters of the SetTimer.
is the correct one which calls OnMapUpdate every second. You'll need to find where you set the timer about OnMapUpdate in your script and replace it with the above code.
pawn Код:
SetTimer(funcname[], interval, repeating);
pawn Код:
SetTimer("OnMapUpdate", 1000, true);