[Ajuda]Comando /arrastar bugado.
#8

Fiz um erro banal xD, ta ae :
pawn Код:
if (strcmp(cmd, "/arrastar", true) == 0)
    {
        new car;
        if(IsPlayerConnected(playerid))
        {
            if(IsACop(playerid))
            {
                tmp = strtok(cmdtext, idx);
                if(!strlen(tmp))
                {
                    SendClientMessage(playerid, COLOR_GRAD1, "USE: /arrastar [id]");
                    return true;
                }
                if(!IsPlayerInAnyVehicle(playerid))
                {
                    SendClientMessage(playerid, COLOR_GRAD1, "   Vocк nгo estб em um Veiculo !");
                    return true;
                }
                //giveplayerid = strval(tmp);
                giveplayerid = ReturnUser(tmp);
                if(IsPlayerInAnyVehicle(giveplayerid))
                {
                    SendClientMessage(playerid, COLOR_GRAD1, "   O Jogador estб em um Veiculo !");
                    return 1;
                }
                if(PlayerCuffedTime[giveplayerid] <= 0)
                {
                    SendClientMessage(playerid, COLOR_GRAD1, "   Vocк nгo pode arrastar e algemar pessoas que nгo estгo Imobilizadas!");
                    return 1;
                }
                if(giveplayerid == playerid)
                {
                    SendClientMessage(playerid, COLOR_GRAD1, "   Vocк nгo pode se arrastar e algemar!");
                    return 1;
                }
                if(IsPlayerConnected(giveplayerid))
                {
                    if(giveplayerid != INVALID_PLAYER_ID)
                    {
                        car = GetPlayerVehicleID(playerid);
                        GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
                        GetPlayerName(playerid, sendername, sizeof(sendername));
                        format(string, sizeof(string), "* Vocк foi arrastado e algemado pelo: %s.", sendername);
                        SendClientMessage(giveplayerid, COLOR_LIGHTBLUE, string);
                        format(string, sizeof(string), "* Vocк arrastou e algemou %s.", giveplayer);
                        SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
                        format(string, sizeof(string), "* %s arrastou e algemou %s, para nao fugir.", sendername ,giveplayer);
                        ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
                        GameTextForPlayer(giveplayerid, "~r~Algemado", 2500, 3);
                        PutPlayerInVehicle(giveplayerid, car, 3);
                        TogglePlayerControllable(giveplayerid, 0);
                    }
                }
                else
                {
                    SendClientMessage(playerid, COLOR_GRAD1, "   Este Jogador nгo estб ativo !");
                }
            }
            else
            {
                SendClientMessage(playerid, COLOR_GRAD1, "   Vocк nгo й Policial !");
            }
        }
        return true;
    }
Reply


Messages In This Thread
[Ajuda]Comando /arrastar bugado. - by Matheus_Ecko - 11.04.2012, 19:18
Re: [Ajuda]Comando /arrastar bugado. - by CidadeNovaRP - 11.04.2012, 19:22
Re: [Ajuda]Comando /arrastar bugado. - by Matheus_Ecko - 11.04.2012, 19:46
Re: [Ajuda]Comando /arrastar bugado. - by CidadeNovaRP - 11.04.2012, 19:50
Re: [Ajuda]Comando /arrastar bugado. - by Matheus_Ecko - 11.04.2012, 22:13
Re: [Ajuda]Comando /arrastar bugado. - by CidadeNovaRP - 11.04.2012, 22:22
Re: [Ajuda]Comando /arrastar bugado. - by Matheus_Ecko - 11.04.2012, 22:25
Re: [Ajuda]Comando /arrastar bugado. - by CidadeNovaRP - 11.04.2012, 22:35

Forum Jump:


Users browsing this thread: 1 Guest(s)