25 players, otherwise script freaks out.
#6

Quote:
Originally Posted by freshOrange
Посмотреть сообщение
Anything else?
Show us the code.
Does everything work fine except login/registration? If nothing is working, you have exceeded array size.

like:
pawn Код:
new array[4];

array[5] ++ ; // this will exceed array size

or

#define MAX_PLAYERS 100
new bool:IsSpawned[MAX_PLAYERS];

playerid = 101;
IsSpawned[playerid] = true; // this will exceed array size
I hope you get the idea
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)