Jump to content

Player passenger in the backseat


schoober

Recommended Posts

trying to edit a mod for my taste but need some help here, the owner didnt update anymore
So I want to change the door which the players enter so i can enter in the backseat door of the car, can anyone help me here?
function the_passenger.tick()
local key = Keys.G
local playerPed = PLAYER.PLAYER_PED_ID()
local playerPosition = ENTITY.GET_ENTITY_COORDS(playerPed, true)
local veh = VEHICLE.GET_CLOSEST_VEHICLE(playerPosition.x, playerPosition.y, playerPosition.z, 10, 3, 70)
if(get_key_pressed(key)) then
AI.TASK_OPEN_VEHICLE_DOOR(playerPed, veh, -1, 2, 10)
AI.TASK_ENTER_VEHICLE(playerPed, veh, -1, 2, 1, 1, 1);
Native
Usage of seat

-1 = driver
0 = passenger
1 = left back seat
2 = right back seat
3 = outside left
4 = outside right
Original mod
Link to comment
Share on other sites

To enter into the backseat change the fourth parameter of TASK_OPEN_VEHICLE_DOOR and TASK_ENTER_VEHICLE

API reference http://www.dev-c.com/nativedb/func/info/c20e50aa46d09ca8

 

 

This is the code I using in my scene director mod (which allows you to enter into the back seat if that is the closest door to you)

https://github.com/elsewhat/gtav-mod-scene-director/blob/master/script.cpp#L615

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • 1 User Currently Viewing
    0 members, 0 Anonymous, 1 Guest

×
×
  • Create New...

Important Information

By using GTAForums.com, you agree to our Terms of Use and Privacy Policy.