schoober Posted August 24, 2015 Share Posted August 24, 2015 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 = driver0 = passenger1 = left back seat2 = right back seat3 = outside left4 = outside right Original mod http://www.gtaall.com.br/gta-5/mods/61435-the-passenger-v01.html Link to comment Share on other sites More sharing options...
elsewhat Posted August 29, 2015 Share Posted August 29, 2015 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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now