SA-MP Forums Archive
[Ajuda] Nгo remove o player do veнculo - 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] Nгo remove o player do veнculo (/showthread.php?tid=663997)



Nгo remove o player do veнculo - elTioFrame - 16.02.2019

Estava fazendo uma profissгo de caminhoneiro e de seguranзa fiz um sisteminha de anti roubo do veнculo bem basico, mas n entendi ele envia a mensagem pro player mas n remove o player do veнculo...

pawn Код:
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
    if(vehicleid == CarrosEmpresaCaminhoneiro[0],CarrosEmpresaCaminhoneiro[1],CarrosEmpresaCaminhoneiro[2],CarrosEmpresaCaminhoneiro[3],CarrosEmpresaCaminhoneiro[4],CarrosEmpresaCaminhoneiro[5],CarrosEmpresaCaminhoneiro[6],CarrosEmpresaCaminhoneiro[7],CarrosEmpresaCaminhoneiro[8],CarrosEmpresaCaminhoneiro[9])
    {
        if(PlayerInfo[playerid][pProf] == Caminhoneiro)
        {
            //...
        }
        else
        {
            SendClientMessage(playerid, Cor_Caminhoneiro, "Vocк nгo й caminhoneiro e nгo pode entrar no veнculo.");
            RemovePlayerFromVehicle(playerid);
        }
    }
    return 1;
}
Conto com a ajuda de vocкs


Re: Nгo remove o player do veнculo - willttoonn - 16.02.2019

Troque o RemovePlayerFromVehicle por:
pawn Код:
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
SetPlayerPos(playerid, x, y, z+1);
O RemovePlayerFromVehicle nгo vai funcionar no OnPlayerEnterVehicle porque o jogador apertou F, mas ainda nгo ta dentro do veнculo, apenas dentro do veнculo ele pode ser removido. Com o SetPlayerPos que eu indiquei ele irб cancelar a entrada do jogador dentro do veнculo.


Re: Nгo remove o player do veнculo - elTioFrame - 16.02.2019

Solucionado +REP


Re: Nгo remove o player do veнculo - AutoMatic2 - 17.02.2019

Tambйm pode ser com ClearAnimations(playerid), Eu uso e fica atй melhor que RemovePlayerFromVehicle :v