27.06.2011, 10:35
I have encountered a serious problem, as soon as server reaches 25 players, registration and login system freaks out.
Any advices?
Any advices?
#undef MAX_PLAYERS
#define MAX_PLAYERS 300
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