29.08.2017, 21:51
Not sure what you're asking but here's an example of DIALOG_STYLE_TABLIST_HEADERS.
(You have DIALOG_STYLE_LIST in ShowPlayerDialog FYI.)
(You have DIALOG_STYLE_LIST in ShowPlayerDialog FYI.)
Код:
strcat(principal_str, "Caller\tLocation\t\n");
for(new i = 0; i < sizeof(911Data); i++)
{
if(911Data[i][callExists])
{
format(sub_str, sizeof(sub_str), "%s\t%s\t\n", 911Data[i][callerName], 911Data[i][callLocation]);
strcat(principal_str, sub_str);
}
}

