OnPlayerMarkerLeave: Difference between revisions

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


==See Also==
{{See also/Server event|Player events}}
===Player events===
{{Player_events}}
===Event functions===
{{Event functions}}

Latest revision as of 03:01, 27 September 2018

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

Parameters

marker markerLeft, bool matchingDimension

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


Event functions