OnClientMarkerHit

From Multi Theft Auto: Wiki
Revision as of 21:26, 26 September 2016 by Algeriany (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 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