GetMarkerSize

From Multi Theft Auto: Wiki
Revision as of 16:53, 18 May 2006 by Black Dragon (talk | contribs)
Jump to navigation Jump to search

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

Syntax

float getMarkerSize ( marker myMarker )

Required Arguments

  • marker: The marker that you wish to retrieve the size of.

Returns

Returns a float containing the size of the specified marker.

Example

newMarker = createMarker ( 1, 1000, 1000, 1000, 1,0,0 )
 OutputChatBox ( ( "Current marker size: ", getMarkerSize ( newMarker ) ), player )