01/05/2024 15:48
(Esta mensagem foi modificada pela última vez a: 01/05/2024 21:27 por xbruno1000x.)
criei esse sistem pra minha gm o problema e que nao sei como deixo o nome dos lideres funcional teho uma enum chamada pLider
tenho isso aq rInfo[playerid][pLider] bem nao sei oq fazer poi coloqui assim meu codigo e aparece meu nome m todas as orgs obs sou novato em pawno
tenho isso aq rInfo[playerid][pLider] bem nao sei oq fazer poi coloqui assim meu codigo e aparece meu nome m todas as orgs obs sou novato em pawno
Código:
CMD:orgs(playerid, params[])
{
new DialogNGL[1500], String[75];
format(String, sizeof(String), "[1]POLICIA MILITAR:%s\n", GetPlayerOrg(InfoOrg[1][Lider]));
strcat(DialogNGL, String);
format(String, sizeof(String), "[2]POLICIA CIVIL:%s\n", GetPlayerOrg(InfoOrg[2][Lider]));
strcat(DialogNGL, String);
format(String, sizeof(String), "[3]ROTA:%s\n", GetPlayerOrg(InfoOrg[3][Lider]));
strcat(DialogNGL, String);
format(String, sizeof(String), "[4]EXERCITO:%s\n", GetPlayerOrg(InfoOrg[4][Lider]));
strcat(DialogNGL, String);
format(String, sizeof(String), "[5]SAMU:%s\n", GetPlayerOrg(InfoOrg[5][Lider]));
strcat(DialogNGL, String);
format(String, sizeof(String), "[11]FDN:%s\n", GetPlayerOrg(InfoOrg[11][Lider]));
strcat(DialogNGL, String);
format(String, sizeof(String), "[12]CV:%s\n", GetPlayerOrg(InfoOrg[12][Lider]));
strcat(DialogNGL, String);
format(String, sizeof(String), "[13]ADA:%s\n",GetPlayerOrg(InfoOrg[13][Lider]));
strcat(DialogNGL, String);
format(String, sizeof(String), "[14]TCC:%s\n",GetPlayerOrg(InfoOrg[14][Lider]));
strcat(DialogNGL, String);
format(String, sizeof(String), "[15]PCC:%s\n",GetPlayerOrg(InfoOrg[15][Lider]));
strcat(DialogNGL, String);
format(String, sizeof(String), "[16]HACKERS:%s\n",GetPlayerOrg(InfoOrg[16][Lider]));
strcat(DialogNGL, String);
ShowPlayerDialog(playerid, 0, DIALOG_STYLE_LIST, "{00ECEC}Lideres de Orgs", DialogNGL, "Fechar", "");
return 1;
}