16.09.2012, 15:36
pawn Код:
if(strcmp(cmd, "/organizacoes", true) == 0 || strcmp(cmd, "/orgs", true) == 0)
{
new string[128], odialog[1000];
for(new i = 0; i <= HighestID; i++)
{
if(IsPlayerConnected(i))
{
if(PlayerInfo[i][Lider] == 1) // Nгo sei como й a variбvel no seu GM, mas o normal й PlayerInfo...
{
GetPlayerName(i,sendername,sizeof(sendername));
format(string, sizeof(string), "Policia Militar (ID:1) | Lider: %s[ID:%d]", sendername, i);
strcat(odialog,string);
}
if(PlayerInfo[i][Lider] == 2)
{
[...] // Basta seguir o modelo acima /\
}
ShowPlayerDialog(playerid,2563,DIALOG_STYLE_MSGBOX,"Organizaзхes & Lideres",odialog,"FECHAR","");
}
}
return 1;
}