18.02.2019, 09:02
(
Последний раз редактировалось CherryMond; 19.02.2019 в 16:51.
)
Is there a limit to display? I have an array of 215 objects and displays only 7 pages. I didn't change anything in the code.
PHP код:
stock ShowItems(playerid){
static string[sizeof(Items) * 128];
if (string[0] == EOS){
for(new i; i < sizeof(Items); i++){
format(string, sizeof(string), "%s%i(0.0, 0.0, -50.0, 1.5)\t%s~n~~g~~h~$%i\n", string, Items[i][itemid], Items[i][name], Items[i][price]);
}
}
return ShowDialog(playerid, 644, DIALOG_STYLE_PREVIEW_MODEL, "Items", string, "Select", "Close");
}