SA-MP Forums Archive
[Ajuda] Novos dialogs 0.3.7 - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Novos dialogs 0.3.7 (/showthread.php?tid=574823)



Novos dialogs 0.3.7 - RIPOrkut - 20.05.2015

Eu criei uma loja com a nova dialog DIALOG_STYLE_TABLIST_HEADERS da versгo 0.3.7 do SA-MP. Mas quando eu compro algum produto, o valor da coluna "Quantidade" nгo diminui, como devo prosseguir?

Code:

Код:
case 2:
	    {
			format(string, sizeof(string), "Item\tPreзo\tQuantidade\n\
				Carregador\t%s\t100\n\
				Cartucho de Muniзгo\t%s\t100\n\
				Colete\t%s\t100\n\
				Desert Eagle\t%s\t100\n\
				Shotgun\t%s\t100\n\
				M4\t%s\t100",
				FormatNumber(BusinessData[bizid][bizPrices][0]),
				FormatNumber(BusinessData[bizid][bizPrices][1]),
				FormatNumber(BusinessData[bizid][bizPrices][2]),
				FormatNumber(BusinessData[bizid][bizPrices][3]),
				FormatNumber(BusinessData[bizid][bizPrices][4]),
				FormatNumber(BusinessData[bizid][bizPrices][5])
			);
			Dialog_Show(playerid, EditProduct, DIALOG_STYLE_TABLIST_HEADERS, "Empresa: Modificar Item", string, "Modificar", "Cancelar");
		}



Re: Novos dialogs 0.3.7 - PT - 20.05.2015

OnDialogResponse como todas as outras.