Posts: 6,129
Threads: 36
Joined: Jan 2009
Quote:
Originally Posted by Carlton
Heh, thanks for the time. Also shouldn't this:
pawn Код:
if(x < MAX_PLAYERS) { if(IsPlayerConnected(x) && playerShoutBox[x] != 0) ShowShoutBoxForPlayer(x); x++; }
Be this:
pawn Код:
while(x < MAX_PLAYERS) { if(IsPlayerConnected(x) && playerShoutBox[x] != 0) ShowShoutBoxForPlayer(x); x++; }
?
|
Oops, could swear I put that.