draobrehtom Posted September 8, 2016 Share Posted September 8, 2016 (edited) Hi there. I interesting the one of important question. When I want to get getPedVehicleOccupied, what' will be more better with a performance side? To check every frame with onClientRender event if player are in a vehicle (getPedVehicleOccupied)? Or set events like a onClientVehicleEnter/Exit, onClientResourceStart etc. and check getPedVehicleOccupied only in those events? Edited September 8, 2016 by draobrehtom Link to comment
EstrategiaGTA Posted September 8, 2016 Share Posted September 8, 2016 Checking the vehicle each time the player enters/exits vehicles and so will be better for the perfomance. You shouldn't really use onClientRender for this, because it will get the player vehicle each frame (and you know, this would mean you get the player's vehicle 50 times per second, or so). The right function is getPedOccupiedVehicle, not getPedVehicleOccupied. Link to comment
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