07.10.2013, 11:01
I hope you added it out of any other. Also if it's about using it, you'll need to declare the variables it uses.
Alright, you're missing bracket(s) close at line 25012.
Does OnPlayerStateChange close the bracket? It says it needs to return a value and it might not close the bracket as well.
Make sure it is like:
About the name and count. If something has been declared (let's say) as global variable and you re-declare it as a local that warning will be given. It's from the includes too so you'll need to change the name and count from your mode to another name. Don't forget to change the rest too.
Alright, you're missing bracket(s) close at line 25012.
Does OnPlayerStateChange close the bracket? It says it needs to return a value and it might not close the bracket as well.
Make sure it is like:
pawn Код:
public OnPlayerStateChange(playerid, newstate, oldstate)
{
// code
return 1; // <--
} // <--