- 120
- 20
- Версия MoonLoader
- .026-beta
помогите поменять посадку в машину с карида по type транспорта
Lua:
function tpseat(carid)
lua_thread.create(function()
local bool, carHandle = sampGetCarHandleBySampVehicleId(carid)
if bool then
local x, y, z= getCarCoordinates(carHandle)
setCharCoordinates(PLAYER_PED, x,y,z)
sampSendEnterVehicle(carid, true)
wait(1000)
warpCharIntoCar(PLAYER_PED, carHandle)
end
end)
end