K4stic Posted April 6, 2013 Share Posted April 6, 2013 function VehicleEnter( thePlayer, theVehicle, seat ) local model = getElementModel ( theVehicle ) if ( model == 411 ) or ( model == 480 ) and ( seat == 0 ) then if ( isElement ( thePlayer ) ) and ( isElement ( theVehicle ) ) then setVehicleDamageProof ( theVehicle, true ) end end end addEventHandler ( "onPlayerVehicleEnter", root, VehicleEnter ) no errors just no work Link to comment
Castillo Posted April 6, 2013 Share Posted April 6, 2013 No errors? that's just impossible, because the second argument of "onPlayerVehicleEnter" is the seat you entered, not the vehicle Use 'source' instead of theVehicle on your functions. Link to comment
K4stic Posted April 6, 2013 Author Share Posted April 6, 2013 now working just removed this line and working perfect if ( isElement ( thePlayer ) ) and ( isElement ( theVehicle ) ) then and removed thePlayer 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