OnClientMarkerHit: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(One intermediate revision by the same user not shown)
Line 8: Line 8:
</syntaxhighlight>  
</syntaxhighlight>  


*'''hitPlayer:''' the [[player]] that hit the marker
*'''hitPlayer:''' the [[player]] that hit the [[marker]].
*'''matchingDimension:''' ''true'' if the [[player]] is in the same [[dimension]] as the hit [[marker]].
*'''matchingDimension:''' ''true'' if the [[player]] is in the same [[dimension]] as the hit [[marker]].



Revision as of 22:26, 2 April 2018

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

Parameters

player hitPlayer, bool matchingDimension

Source

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

Example

This code will output a message to the chatbox whenever any player walks into any marker.

function MarkerHit ( hitPlayer, matchingDimension )
	outputChatBox ( getPlayerName(hitPlayer) .. " entered a marker" )
end
addEventHandler ( "onClientMarkerHit", getRootElement(), MarkerHit )

See Also

Client marker events


Client marker functions