Whisper color?
#7

pawn Код:
if(strcmp(cmd, "/whisper", true) == 0 || strcmp(cmd, "/w", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(gPlayerLogged[playerid] == 0)
            {
                SendClientMessage(playerid, COLOR_GREY, "   You havent logged in yet !");
                return 1;
            }
            if(PlayerInfo[playerid][pLevel] < 3)
            {
                SendClientMessage(playerid, COLOR_LIGHTGREEN, "   You must be level 3 to use this!");
                return 1;
            }
            if(PlayerInfo[playerid][pMuted] == 1)
            {
                SendClientMessage(playerid, TEAM_CYAN_COLOR, "   You can't speak, you have been silenced !");
                return 1;
            }
            if(PlayerTied[playerid] > 0)
            {
                SendClientMessage(playerid, COLOR_GREY, "  you can`t use this command because you are tied!");
                return 1;
            }
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "{00A1FF}USAGE{FFFFFF}: (/w)isper [playerid/PartOfName] [whisper text]");
                return 1;
            }
            giveplayerid = ReturnUser(tmp);
            if (IsPlayerConnected(giveplayerid))
            {
                if(giveplayerid != INVALID_PLAYER_ID)
                {
                    if(HidePM[giveplayerid] > 0)
                    {
                        SendClientMessage(playerid, COLOR_GREY, "   That player is blocking Whispers !");
                        return 1;
                    }
                    /*if(AFKCheck[giveplayerid] > 0)
                    {
                        SendClientMessage(playerid, COLOR_GREY, "   That player is afk !");
                        return 1;
                    }*/

                    GetPlayerName(playerid, sendername, sizeof(sendername));
                    GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
                    if(giveplayerid == playerid)
                    {
                        format(string, sizeof(string), "* %s mutters somthing.", sendername);
                        ProxDetector(5.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
                    }
                    new length = strlen(cmdtext);
                    while ((idx < length) && (cmdtext[idx] <= ' '))
                    {
                        idx++;
                    }
                    new offset = idx;
                    new result[64];
                    while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
                    {
                        result[idx - offset] = cmdtext[idx];
                        idx++;
                    }
                    result[idx - offset] = EOS;
                    if(!strlen(result))
                    {
                        SendClientMessage(playerid, COLOR_GRAD2, "{00A1FF}USAGE{FFFFFF}: (/w)isper [playerid/PartOfName] [whisper text]");
                        return 1;
                    }
                    format(string, sizeof(string), "{80FF80}%s(ID: %d) {FFFFFF}whispers: {80FF80}%s", sendername, playerid, (result));
                    SendClientMessage(giveplayerid, COLOR_WHITE, string);
                    format(string, sizeof(string), "Whisper sent to {80FF80}%s(ID: %d) {FFFFFF}%s", giveplayer, giveplayerid, (result));
                    SendClientMessage(playerid, COLOR_WHITE, string);

                    SBizzInfo[2][sbTill] += txtcost;
                    ExtortionSBiz(2, txtcost);

                    for(new i = 0; i <= MAX_PLAYERS; i++)
                    {
                        if(IsPlayerConnected(i))
                        {
                            if(BigEar[i] == 1 && i != playerid && i != giveplayerid)
                            {
                                format(string, sizeof(string), "[BigEar] {80FF80}%s (ID: %d) {FFFFFF}to {80FF80}%s (ID: %d): {FFFFFF}%s", sendername, playerid, giveplayer, giveplayerid, (result));
                                SendClientMessage(i, COLOR_WHITE, string);
                            }
                        }
                    }
                    new y,m,d;
                    new h,mi,s;
                    getdate(y,m,d);
                    gettime(h,mi,s);
                    format(string, sizeof(string), "(%d/%d/%d)[%d:%d:%d] %s(ID: %d) to %s(ID: %d): %s",d,m,y,h,mi,s,sendername, playerid, giveplayer, giveplayerid, (result));
                    ChatLog(string);
                    return 1;
                }
            }
            else
            {
                    format(string, sizeof(string), "Playerul nu este pe server.", giveplayerid);
                    SendClientMessage(playerid, COLOR_GRAD1, string);
            }
        }
        return 1;
    }
Leave the VIP part.
I need /setwc (Set Whisper Color), when you whisper someone, it shows to him the color you set for your whispers.
Reply


Messages In This Thread
Whisper color? - by Shannkz - 10.11.2012, 14:31
Re: Whisper color? - by Private200 - 10.11.2012, 14:34
Re: Whisper color? - by Shannkz - 10.11.2012, 14:43
Re: Whisper color? - by Mr.Anonymous - 10.11.2012, 15:02
Re: Whisper color? - by Shannkz - 10.11.2012, 15:37
Re: Whisper color? - by Shannkz - 13.11.2012, 10:42
Re: Whisper color? - by Shannkz - 13.11.2012, 10:47

Forum Jump:


Users browsing this thread: 3 Guest(s)