19.06.2015, 02:49
My server has been acting up lately. I have a player data save function, but when it gets to a big query string size, it stop working completely and doesn't axacute anything after the variable decleration.
What is wrong here? I remember it used to work perfectly fine a while back, but now it just breaks and doesn't execute any command that the player data save function is in.
Code:
print("saving data");
new savename[24];
GetPlayerName(playerid, savename, 24);
print("saving data 0.1"); // This gets executed
new query[4096]; // This does NOT executed
print("saving data 0.2"); // This does NOT executed nor does anything after this line.

