tag mismatch?
#1

I am getting this error when compiling :S don't know whats wrong

pawn Код:
new ShowedStealing[MAX_PLAYERS] = false;

/*The error: */if(ShowedStealing[playerid] == false)
Reply
#2

Change the false in the error line to 0. False is the same as 0 and true is the same as 1.
Reply
#3

Lol, thnx.
Reply
#4

Or you could just initialize it as a boolean.

pawn Код:
new bool:ShowedStealing[MAX_PLAYERS] = false;
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)