Some commands
#10

CSJ that should work
Here is an shorter version
pawn Код:
dcmd_admins(playerid, params[])
{
    new string[128], name[24], PlayerAdminLevel[19];
    SendClientMessage(playerid, COLOR_BLUE, "Online Admins:");
    for(new i = 0; i < MAX_PLAYERS; i++) if(IsPlayerConnected(i))
    {
        switch(AdminLevel(i))
        {
            case 1: PlayerAdminLevel = "Level 1";
            case 2: PlayerAdminLevel = "Level 2";
            case 3: PlayerAdminLevel = "Level 3";
            case 4: PlayerAdminLevel = "Level 4";
            case 5: PlayerAdminLevel = "Level 5";
            case 1337: PlayerAdminLevel = "Level 1337 (Owner)";
        }
       
        if(IsPlayerAdmin(i))
        {
            PlayerAdminLevel = "RCON Admin";
        }

        GetPlayerName(i, name, sizeof(name));
        format(string, sizeof(string), "%s | %s", name, PlayerAdminLevel);
        SendClientMessage(playerid, COLOR_RED, string);
    }
    return 1;
}
Reply


Messages In This Thread
Some commands - by James_Bourne - 14.08.2011, 13:50
Re: Some commands - by Darnell - 14.08.2011, 14:01
Re: Some commands - by Kingunit - 14.08.2011, 14:32
AW: Some commands - by Forbidden - 14.08.2011, 14:35
Re: Some commands - by suhrab_mujeeb - 14.08.2011, 14:39
Re: Some commands - by Laronic - 14.08.2011, 14:56
Re: Some commands - by James_Bourne - 14.08.2011, 15:08
Re: Some commands - by Laronic - 14.08.2011, 15:20
Re: Some commands - by CrazyShooterJoe - 14.08.2011, 15:54
Re: Some commands - by Laronic - 14.08.2011, 15:59
Re: Some commands - by CrazyShooterJoe - 14.08.2011, 16:02
Re: Some commands - by James_Bourne - 14.08.2011, 16:23
Re: Some commands - by suhrab_mujeeb - 15.08.2011, 08:48
Re: Some commands - by CrazyShooterJoe - 15.08.2011, 09:16
Re: Some commands - by suhrab_mujeeb - 15.08.2011, 12:41
Re: Some commands - by James_Bourne - 15.08.2011, 12:43
Re: Some commands - by CrazyShooterJoe - 18.08.2011, 09:17
Re: Some commands - by James_Bourne - 18.08.2011, 12:34
Re: Some commands - by CrazyShooterJoe - 18.08.2011, 17:11

Forum Jump:


Users browsing this thread: 7 Guest(s)