need to fix 2 errors please help
#1

hey guys i got problem with these 2 erros also im not sure whats the problem can be in...

Код:
C:\Users\Erik\Desktop\Iconik-Gamings\gamemodes\IGamings.pwn(4723) : error 047: array sizes do not match, or destination array is too small
Код:
C:\Users\Erik\Desktop\Iconik-Gamings\gamemodes\IGamings.pwn(145) : error 029: invalid expression, assumed zero
Line: 4723:
Код:
tmp = strtok(cmdtext, idx);
Line: 145:
Код:
if(PlayerInfo[i][pAdmin] == 1))
Reply
#2

Line:145
pawn Код:
if(PlayerInfo[i][pAdmin] == 1)
the other line, set tmp[256]; is the correct other not
Reply
#3

Guy above answered before me
Reply
#4

error 029: invalid expression, assumed zero

already is tellin' you that you messed up somewhere with the expressions.
and you did, see:
if(PlayerInfo[i][pAdmin] == 1))
that one ) bracket is too much on that line.

moving on to your next error.

error 047: array sizes do not match, or destination array is too small

it tells you that some size is too small, probably the size of tmp is too small

just fix these 2 things and you're good 2 go
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)