deleteMarkerLocal: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " \| *(game[0-9]|version[0-9]|gr[0-9]|serverExec|mp|pr|descr|s[0-9]|p[0-9]{1,3}|r[0-9]|x1?[0-9]|seealso) *= +" to " |$1= ")
m (Some wiki formatting)
 
(5 intermediate revisions by 2 users not shown)
Line 22: Line 22:
|descr= Destroys the given marker.
|descr= Destroys the given marker.


|s1= '''deleteMarkerLocal''' markerName
|s1= [[deleteMarkerLocal]] markerName


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


|r1=[[Nothing]]
|r1= [[Nothing]]
 
|x1= <code>'''deleteMarkerLocal''' "Marker1"</code>
|seealso= [[createMarkerLocal]], [[deleteMarker]]
}}


|x1= <sqf>deleteMarkerLocal "Marker1";</sqf>


<dl class="command_description">
|seealso= [[createMarkerLocal]] [[deleteMarker]]
}}


<dt></dt>
{{Note
<dd class="notedate">Posted on 7 January, 2012</dd>
|user= HomerJohnston
<dt class="note">[[User:HomerJohnston|HomerJohnston]]</dt>
|timestamp= 20120107091600
<dd class="note">
|text= Unproven: I believe that if you use this command on a globally-created marker, and subsequently another machine executes a global command on the same marker (e.g. setMarkerPos), then the marker will be re-created on the machine it was previously deleted on. Can result in confusing marker behaviour.
Unproven: I believe that if you use this command on a globally-created marker, and subsequently another machine executes a global command on the same marker (e.g. setMarkerPos), then the marker will be re-created on the machine it was previously deleted on. Can result in confusing marker behaviour.
}}

Latest revision as of 16:55, 20 March 2023

Hover & click on the images for description

Description

Description:
Destroys the given marker.
Groups:
Markers

Syntax

Syntax:
deleteMarkerLocal markerName
Parameters:
markerName: String
Return Value:
Nothing

Examples

Example 1:
deleteMarkerLocal "Marker1";

Additional Information

See also:
createMarkerLocal deleteMarker

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
HomerJohnston - c
Posted on Jan 07, 2012 - 09:16 (UTC)
Unproven: I believe that if you use this command on a globally-created marker, and subsequently another machine executes a global command on the same marker (e.g. setMarkerPos), then the marker will be re-created on the machine it was previously deleted on. Can result in confusing marker behaviour.