27.06.2011, 10:53
Show us the code.
Does everything work fine except login/registration? If nothing is working, you have exceeded array size.
like:
I hope you get the idea
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