26.06.2011, 14:03
I got a problem with this variable (tested with sendclientmessage before and after it).
I know the limit of variable size is 1024 but i really need this big var to load all of the player data from mysql.
new data[140][25];
The text before it shows, but the text after it doesn't.
Any ideas how i can fix this?
Thanks.
I know the limit of variable size is 1024 but i really need this big var to load all of the player data from mysql.
new data[140][25];
The text before it shows, but the text after it doesn't.
Код:
SendClientMessage(playerid, COLOR_WHITE, "Please wait till the server loads your data."); new data[140][10]; //The data strings SendClientMessage(playerid, COLOR_WHITE, "Loading data..."); mysql_fetch_row(LoadData); split(LoadData, data, '|'); PlayerInfo[playerid][pCash] = strvalEx(data[3]); ****etc*****
Thanks.