Posts: 150
Threads: 47
Joined: Apr 2012
Reputation:
0
(271) : error 033: array must be indexed (variable "
if ("gPlayerLogged[i] = 0");
helppp
Posts: 125
Threads: 3
Joined: Nov 2012
Reputation:
0
show the code and where you defined gPlayerLogged
Posts: 125
Threads: 3
Joined: Nov 2012
Reputation:
0
see on line 11 gPlayerLogged is defined only as "new gPlayerLogged" and you are trying to use it as an array "gPlayerLogged[i]" you would need to define it at the top as "gPlayerLogged[MAX_PLAYERS]" to use it like you are trying **edit:: just noticed you re-defined it only define it once**