Jump to content

help damage Proof


K4stic

Recommended Posts

Posted
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

Posted

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.

Posted

now working :D just removed this line and working perfect :D

if ( isElement ( thePlayer ) ) and ( isElement ( theVehicle ) ) then 

and removed thePlayer

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
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...