setMarkerSize | Multi Theft Auto: Wiki Skip to content

setMarkerSize

Client-side
Server-side
Shared
Needs checking

This function was partially migrated from the old wiki. Please review manually:

  • Missing section: Client
  • Missing section: Server

Pair: getMarkerSize

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 sets the size of the specified marker.

Syntax

setMarkerSize ( )

Code Examples

server

This example creates a cylinder marker at the position 0, 0, 2 and sets its size to2.5.

local newMarker = createMarker ( 0, 0, 2, "cylinder", 1 )
setMarkerSize ( newMarker, 2.5 )