07.10.2012, 05:10
From what I understood, the text doesn't assigned to the array?
PHP код:
///
if( response )
{
if(strlen(inputtext) >= 2 && strlen(inputtext) <= 64)
{
strmid(arrUpdates[iUpd][g_Update1], inputtext, 0, strlen(inputtext), sizeof arrUpdates);
//arrUpdates[iUpd][g_Update1] = strlen(inputtext);
format(string, sizeof(string), "You have change Update 1 to %s.", inputtext);
SendClientMessageEx(playerid, COLOR_LIGHTBLUE, string);
CreateDynamicUpdates(strlen(inputtext));
SaveDynamicUpdates();
}
else return ShowPlayerDialog(playerid, 16513, DIALOG_STYLE_LIST, "Update 1:", "Input text\nClear Update", "Select", "Cancel");
}