Vip Chat![Help] [+ Rep]
#3

This will help.

pawn Код:
CMD:v(playerid, params[])
{
    if(PlayerInfo[playerid][pDonateRank] > 0 || PlayerInfo[playerid][pAdmin] >= 1337)
    {
        new string[128];
        if(isnull(params)) return SendClientMessageEx(playerid, COLOR_WHITE, "USAGE: /v(ip chat) [message]");

        if(VIPTimer[playerid] > 0)
        {
            format(string, sizeof(string), "You must wait %d seconds before speaking again in this channel.", VIPTimer[playerid]);
            SendClientMessageEx(playerid, COLOR_GREY, string);
            return 1;
        }
        if(PlayerInfo[playerid][pToggedVIPChat] == 0)
        {
            SendClientMessageEx(playerid, COLOR_GREY, "You have the channel toggled, /togvip to re-enable!");
            return 1;
        }
        if(PlayerInfo[playerid][pVMuted] > 0)
        {
            SendClientMessageEx(playerid, COLOR_GREY, "You are muted from the VIP chat channel.");
            return 1;
        }
        if(PlayerInfo[playerid][pDonateRank] == 1)
        {
            format(string, sizeof(string), "** Bronze VIP %s: %s", GetPlayerNameEx(playerid), params);
            VIPTimer[playerid] = 5;
        }
        else if(PlayerInfo[playerid][pDonateRank] == 2)
        {
            format(string, sizeof(string), "** Silver VIP %s: %s", GetPlayerNameEx(playerid), params);
            VIPTimer[playerid] = 5;
        }
        else if(PlayerInfo[playerid][pDonateRank] == 3)
        {
            format(string, sizeof(string), "** Gold VIP %s: %s", GetPlayerNameEx(playerid), params);
            VIPTimer[playerid] = 5;
        }
        else if(PlayerInfo[playerid][pDonateRank] == 4)
        {
            format(string, sizeof(string), "** Platinum VIP %s: %s", GetPlayerNameEx(playerid), params);
            VIPTimer[playerid] = 5;
        }
        else if(PlayerInfo[playerid][pDonateRank] == 5)
        {
            format(string, sizeof(string), "** Diamond VIP %s: %s", GetPlayerNameEx(playerid), params);
        }
        if(PlayerInfo[playerid][pAdmin] == 2)
        {
            format(string, sizeof(string), "** Junior Admin %s: %s", GetPlayerNameEx(playerid), params);
        }
        if(PlayerInfo[playerid][pAdmin] == 3)
        {
            format(string, sizeof(string), "** General Admin %s: %s", GetPlayerNameEx(playerid), params);
        }
        if(PlayerInfo[playerid][pAdmin] == 4)
        {
            format(string, sizeof(string), "** Senior Admin %s: %s", GetPlayerNameEx(playerid), params);
        }
        if(PlayerInfo[playerid][pAdmin] == 1337)
        {
            format(string, sizeof(string), "** Head Admin %s: %s", GetPlayerNameEx(playerid), params);
        }
        else if(PlayerInfo[playerid][pAdmin] == 1338)
        {
            format(string, sizeof(string), "** Server Manager %s: %s", GetPlayerNameEx(playerid), params);
        }
        else if(PlayerInfo[playerid][pAdmin] == 9999)
        {
            format(string, sizeof(string), "** Elite Admin %s: %s", GetPlayerNameEx(playerid), params);
        }
        else if(PlayerInfo[playerid][pAdmin] == 99998)
        {
            format(string, sizeof(string), "** Co-Executive Director %s: %s", GetPlayerNameEx(playerid), params);
        }
        else if(PlayerInfo[playerid][pAdmin] == 99999)
        {
            format(string, sizeof(string), "** Executive Director %s: %s", GetPlayerNameEx(playerid), params);
        }
        else if(PlayerInfo[playerid][pAdmin] == 999995)
        {
            format(string, sizeof(string), "** Community Manager %s: %s", GetPlayerNameEx(playerid), params);
        }
        else if(PlayerInfo[playerid][pAdmin] == 999998)
        {
            format(string, sizeof(string), "** Co-Community Director %s: %s", GetPlayerNameEx(playerid), params);
        }
        else if(PlayerInfo[playerid][pAdmin] == 999999)
        {
            format(string, sizeof(string), "** Community Director %s: %s", GetPlayerNameEx(playerid), params);
        }
        if (PlayerInfo[playerid][pDonateRank] >= 1 || PlayerInfo[playerid][pAdmin] >= 2)
        {
            SendVIPMessage(COLOR_VIP, string);
        }

        Log("logs/vipchat.log", string);
    }
    return 1;
}
Reply


Messages In This Thread
Vip Chat![Help] [+ Rep] - by Nirzor - 27.09.2012, 14:02
Re: Vip Chat![Help] [+ Rep] - by kbalor - 27.09.2012, 14:10
Re: Vip Chat![Help] [+ Rep] - by SmithyComp - 27.09.2012, 14:10
Re: Vip Chat![Help] [+ Rep] - by Nirzor - 27.09.2012, 14:24
Re: Vip Chat![Help] [+ Rep] - by .v - 27.09.2012, 14:26
Re: Vip Chat![Help] [+ Rep] - by Jarnu - 27.09.2012, 14:28
Re: Vip Chat![Help] [+ Rep] - by .v - 27.09.2012, 14:32
Re: Vip Chat![Help] [+ Rep] - by Nirzor - 27.09.2012, 14:44

Forum Jump:


Users browsing this thread: 1 Guest(s)