Admin Chat |help|
#7

pawn Код:
public OnPlayerText(playerid, text[])
{
    if(text[0] == '!' && P_Data[playerid][VIP] >= 1)
    {
        new string[128]; GetPlayerName(playerid,string,sizeof(string));
        format(string,sizeof(string),"[DONATOR] %s: %s",string,text[1]);
        MessageToPlayerVIP(COLOR_GREEN,string);
        return 0;
    }
//==============================================================================
// Administration Chat
//==============================================================================
    if(text[0] == '#' && P_Data[playerid][pAdmin] >= 1)
    {
        new string[128]; GetPlayerName(playerid,string,sizeof(string));
        format(string,sizeof(string),"[ADMIN]: %s: %s",string,text[1]);
        MessageToAdmins(COLOR_GREY,string);
        #if ADM_CHAT_LOG == true
        #endif
        return 0;
    }

stock MessageToPlayerVIP(color,msg[])
{
   for(new i = 0; i < MAX_PLAYERS; i++)
   {
      if(IsPlayerConnected(i) == 1)
      {
         if(P_Data[i][VIP] >= 1)
         {
            SendClientMessage(i, color, msg);
         }
      }
   }
   return 1;
}

stock MessageToAdmins(color,msg[])
{
   for(new i = 0; i < MAX_PLAYERS; i++)
   {
      if(IsPlayerConnected(i) == 1)
      {
         if(P_Data[i][VIP] >= 1)
         {
            SendClientMessage(i, color, msg);
         }
      }
   }
   return 1;
}
Reply


Messages In This Thread
Admin Chat |help| - by AYOUYOU - 01.01.2015, 12:06
Re : Admin Chat |help| - by MCZOFT - 01.01.2015, 12:22
Re : Admin Chat |help| - by AYOUYOU - 01.01.2015, 12:35
Re: Admin Chat |help| - by Lordzy - 01.01.2015, 12:36
Re : Admin Chat |help| - by AYOUYOU - 01.01.2015, 12:37
Re : Admin Chat |help| - by MCZOFT - 01.01.2015, 12:40
Re: Admin Chat |help| - by ReD_HunTeR - 01.01.2015, 12:47
Re : Re: Admin Chat |help| - by AYOUYOU - 01.01.2015, 12:55
Re: Admin Chat |help| - by DavidBilla - 01.01.2015, 13:00
Re : Admin Chat |help| - by AYOUYOU - 01.01.2015, 13:05

Forum Jump:


Users browsing this thread: 1 Guest(s)