06.07.2010, 07:50
pawn Код:
SetTimer(Zone, 1, 12000,);
Second of all, check the parameters of SetTimer: SetTimer(funcname[], interval, repeating)
pawn Код:
SetTimer(Zone, 1, 12000,); // You have a , at the end
SetTimer("Zone", 1, 12000); // Function name needs "" around them.
SetTimer("Zone", 12000, 1); // You switched interval and repeating around.
pawn Код:
forward Zone();
SetTimer("Zone", 12000, 1);