SetMarkerType

From Multi Theft Auto: Wiki
Revision as of 13:04, 22 April 2007 by Jbeta (talk | contribs)
Jump to navigation Jump to search

This function changes a marker's type.

Syntax

bool setMarkerType ( marker theMarker, string markerType )

Required Arguments

  • theMarker: A marker element referencing the specified marker.
  • markerType: A string denoting the marker type. Valid values are:
    • "checkpoint": A race checkpoint. These are very tall, but not infinite, light pillars. Checkpoints snap to ground and become invisible after going over a certain Z height.
    • "ring": Doughnut shaped ring, normally used for aircraft.
    • "cylinder": Small glowing ground ring. These are the glow markers you walk into to activate missions or events in single player.
    • "arrow": Arrow pointing down. These are the arrows on the doors you can enter in single player, except MTA's are not animated by default.
    • "corona": A glowing ball of light.

Returns

Returns true if the marker type was changed, false if it wasn't or marker values were invalid.

Example

This function changes all existing markers' type to the specified one.

function changeAllMarkersType ( newMarkerType )
	-- we store a table with all markers
	local allMarkers = getElementsByType( "marker" )
	-- for each marker in it,
	for index, Marker in allMarkers do
		-- set its type to the one passed to this function
		setMarkerType( Marker, newMarkerType )
	end
end

See Also