Portal SAMP
[Ajuda] Veiculo/interior - Versão de Impressão

+- Portal SAMP (https://portalsamp.com)
+-- Fórum: SA-MP (https://portalsamp.com/forumdisplay.php?fid=5)
+--- Fórum: Área de suporte (https://portalsamp.com/forumdisplay.php?fid=6)
+--- Tópico: [Ajuda] Veiculo/interior (/showthread.php?tid=4879)



Veiculo/interior - Lvzin Samp - 19/09/2024

Como faço para o player entrar num interior com o veículo e sair com aquele veículo dentro do interior?


RE: Veiculo/interior - xbruno1000x - 19/09/2024

Código:
new g_vehicle; //Global

    //Entrando no interior
    g_vehicle = AddStaticVehicle(559, 2543.7505, -21.8345, 27.1899, 52.6054, -1, -1);
    LinkVehicleToInterior(g_vehicle, 6);

    //Saindo do interior
    LinkVehicleToInterior(g_vehicle, 0);

Também da pra fazer pegando o id pela função GetPlayerVehicleID(playerid). Mas em geral o conceito é esse daí, basta colocar um id de veículo e o id do interior.

Documentação:
https://www.open.mp/docs/scripting/functions/LinkVehicleToInterior
https://www.open.mp/docs/scripting/functions/GetPlayerVehicleID


RE: Veiculo/interior - Aranha - 20/09/2024

Código:
new tmpcar = GetPlayerVehicleID(playerid);
                                        SetPlayerInterior(playerid, id interior);
                    LinkVehicleToInterior(tmpcar, id interior);
                    SetVehiclePos(tmpcar,x, y, z);
                    SetVehicleZAngle(tmpcar, r);