07.08.2018, 20:59
PHP код:
Dialog:EmpresasPrecisaProduto(playerid, response, listitem, inputtext[])
{
if(!response) return 1;
new strlista[1024];
switch(listitem)
{
case 0:
{
for(new i = 0; i < MAX_EMPRESAS; i++)
{
if(EmpresaInfo[i][preciProdutos] > 0)
{
format(strlista, sizeof(strlista), "%s", EmpresaInfo[i][Nome]);
}
Dialog_Show(playerid, EmpresasInfo, DIALOG_STYLE_LIST, "Empresas", strlista, "Selecionar", "Voltar");
}
}
}
}