getMarkerType: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " <h3 style="display:none">Notes</h3> <dl class="command_description"> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl> " to "")
m (Text replacement - " *\| *([Cc]omments|COMMENTS|Game|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments( \("local" or "global"\))?|Effects|Multiplayer Effects( \("local" or "global"\))?|Multiplayer Exe...)
Line 1: Line 1:
{{Command|Comments=
{{Command


| ofp |Game name=
| ofp
|1.21|Game version=
|1.21


|gr1 = Markers |GROUP1=
|gr1 = Markers


|arg= global |Multiplayer Arguments=
|arg= global


| Returns the type of a given marker. See [[cfgMarkers]] for a list of standard markers. |DESCRIPTION=
| Returns the type of a given marker. See [[cfgMarkers]] for a list of standard markers.


|[[String]] <nowiki>=</nowiki>  '''getMarkerType''' markerName |SYNTAX=
|[[String]] <nowiki>=</nowiki>  '''getMarkerType''' markerName


|p1= markerName: [[String]] |PARAMETER1=
|p1= markerName: [[String]]


| [[String]]. See [[cfgMarkers]].
| [[String]]. See [[cfgMarkers]].


If the marker does not exist, the returned type is an empty string, ie ""|RETURNVALUE=
If the marker does not exist, the returned type is an empty string, ie ""
   
   
|x1= <pre>"MarkerOne" setMarkerType "Destroy"
|x1= <pre>"MarkerOne" setMarkerType "Destroy"
Line 22: Line 22:
_type = getMarkerType "MarkerOne"</pre>
_type = getMarkerType "MarkerOne"</pre>


returns "Destroy" |EXAMPLE1=
returns "Destroy"


| [[cfgMarkers]], [[markerType]], [[setMarkerType]], [[setMarkerTypeLocal]] |SEEALSO=
| [[cfgMarkers]], [[markerType]], [[setMarkerType]], [[setMarkerTypeLocal]]


}}
}}

Revision as of 01:41, 18 January 2021

Hover & click on the images for description

Description

Description:
Returns the type of a given marker. See cfgMarkers for a list of standard markers.
Groups:
Markers

Syntax

Syntax:
String = getMarkerType markerName
Parameters:
markerName: String
Return Value:
String. See cfgMarkers. If the marker does not exist, the returned type is an empty string, ie ""

Examples

Example 1:
"MarkerOne" setMarkerType "Destroy"

_type = getMarkerType "MarkerOne"
returns "Destroy"

Additional Information

See also:
cfgMarkersmarkerTypesetMarkerTypesetMarkerTypeLocal

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Bottom Section