Chat help
#5

hmm okay :/ can u help me with this please?
pawn Код:
dcmd_admins(playerid,params[])
{
    #pragma unused params

        if(AccInfo[playerid][Level] >= 0)
        {
            new bool:First2 = false;
            new Count, i;
            new string[128];
            new adminname[MAX_PLAYER_NAME];
            for(i = 0; i < MAX_PLAYERS; i++)
            if(IsPlayerConnected(i) && AccInfo[i][Level] > 0)
            Count++;

            if(Count == 0)
            return SendClientMessage(playerid,red, "No admins online.");

            for(i = 0; i < MAX_PLAYERS; i++)
            if(IsPlayerConnected(i) && AccInfo[i][Level] > 0)
            {
                if(AccInfo[i][Level] > 0)
                {
                    switch(AccInfo[i][Level])
                    {
                    case 1: AccType = "Tester";
                    case 2: AccType = "Mod";
                    case 3: AccType = "Admin";
                    case 4: AccType = "{05BDFA}Leader{FF0000}";
                    case 5: AccType = "{05BDFA}Manager/Owner{FF0000}";
                    }
                }
                GetPlayerName(i, adminname, sizeof(adminname));
                if(!First2)
                {
                    format(string, sizeof(string), "{05BDFA}Online admins:{FF0000} %s [%s]", PlayerName2(i),AccType);
                    First2 = true;
                }
                    else format(string,sizeof(string),"%s, %s [%s]",string, PlayerName2(i),AccType);
            }
            return SendClientMessage(playerid,red,string);
        }
        else return ErrorMessages(playerid, 1);


}
please i want when more than 2admins online the others look on other line is it possible?
Reply


Messages In This Thread
Chat help - by [XS]Scarface - 10.03.2012, 15:34
Re: Chat help - by Calgon - 10.03.2012, 15:42
Re: Chat help - by [XS]Scarface - 10.03.2012, 15:51
Re: Chat help - by thimo - 10.03.2012, 16:13
Re: Chat help - by [XS]Scarface - 10.03.2012, 16:19

Forum Jump:


Users browsing this thread: 1 Guest(s)