GetMarkerIcon: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Server client function}}
This function returns the icon name for a marker.
This function returns the icon name for a marker.



Revision as of 22:12, 4 August 2007

This function returns the icon name for a marker.

Syntax

string getMarkerIcon ( marker theMarker )

Required Arguments

  • theMarker: A marker element referencing the specified marker.

Returns

Returns false if the marker passed is invalid or a string containing one of the following:

  • "none": No icon
  • "arrow": Arrow icon
  • "finish": Finish (end-race) icon

Example

marker = createMarker ( 1000, 1000,1000, "checkpoint", 255, 0, 0 )
icon = getMarkerIcon (marker)
outputChatBox ( "The default marker icon is " .. icon )

See Also