Problem with admin chat
#10

You didn't explain right what you want. Try that:
pawn Код:
if(text[0] == '@')
    {
        for(new i = 0; i < MAX_PLAYERS; i++)
        {
            if(PlayerInfo[playerid][AdminLevel] > 2 && PlayerInfo[i][AdminLevel] > 2)
            {
              if(!strlen(text[1])) return SendClientMessage(playerid, COLOR_ORANGE, "USAGE: @<text>");
              new sendername[128];
              GetPlayerName(playerid, sendername, sizeof(sendername));
              new string[128];
              format(string, sizeof(string), "Admin Chat [%i]%s: %s" ,playerid,sendername, text[1]);
              SendClientMessage(i, COLOR_GREEN, string);
              AdminCLog(string);
              return 0;
            }
        }
             else return 0;
    }

Straight that you have more posts than me and knows less time, even though it means you had stayed here more time than me
Reply


Messages In This Thread
Problem with admin chat - by Face9000 - 20.12.2010, 18:11
Re: Problem with admin chat - by Mike_Peterson - 20.12.2010, 18:14
Re: Problem with admin chat - by Face9000 - 20.12.2010, 18:15
Re: Problem with admin chat - by Mike_Peterson - 20.12.2010, 18:20
Re: Problem with admin chat - by Face9000 - 20.12.2010, 18:25
Re: Problem with admin chat - by blackwave - 20.12.2010, 18:26
Re: Problem with admin chat - by Mike_Peterson - 20.12.2010, 18:30
Re: Problem with admin chat - by blackwave - 20.12.2010, 18:32
Re: Problem with admin chat - by Face9000 - 20.12.2010, 18:42
Re: Problem with admin chat - by blackwave - 20.12.2010, 18:46

Forum Jump:


Users browsing this thread: 2 Guest(s)