OnMarkerLeave
Jump to navigation
Jump to search
This event is triggered when a player leaves the area of a marker created using createMarker.
Parameters
player leftPlayer, bool matchingDimension
- leftPlayer: The player that left the marker's area
- matchingDimension: True if the player is in the same dimension as the marker he left
Source
The source of this event is the marker that the player left.
Example
This example shows a message in the player's chat box when they leave a marker.
function markerLeave ( leavePlayer, matchingDimension ) outputChatBox ( "You left a marker", leavePlayer ) end addEventHandler("onMarkerLeave", getRootElement (), markerLeave )
See Also
Marker events