30.09.2014, 23:12
Код:
new savedPasswordForFinalReg[MAX_PLAYERS][255];
Код:
OnDialogResponse(playerid, dialogid, response, listitem, inputtext[]) { // ... // ... savedPasswordForFinalReg[playerid] = inputtext; // ERROR LINE // ... return 1; }
This is not possible! I know that inputtext can have a maximum of 128, so my 255 string can't be smaller -.-. If I make my string 128 long, comes the same error.
Where's the problem ?!?!