07.04.2010, 19:13
Quote:
Originally Posted by `Robo
Quote:
|
Error 025: Your callback is different to what is defined, IE:
pawn Код:
public OnPlayerConnect(playerid)
pawn Код:
public OnPlayerConnect(playerid, ip)
Warning 211: You used a "=" which sets a variable, not a "==" which checks something. So
pawn Код:
if(myVar = 1)
Warning 215: You told the compiler to do something that either a) it doesn't know how to compile or b) literally has no effect on anything else.
Error 033: You probably forgot to tell the compiler where in the array "QuizGo" it must store the data. In other words, at the top of your script you did
pawn Код:
new QuizGo[MAX_PLAYERS];
pawn Код:
QuizGo = 982475;
Error 017: That's obvious, you used "text" without saying "new text" or whatever.
Error 001: That's THE most obvious error there is, it is telling you in english that you forgot to put a ; somewhere.
Error 029: Because so much else is wrong with that line, the compiler doesn't know what to do with it and instead assumes that line as zero.
Fatal error 107: That's self explanatory, the compiler gave up trying to make sense of the code because so much is wrong with it.
Hope I helped in some way.
Also, it's pretty pointless asking people to fix something they can't see >.<