Jump to content

I want event


Recommended Posts

i want whan the vehicle explode

do this function

my problem i try it and it's dont work

function deleteOnExitpilot ( thePlayer ) 
    if ( isElement ( markert [ thePlayer ] ) ) then 
        destroyElement ( markert [ thePlayer ] ) 
    end 
    if ( isElement ( blipt [ thePlayer ] ) ) then 
        destroyElement ( blipt [ thePlayer ] ) 
    end 
    if ( isElement ( pedt [ thePlayer ] ) ) then 
        destroyElement ( pedt [ thePlayer ] ) 
    end 
end 
addEventHandler ( "onVehicleExplode", getRootElement(), deleteOnExitpilot ) 

Link to comment
function deleteOnExitpilot ( ) 
    local thePlayer = getVehicleController ( source )  
    if not thePlayer then return end 
    if ( isElement ( markert [ thePlayer ] ) ) then 
        destroyElement ( markert [ thePlayer ] ) 
    end 
    if ( isElement ( blipt [ thePlayer ] ) ) then 
        destroyElement ( blipt [ thePlayer ] ) 
    end 
    if ( isElement ( pedt [ thePlayer ] ) ) then 
        destroyElement ( pedt [ thePlayer ] ) 
    end 
end 
addEventHandler ( "onVehicleExplode", getRootElement(), deleteOnExitpilot ) 

Link to comment

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...