SA-MP Forums Archive
[Ajuda] Bug - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Bug (/showthread.php?tid=293208)



[Ajuda] Bug - Laercio - 27.10.2011

Gente , quando o Helper digita /meavalie

Vai pro helper que digito ,

Aqui o CODE do meu :

pawn Код:
if(strcmp(cmd, "/meavalie", true) == 0)
{
    if(IsPlayerConnected(playerid))
    {
        tmp = strtok(cmdtext, idx);
        if(!strlen(tmp))
            return SendClientMessage(playerid, COLOR_GRAD2, "USE: /meavalie [ID/Nome]");

        new giveid;
        giveid = ReturnUser(tmp);
        GetPlayerName(giveid, giveplayer, sizeof(giveplayer));
        if(IsPlayerConnected(giveid))
        {
            if(giveid != INVALID_PLAYER_ID)
            {
                if(PlayerInfo[playerid][pHelper] >= 1)
                {
                    if(PlayerInfo[playerid][pHelper] == 3)
                        return SendClientMessage(playerid,COLOR_GRAD2,"Vocк nгo estб em trabalho!Use: /ha");
                    if(meavaliehelper[playerid] == 1)
                        return SendClientMessage(playerid,COLOR_GRAD1,"Vocк jб foi avaliado recentemente!Espere...");

                    meavalie[giveid] = playerid;
                    meavaliehelper[playerid] = 1;
                    SetTimer("TempoAvalieHelper",TEMPO_MEAVALIE,false);
                    format(string,sizeof(string),"Olб %s\nO Helper %s[ID:%d]\nPediu a vocк que o avalia-se como helper\nCaso ele tenha o ajudado aperte em SIM\nCaso contrario aperte NГO",giveplayer, sendername, playerid);
                    ShowPlayerDialog(playerid, DIALOG_MEAVALIE, DIALOG_STYLE_MSGBOX, "Avaliaзгo do Helper", string, "Sim", "Nгo");
                }
                else
                    SendClientMessage(playerid, COLOR_GRAD1, "** vocк nгo estб autorizado a usar esse comando!");
            }
        }
        else
        {
            format(string, sizeof(string), "O jogador nгo estб conectado!", giveid);
            SendClientMessage(playerid, COLOR_GRAD1, string);
        }
    }
    return 1;
}
Se Posivel me ajudar , Se quizer do +REP


Re: [Ajuda] Bug - Lуs - 27.10.2011

pawn Код:
if(strcmp(cmd, "/meavalie", true) == 0)
{
    if(IsPlayerConnected(playerid))
    {
        tmp = strtok(cmdtext, idx);
        if(!strlen(tmp))
            return SendClientMessage(playerid, COLOR_GRAD2, "USE: /meavalie [ID/Nome]");

        new giveid;
        giveid = ReturnUser(tmp);
        GetPlayerName(giveid, giveplayer, sizeof(giveplayer));
        if(IsPlayerConnected(giveid))
        {
            if(giveid != INVALID_PLAYER_ID)
            {
                if(PlayerInfo[playerid][pHelper] >= 1)
                {
                    if(PlayerInfo[playerid][pHelper] == 3)
                        return SendClientMessage(playerid,COLOR_GRAD2,"Vocк nгo estб em trabalho!Use: /ha");
                    if(meavaliehelper[playerid] == 1)
                        return SendClientMessage(playerid,COLOR_GRAD1,"Vocк jб foi avaliado recentemente!Espere...");

                    meavalie[giveid] = playerid;
                    meavaliehelper[playerid] = 1;
                    SetTimer("TempoAvalieHelper",TEMPO_MEAVALIE,false);
                    format(string,sizeof(string),"Olб %s\nO Helper %s[ID:%d]\nPediu a vocк que o avalia-se como helper\nCaso ele tenha o ajudado aperte em SIM\nCaso contrario aperte NГO",giveplayer, sendername, playerid);
                    ShowPlayerDialog(giveid, DIALOG_MEAVALIE, DIALOG_STYLE_MSGBOX, "Avaliaзгo do Helper", string, "Sim", "Nгo");
                }
                else
                    SendClientMessage(playerid, COLOR_GRAD1, "** vocк nгo estб autorizado a usar esse comando!");
            }
        }
        else
        {
            format(string, sizeof(string), "O jogador nгo estб conectado!", giveid);
            SendClientMessage(playerid, COLOR_GRAD1, string);
        }
    }
    return 1;
}