SetMarkerType: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Fix OOP)
 
(7 intermediate revisions by 5 users not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
This function changes a marker's type.
{{Server client function}}
This function changes a marker's type. The type controls how the marker is displayed in the game. It's important that you use marker types that users are used to from the single player game. For example, checkpoints are used in races, rings are used for aircraft races, arrows are used for entering buildings etc.  


==Syntax==
==Syntax==
server:
<syntaxhighlight lang="lua">bool setMarkerType ( marker theMarker, string markerType )</syntaxhighlight>
<syntaxhighlight lang="lua">bool setMarkerType ( marker theMarker, string markerType )</syntaxhighlight>
client:
{{OOP||[[Marker]]:setMarkerType|markerType|getMarkerType}}
<syntaxhighlight lang="lua">marker setMarkerType ( marker theMarker, string markerType )</syntaxhighlight>
 
===Required Arguments===
===Required Arguments===
* '''theMarker''': A [[marker]] element referencing the specified marker.
* '''theMarker''': A [[marker]] element referencing the specified marker.
Line 17: Line 15:


==Example==
==Example==
This function changes all existing markers' type to the specified one (server side).
This function changes all existing markers' type to the specified one.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function changeAllMarkersType ( newMarkerType )
function changeAllMarkersType ( newMarkerType )

Latest revision as of 10:11, 11 February 2015

This function changes a marker's type. The type controls how the marker is displayed in the game. It's important that you use marker types that users are used to from the single player game. For example, checkpoints are used in races, rings are used for aircraft races, arrows are used for entering buildings etc.

Syntax

bool setMarkerType ( marker theMarker, string markerType )

OOP Syntax Help! I don't understand this!

Method: Marker:setMarkerType(...)
Variable: .markerType
Counterpart: getMarkerType


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, aMarker in ipairs(allMarkers) do
		-- set its type to the one passed to this function
		setMarkerType( aMarker, newMarkerType )
	end
end

See Also