20.08.2017, 08:00
I have a dealership command and instead of showing Tahoma in the list it is shown as {.
This is the piece of code for that list
And this is a screenshot of the problem
Does anyone know what the problem is ?
This is the piece of code for that list
Код:
if(listitem == 0) { new stringzz[10000],stringy[10000]; for(new xf = 0; xf < MAX_PERSONAL_CARS; xf++) { if(Stock[xf][vType] == 1) { format(stringy, sizeof(stringy), "{ffffff}%s ( %d{33cc33}${ffffff} ) ( {00FFFF}%d {ffffff}cars in stock)\n", Stock[xf][vName], Stock[xf][vPrice], Stock[xf][vStock]); strcat(stringzz,stringy); } } ShowPlayerDialog(playerid, DIALOG_CARBUY2, DIALOG_STYLE_LIST, "Buy a car", stringzz, "Select", "Close"); }
Does anyone know what the problem is ?