[Ajuda] Player usar comando...
#1

Como faria prum player poder usar comando no outro player apуs esse outro player usar outro comando? Exemplo:

Joгozinho й da polнcia e quer algemar Pedrinho, mas o comando /algemar sу pode ser usado no Pedrinho depois que o Pedrinho usar /handsup, como faria isso?

pawn Код:
if(strcmp(cmd, "/algemar", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(!IsACop(playerid))
            {
                SendClientMessage(playerid, COLOR_GREY, "   Vocк nгo й um policial!");
                return true;
            }
            if(OnDuty[playerid] != 1)
            {
                SendClientMessage(playerid, COLOR_GREY, "   Vocк nгo bateu o cartгo!");
                return true;
            }
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_WHITE, "Use: /algemar [id]");
                return true;
            }
            giveplayerid = ReturnUser(tmp);
            if(IsPlayerConnected(giveplayerid))
            {
                if(giveplayerid != INVALID_PLAYER_ID)
                {
                    if(gTeam[giveplayerid] == 2 || IsACop(giveplayerid))
                    {
                        SendClientMessage(playerid, COLOR_GREY, "   Vocк nгo pode algemar COPs !");
                        return true;
                    }
                    if(PlayerCuffed[giveplayerid] > 0)
                    {
                        SendClientMessage(playerid, COLOR_GREY, "   O Jogador jб esta algemado !");
                        return true;
                    }
                    if (ProxDetectorS(8.0, playerid, giveplayerid))
                    {
                        if(giveplayerid == playerid)
                        {
                            SendClientMessage(playerid, COLOR_GREY, "Vocк nao pode se algemar!");
                            return true;
                        }
                        GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
                        GetPlayerName(playerid, sendername, sizeof(sendername));
                        format(string, sizeof(string), "* Vocк foi algemado pelo: %s.", PlayerName(playerid));
                        SendClientMessage(giveplayerid, COLOR_LIGHTBLUE, string);
                        format(string, sizeof(string), "* Vocк algemou %s.", giveplayer);
                        SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
                        format(string, sizeof(string), "* %s 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);
                        Controle(giveplayerid, 0);
                        PlayerCuffed[giveplayerid] = 2;
                        SetPlayerAttachedObject(giveplayerid, 4, 19418, 6, -0.031999, 0.024000, -0.024000, -7.900000, -32.000011, -72.299987, 1.115998, 1.322000, 1.406000);
                        SetPlayerSpecialAction(giveplayerid, SPECIAL_ACTION_CUFFED);
                        ApplyAnimation(giveplayerid,"CRACK","crckidle2",4.1,0,1,1,1,1);
                    }
                    else
                    {
                        SendClientMessage(playerid, COLOR_GREY, "   O Jogador estб longe de Vocк !");
                        return true;
                    }
                }
            }
            else
            {
                SendClientMessage(playerid, COLOR_GREY, "   O Jogador Estб Offline !");
                return true;
            }
        }
        return true;
    }
pawn Код:
if (strcmp(cmd, "/handsup", true) == 0)
    {
        SetPlayerSpecialAction(playerid,SPECIAL_ACTION_HANDSUP);
        return true;
    }
Reply


Messages In This Thread
Player usar comando... - by bombomloko - 27.10.2013, 02:19
Re: Player usar comando... - by BielCOP - 27.10.2013, 02:22
Re: Player usar comando... - by MatheusAlcapone - 27.10.2013, 02:23
Re: Player usar comando... - by BielCOP - 27.10.2013, 03:44

Forum Jump:


Users browsing this thread: 2 Guest(s)