SetMarkerType: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 12: Line 12:
==Acceptable type values==
==Acceptable type values==
* '''"checkpoint"''': Checkpoint
* '''"checkpoint"''': Checkpoint
* '''"corona"''': Corona (doughnut-shaped)
* '''"ring"''': Ring (doughnut-shaped)
* '''"cylinder"''': Cylinder
* '''"cylinder"''': Cylinder
* '''"cone"''': Cone
* '''"arrow"''': Animated arrow pointing down


==Example==
==Example==

Revision as of 21:12, 17 May 2006

Description

This function sets an ID number that corresponds to a particular visual style of marker.

Syntax

bool setMarkerType ( marker marker, int type)

Required Arguments

  • marker: A marker class referencing the specified marker.
  • type: An integer (whole number) referring to the type of marker (see below).

Acceptable type values

  • "checkpoint": Checkpoint
  • "ring": Ring (doughnut-shaped)
  • "cylinder": Cylinder
  • "arrow": Animated arrow pointing down

Example

marker = createMarker ( 1000, 1000,1000, 0, 255, 0, 0 )

setMarkerType ( marker, 1)