OnClientMarkerLeave

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This event is triggered when a player leaves the area of a marker created using createMarker.

Parameters

player leftPlayer, bool matchingDimension

Source

The source of this event is the marker that the player left.

Example

This example shows a message in the chatbox whenever a player leaves any marker.

function markerLeave ( leavingPlayer, matchingDimension )
    outputChatBox ( getPlayerName(leavingPlayer) .. " left a marker" )
end

addEventHandler ( "onClientMarkerLeave", getRootElement(), markerLeave )

See Also

Client marker events


Client marker functions