05.02.2018, 00:36
Tou colocando em dialog.. ta certinho, sу que nгo pula a linha, mostra os admins certinho que jб testei, Mais fica na mesma Linha da Dialog Style List.
PHP код:
CMD:admins(playerid,params[])
{
new stg[128],Formatar[128];
for(new i; i < MAX_PLAYERS; i++)
{
if(pInfo[i][Cargo] == GERENTE)
{
new name[24];
GetPlayerName(i, name, sizeof(name));
format(Formatar, sizeof(Formatar), "Admin %s[%d] Online!", name, i);
strcat(stg, Formatar);
ShowPlayerDialog(playerid, ADMINS, DIALOG_STYLE_LIST, "{FF00FF}Admins ONLINE!", stg, "Sair", "");
}
}
return 1;
}