Portal SAMP
[Ajuda] Mostrar info no dialog - Versão de Impressão

+- Portal SAMP (https://portalsamp.com)
+-- Fórum: SA-MP (https://portalsamp.com/forumdisplay.php?fid=5)
+--- Fórum: Área de suporte (https://portalsamp.com/forumdisplay.php?fid=6)
+--- Tópico: [Ajuda] Mostrar info no dialog (/showthread.php?tid=1940)



Mostrar info no dialog - marlboro. - 15/12/2021

Olá. Estou tentando pegar as quantidades de comp e cocaína de determinado grupo (no caso, os verdes), porém, ao compilar está dando erro. Qual a forma correta de pegar as infos e mostrar no dialog?

new comp = dini_Get("drugs/green.txt", "Comp");
new drugs = dini_Get("drugs/green.txt", "Cocaine");

new options[80];
strcat(options, "Comp\t Cocaine");
strcat(options, "%d\t %d", comp, drugs);
ShowPlayerDialog(playerid, DSafeBox, DIALOG_STYLE_TABLIST_HEADERS, "{FFFFFF}Test", options, "01", "02");


warning 202: number of arguments does not match definition

warning 204: symbol is assigned a value that is never used: "drugs"


RE: Mostrar info no dialog - ipsLuan - 15/12/2021

Você está esquecendo de formatar o código.

Código PHP:
new str[50];
format(strsizeof(str), "%d\t%d"compdrugs);
strcat(optionsstr);