getMarkerSize | Multi Theft Auto: Wiki Skip to content

getMarkerSize

Client-side
Server-side
Shared

Pair: setMarkerSize

Manual Review Required

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


This function returns a float containing the size of the specified marker.

OOP Syntax Help! I don't understand this!

  • Method:marker:getSize(...)
  • Variable: .size

Syntax

float getMarkerSize ( marker myMarker )
Required Arguments
  • myMarker: The marker that you wish to retrieve the size of.

Returns

  • float: value

Returns a float containing the size of the specified marker.

Code Examples

shared

This example creates a marker and outputs the size to everyone.

-- Create a maker
local newMarker = createMarker ( 0, 0, 2, "cylinder", 2, 255, 0, 0, 255 )
-- If the marker was created successfully then...
if isElement ( newMarker ) then
-- Tell everyone about it
outputChatBox ( "Current marker size: " .. getMarkerSize ( newMarker ) )
end