OnMarkerHit

From Multi Theft Auto: Wiki
Revision as of 02:45, 14 January 2008 by Ransom (talk | contribs) (→‎Example)
Jump to navigation Jump to search

This event is triggered when a player enters a marker created using createMarker.

Parameters

player hitPlayer, bool matchingDimension
  • hitPlayer: The player that hit the marker
  • matchingDimension: True if the player is in the same dimension as the marker he hit

Source

The source of this event is the marker that got hit by the player.

Example

This will output 'hi' in the chatbox when the marker is hit.

function MarkerHit ( hitPlayer, matchingDimension )
	outputChatBox ( "hi" )
end
addEventHandler("onMarkerHit", getRootElement (), MarkerHit)

See Also

Marker events


Event functions