[Ajuda]Waring
#1

Код:
C:\Users\Windows 7\Desktop\ThuG Life City\gamemodes\ThugLife.pwn(60567) : warning 225: unreachable code
a linha do waring esta no cmd /contrato conforme indicado por setas


pawn Код:
if(strcmp(cmd, "/editarhelper", true) == 0)
        {
            if(IsPlayerConnected(playerid))
            {
                        tmp = strtok(cmdtext, idx);
                        if(!strlen(tmp))
                        {
                                SendClientMessage(playerid, COLOR_GRAD2, "USE: /editarhelper [playerid/ParteDoNome] [level(0-30)]");
                                return 1;
                        }
                        new playa;
                        new level;
                        playa = ReturnUser(tmp);
                        tmp = strtok(cmdtext, idx);
                        level = strval(tmp);
                        if(IsPlayerAdmin(playerid) || PlayerInfo[playerid][pAdmin] >= 1337)
                        {
                            if(IsPlayerConnected(playa))
                            {
                                if(playa != INVALID_PLAYER_ID)
                                {
                                    if(level < 0 || level > 30) { SendClientMessage(playerid, COLOR_GREY, "** Nнvel nгo pode ser inferior a 0 ou acima de 30!"); return 1; }
                        GetPlayerName(playa, giveplayer, sizeof(giveplayer));
                                                PlayerInfo[playa][pHelper] = level;
                                                format(string, sizeof(string), "** Vocк definiu o nivel de helper de %s[ID:%d] para [%d]",giveplayer,playa,level);
                                                SendClientMessage(playerid, COLOR_ORANGE, string);
                                                format(string, sizeof(string), "** Admin %s[ID:%d] definiu seu nivel de helper para [%d]",sendername,playerid,level);
                                                SendClientMessage(playa, COLOR_ORANGE, string);
                                                format(string, sizeof(string), "[HELPER]%s[ID %d] й o novo helper do servidor",giveplayer,playa);
                                                SendHelperMessage(COLOR_HELPER,string);
                                                format(string, sizeof(string), "~b~Parabens %s voce agora e um Helper",giveplayer);
                                                GameTextForPlayer(playa, string, 4500,3);
                                        }
                                }
                        }
                        else
                        {
                                SendClientMessage(playerid, COLOR_GRAD1, "** vocк nгo estб autorizado a usar esse comando!");
                        }
                }
                return 1;
        }
        return 1;
}
>>>>>>>>>>>>    if(strcmp(cmd, "/contrato", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD1, "USE: /contrato [ID do Jogador] [Quantidade]");
                return 1;
            }
            giveplayerid = ReturnUser(tmp);
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD1, "USE: /contrato [ID do Jogador] [Quantidade]");
                return 1;
            }
            moneys = strval(tmp);
            if(moneys < 10000 || moneys > 100000) { SendClientMessage(playerid, COLOR_GREY, "   Seu contrato nao pode ser menor que 10000 e maior que 100000"); return 1; }
            if(PlayerInfo[playerid][pLevel] < 3)
            {
                SendClientMessage(playerid, COLOR_GRAD1, "Level 3 no Minimo para por um Contrato.");
                return 1;
            }
            if (IsPlayerConnected(giveplayerid))
            {
                if(giveplayerid != INVALID_PLAYER_ID)
                {
                    if(PlayerInfo[giveplayerid][pMembro] == 8 && PlayerInfo[playerid][pMembro] == 8)
                    {
                        SendClientMessage(playerid, COLOR_GREY, "   Nao pode por contrato e sua propria agencia!");
                        return 1;
                    }
                    else if(PlayerInfo[giveplayerid][pLider] == 8 && PlayerInfo[playerid][pMembro] == 8)
                    {
                        SendClientMessage(playerid, COLOR_GREY, "   Nгo pode por contratos em sua propria agencia!");
                        return 1;
                    }
                    else if(PlayerInfo[giveplayerid][pMembro] == 8||PlayerInfo[giveplayerid][pLider] == 8)
                    {
                        SendClientMessage(playerid, COLOR_GREY, "   Nгo pode contratar um assassino !");
                        return 1;
                    }
                    if(gTeam[giveplayerid] == 2 && moneys != 100000)
                    {
                        SendClientMessage(playerid, COLOR_GREY, "   Somente 100000 Pode ser posto em contratos com os COPS !");
                        return 1;
                    }
                    if(giveplayerid == playerid) { SendClientMessage(playerid, COLOR_GREY, "Vocк nгo pode se contratar!"); return 1; }
                    GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
                    GetPlayerName(playerid, sendername, sizeof(sendername));
                    playerdinheiro = GetPlayerMoneyEx(playerid);
                    if (moneys > 0 && playerdinheiro >= moneys)
                    {
                        GivePlayerMoneyEx(playerid, (0 - moneys));
                        PlayerInfo[giveplayerid][pHeadValue]+=moneys;
                        format(string, sizeof(string), "%s Botou um contrato em %s, por R$%d.",sendername, giveplayer, moneys);
                        SendFamilyMessage(8, COLOR_YELLOW, string);
                        format(string, sizeof(string), "* Vocк botou um contrato em %s, por R$%d.",giveplayer, moneys);
                        SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
                        PlayerPlaySound(playerid, 1052, 0.0, 0.0, 0.0);
                    }
                    else
                    {
                        SendClientMessage(playerid, COLOR_GRAD1, "   Numero Invalido.");
                    }
                }
            }
            else
            {
                format(string, sizeof(string), "   %d is not an active player.", giveplayerid);
                SendClientMessage(playerid, COLOR_GRAD1, string);
            }
        }
        return 1;
    }
    return 1;
}
Reply


Messages In This Thread
[Ajuda]Waring - by Geo1996 - 01.03.2012, 22:39
Re: [Ajuda]Waring - by Don_Speed - 01.03.2012, 23:45
Re: [Ajuda]Waring - by Geo1996 - 02.03.2012, 00:02
Re: [Ajuda]Waring - by Don_Speed - 02.03.2012, 00:11
Re: [Ajuda]Waring - by Geo1996 - 02.03.2012, 00:17
Re: [Ajuda]Waring - by Lucas_Alemao - 02.03.2012, 00:19
Re: [Ajuda]Waring - by Don_Speed - 02.03.2012, 00:24
Re: [Ajuda]Waring - by leosivi - 02.03.2012, 00:30
Re: [Ajuda]Waring - by Etton - 02.03.2012, 00:34
Re: [Ajuda]Waring - by leosivi - 02.03.2012, 00:35

Forum Jump:


Users browsing this thread: 4 Guest(s)