18.01.2014, 20:35
(
Последний раз редактировалось InglewoodRoleplay; 19.01.2014 в 09:33.
)
The problem relies here:
Increment the size on the array for APlayerData
The max size for [i] has to be incremented where you defined the array.
pawn Код:
while(rows > i)
{
APlayerData[i][BanVariable] = true;// You had only this, no loading any other
printf("Ban %d Loaded", i);
i++;
}
//while(i < rows) would make more sense though, at least for me. It would be easier to understand.
The max size for [i] has to be incremented where you defined the array.

