[Pedido] /admin em dialog
#3

Exemplo
Code:
if(!strcmp(cmd, "/admins", true)) 
{ 
    new string[200], rank[21], count; // if "200" is not enough and cut the text out in case you have many admins online, increase it. 
    for(new i; i<MAX_PLAYERS; i++) if(IsPlayerConnected(i)) //foreach(new i : Player) 
    { 
        switch (PInfo[i][AdminLevel]) 
        { 
            case 0: continue; 
            case 1: rank = "Moderator"; 
            case 2: rank = "Junior Administrator"; 
            case 3: rank = "Senior Administrator"; 
            case 4: rank = "Head Administrator"; 
            case 5: rank = "Server Owner"; 
        } 
        format(string, sizeof(string), "%s{FFFFFF}%s: {1B8AE4}%s(%d)", string, rank, PlayerName(i), i); 
        ++count; 
    } 
    if (!count) return SendClientMessage(playerid, -1, "No admins online"); 
    else ShowPlayerDialog(playerid, 364, DIALOG_STYLE_MSGBOX, "Server staff currently online:", string, "Close", ""); 
    return 1; 
}
Reply


Messages In This Thread
/admin em dialog - by MatheusFirmino - 12.12.2016, 21:53
Re: /admin em dialog - by MatheusFirmino - 13.12.2016, 21:39
Re: /admin em dialog - by Marllun - 13.12.2016, 21:48
Re: /admin em dialog - by RodrigoMSR - 13.12.2016, 22:48
Re: /admin em dialog - by MatheusFirmino - 13.12.2016, 22:54

Forum Jump:


Users browsing this thread: 1 Guest(s)