03.01.2013, 17:01
I've changed the syntax of your script to the new few days ago. But if you need to fix it by yourself, just paste the gamemode into a notepad and use CTRL + F and inside the box "foreach". Any part of code which is like this
should be
i is the variable, it may be "p" or "playerid", so it should be
or
instead.
pawn Код:
foreach(Player, i)
pawn Код:
foreach(new i : Player)
pawn Код:
foreach(new p : Player)
pawn Код:
foreach(new playerid : Player)