OnClientMarkerLeave: Difference between revisions
Jump to navigation
Jump to search
(New page: __NOTOC__ {{Client event}} This event is triggered when a player leaves the area of a marker created using createMarker. ==Parameters== <syntaxhighlight lang="lua"> player leftPlayer, bool matchingD...) |
Tag: Undo |
||
(7 intermediate revisions by 5 users not shown) | |||
Line 8: | Line 8: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
*'''leftPlayer''': | *'''leftPlayer''': the [[player]] that left the [[marker|marker's]] area. | ||
*'''matchingDimension''': ''true'' if the player is in the same dimension as the marker | *'''matchingDimension''': ''true'' if the [[player]] is in the same [[dimension]] as the [[marker]]. | ||
==Source== | ==Source== | ||
Line 25: | Line 25: | ||
==See Also== | ==See Also== | ||
===Client marker events=== | |||
{{Client marker events}} | {{Client marker events}} | ||
===Client marker functions=== | |||
{{Client_marker_functions}} |
Latest revision as of 12:20, 3 June 2022
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.
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
- isCoronaReflectionEnabled
- setCoronaReflectionEnabled
- Shared
- createMarker
- getMarkerColor
- getMarkerCount
- getMarkerIcon
- getMarkerSize
- getMarkerTarget
- getMarkerType
- setMarkerColor
- setMarkerIcon
- setMarkerSize
- setMarkerTarget
- setMarkerType
- isElementWithinMarker