16.10.2013, 10:35
It was not declared as a single array. What I meant by that is that you may declared it as 2D array.
and that gives "error 032: array index out of bounds (variable "MainMenuTxtdraw")" error.
So it should be:
That was just an example of what the error is. Change the values depending on your script.
EDIT: Now you showed the code, it should be:
pawn Код:
new
Text: MainMenuTxtdraw[ 10 ][ 10 ]
;
So it should be:
pawn Код:
TextDrawShowForPlayer(playerid, MainMenuTxtdraw[6][5]);
EDIT: Now you showed the code, it should be:
pawn Код:
new
Text: MainMenuTxtdraw[ 7 ]
;