05.03.2018, 11:22
Como faзo para fazer os objetos aparecerem em MODEL_PREVIEW com Mselection?
Atualmente aparecem em Dialog List
Alguйm me ajuda?
Atualmente aparecem em Dialog List
PHP код:
Dialog:FurniturePurchase2(playerid, response, listitem, inputtext[])
{
if(!response) return Dialog_Show(playerid, FurniturePurchase, DIALOG_STYLE_LIST, "Selecione uma categoria de mуveis", GetHouseCategoryList(), "Selecionar", "Cancelar");
gstr[0] = EOS;
strcat(gstr, "Nome da mobнlia\tCusto\n");
for(new x = 0; x < MAX_FURNITURE; x++)
{
if(FurniData[x][fSubCategory] == listitem && FurniData[x][fCategory] == GetPVarInt(playerid, "FurnCat") && FurniData[x][fModel] != 0)
{
format(sgstr, sizeof(sgstr), "%s\t$%s\n", FurniData[x][fuName], format_cash(FurniData[x][fPrice]));
strcat(gstr, sgstr);
}
}
Dialog_Show(playerid, FurniturePurchase3, DIALOG_STYLE_TABLIST_HEADERS, "Comprar mуveis", gstr, "Selecionar", "Cancelar");//Dialog List
return true;
}