GetMarkerType: Difference between revisions
Jump to navigation
Jump to search
JonChappell (talk | contribs) No edit summary |
|||
Line 10: | Line 10: | ||
==Return Values== | ==Return Values== | ||
* ''' | * '''"checkpoint"''': Checkpoint | ||
* ''' | * '''"corona"''': Corona (doughnut-shaped) | ||
* '''"cylinder"''': Cylinder | |||
* '''"cone"''': Cone | |||
==Example== | ==Example== |
Revision as of 20:52, 17 May 2006
Description
This function returns an ID number that corresponds to a particular type of marker.
Syntax
int getMarkerType ( marker marker)
Required Arguments
- marker: A marker class referencing the specified marker.
Return Values
- "checkpoint": Checkpoint
- "corona": Corona (doughnut-shaped)
- "cylinder": Cylinder
- "cone": Cone
Example
marker = createMarker ( 1000, 1000,1000, 0, 255, 0, 0 ) gettype = getMarkerType (marker)
if (gettype == 0) serverChat ("Checkpoint marker.") else serverChat ("Corona marker.") end