[Ajuda] sotaque
#5

Isto deve resolver o seu problema .


pawn Код:
new SOTAQUE[MAX_PLAYERS];

pawn Код:
if(strcmp(cmd, "/sotaque", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            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, "Use: /sotaque [Lнngua]");
                return 1;
            }
            SOTAQUE[playerid] = 1;
            PlayerInfo[playerid][pSotaque] = strlen(result);
            SetPVarString(playerid,"Sotaque",result);
        }
        return 1;
    }

pawn Код:
if(SOTAQUE[playerid] > 0)
                {
                    new sotaque[128];
                    GetPVarString(playerid,"Sotaque", sotaque,sizeof(sotaque));
                format(string, sizeof(string), "[Sotaque %s]%s Diz: %s", sotaque, sendername, text);
                ProxDetector(20.0, playerid, string,COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_FADE4,COLOR_FADE5);
                }
                else
                {
                format(string, sizeof(string),"%s Diz: %s", sendername, text);
                ProxDetector(20.0, playerid, string,COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_FADE4,COLOR_FADE5);
}

Espero ter ajudado .
Reply


Messages In This Thread
[Ajuda] sotaque - by Nightwish - 08.05.2011, 11:38
Re: [DUVIDA] sotaque - by diretor7 - 08.05.2011, 11:42
Re: [DUVIDA] sotaque - by Shadoww5 - 08.05.2011, 12:25
Re: [DUVIDA] sotaque - by Nightwish - 08.05.2011, 13:57
Re: [DUVIDA] sotaque - by rjjj - 08.05.2011, 17:09
Re: [DUVIDA] sotaque - by Nightwish - 08.05.2011, 17:57
Re: [DUVIDA] sotaque - by Ricop522 - 08.05.2011, 19:16
Re: [Ajuda] sotaque - by WalkerXD - 11.06.2011, 22:54

Forum Jump:


Users browsing this thread: 2 Guest(s)