getMarkerType | Multi Theft Auto: Wiki Skip to content

getMarkerType

Client-side
Server-side
Shared

Pair: setMarkerType

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


This function returns a marker's type.

Syntax

getMarkerType ( )

Code Examples

server

This function creates a default marker at a given position and outputs its type.

function createMarkerAndOutputType ( ... )
-- we create the marker.
local theMarker = createMarker ( ... )
-- if the marker was created.
if isElement ( theMarker ) then
-- then get its type.
local markerType = getMarkerType ( theMarker )
-- and output it.
return outputChatBox ( "It's a " .. markerType .. " marker!" )
end
end
-- Create a marker and show its type in chat.
createMarkerAndOutputType(0, 0, 2, "cylinder", 2)