OnElementColShapeLeave: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
Line 27: Line 27:
</syntaxhighlight>
</syntaxhighlight>


{{See also/Server event|Element events}}
==See Also==
===Element events===
{{Element_events}}
===Event functions===
{{Event functions}}

Revision as of 02:06, 27 September 2018

This event is triggered when an player or vehicle element leaves the area of a colshape.

Parameters

colshape theColShape, bool matchingDimension

Source

The source of this event is the player or vehicle that left colshape.

Example

This example prints type of the element which left the created colshape to chatbox.

colArea = createColCircle( 1400.0, -700.0, 5.0 ) -- create the colshape

function elementColShapeLeave( colShapeLeft )
    if colShapeLeft == colArea then -- if element left the created colshape
        outputChatBox( getElementType( source ) .. " left the colCircle!" ) -- print the type of the element to chatbox
    end
end
addEventHandler( "onElementColShapeLeave", getRootElement(), elementColShapeLeave ) -- add a handler function for the event

See Also

Element events


Event functions