Undefined symbol (loop) - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Undefined symbol (loop) (
/showthread.php?tid=297385)
Undefined symbol (loop) -
wumpyc - 15.11.2011
Hey wuts wrong with this?
PHP код:
forward Controllable(playerid);
public Controllable(playerid)
{
for(new i = 0; i < MAX_PLAYERS; i++)
ClearAnimations(i);
return 1;
}
Re: Undefined symbol (loop) -
Vince - 15.11.2011
Apart from the fact that you declare
playerid in the header, but never use it? Nothing.
Re: Undefined symbol (loop) -
wumpyc - 16.11.2011
I was getting undefined symbol "i" but i fixed it