17.06.2011, 13:52
warning 202: number of arguments does not match definition - This means that you are using a function, and providing too little, or too many arguments for it.
This one has too many:
For the next one, I believe that PlayerToPoint also has too many:
This callback was removed in 0.3, so I assume you have an older script. You may be able to delete it, but then again it might be integral to the scipt:
The final warning means that a variable/function has been created but not used. Use the search feature to look for NameTimer, to find out whether or not it is being used.
My instinct tells me you are running 0.3+, and you have a script meant for an older version. So that's something to check too!
This one has too many:
pawn Код:
3254 SetPlayerPos(playerid, 246.8154,124.6496,1003.2188,176.4804); // SetPlayerPos(playerid,Float:x,Float:y,Float:z)
pawn Код:
9907 if (PlayerInfo[playerid][pMember] == 12 || PlayerInfo[playerid][pLeader] == 12 && PlayerToPoint(5.0, playerid,1726.8085,-1640.2202,20.2241,195.4135))
pawn Код:
29293 public OnPlayerPrivmsg(playerid, recieverid, text[])
My instinct tells me you are running 0.3+, and you have a script meant for an older version. So that's something to check too!