OnPlayerMarkerLeave: Difference between revisions
Jump to navigation
Jump to search
m (→Parameters) |
|||
Line 8: | Line 8: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
*'''markerLeft''': The marker the player left | *'''markerLeft''': The marker the player left. | ||
*'''matchingDimension''': Whether the player and the marker he left are in the same dimension | *'''matchingDimension''': Whether the player and the marker he left are in the same dimension. | ||
==Source== | ==Source== |
Revision as of 21:28, 2 April 2018
This event is triggered when a player leaves the area of a marker.
Parameters
marker markerLeft, bool matchingDimension
- markerLeft: The marker the player left.
- matchingDimension: Whether the player and the marker he left are in the same dimension.
Source
The source of this event is the player that left the marker.
Example
This example will output the name of the player that has left a specific marker to the chatbox.
-- Create our marker marker = createMarker(1248,2012,123,"corona",7,255,255,255,255) function someoneLeftMarker(markerLeft,matchingDimension) -- Output our message outputChatBox(getPlayerName(source).." has left the marker!",getRootElement(),255,0,0) end -- Add an event handler to trigger our function addEventHandler("onPlayerMarkerLeave",marker,someoneLeftMarker)
See Also
Player events
- onPlayerACInfo
- onPlayerBan
- onPlayerChangeNick
- onPlayerChat
- onPlayerClick
- onPlayerCommand
- onPlayerConnect
- onPlayerContact
- onPlayerDamage
- onPlayerJoin
- onPlayerLogin
- onPlayerLogout
- onPlayerMarkerHit
- onPlayerMarkerLeave
- onPlayerModInfo
- onPlayerMute
- onPlayerNetworkStatus
- onPlayerPickupHit
- onPlayerPickupLeave
- onPlayerPickupUse
- onPlayerPrivateMessage
- onPlayerQuit
- onPlayerScreenShot
- onPlayerSpawn
- onPlayerStealthKill
- onPlayerTarget
- onPlayerUnmute
- onPlayerVehicleEnter
- onPlayerVehicleExit
- onPlayerVoiceStart
- onPlayerVoiceStop
- onPlayerWasted
- onPlayerWeaponFire
- onPlayerWeaponSwitch
Event functions
- addEvent
- addEventHandler
- cancelEvent
- cancelLatentEvent
- getEventHandlers
- getLatentEventHandles
- getLatentEventStatus
- removeEventHandler
- triggerEvent
- wasEventCancelled