22.11.2014, 20:01
I have this array, how I need to remake it to store strings?
Because now I get:
Array info like this:
I use like this:
Код:
new PlayerTexts[MAX_PLAYERS][1000];
Код:
error 006: must be assigned to an array
Код:
PlayerTexts[playerid][0] = "Some text 1"; PlayerTexts[playerid][1] = "Some text 2"; PlayerTexts[playerid][2] = "Some text 3"; ...
Код:
PlayerTexts[playerid][0] PlayerTexts[playerid][1] PlayerTexts[playerid][2] ...