createMarkerLocal
From Bohemia Interactive Community
| Editors, please check Policy: Scripting Command Page Syntax. |
Click on the images for descriptions
Introduced in
- Game:
- Armed Assault
- Version:
- 1.04
Description
- Description:
- Creates a new marker at the given position. The marker name has to be unique.
Syntax
- Syntax:
- String = createMarkerLocal ["name", Position]
- Parameters:
- name: String
- Position
- Return Value:
- String
Examples
Additional Information
- Multiplayer:
- createMarkerLocal is local, so it should be used along with the other local commands
- See also:
- setMarkerBrushLocal, setMarkerColorLocal, setMarkerDirLocal, setMarkerPosLocal, setMarkerShapeLocal, setMarkerSizeLocal, setMarkerTextLocal, setMarkerTypeLocal, deleteMarkerLocal
Notes
Notes
Notes
-
To create a marker you need to define at least the following three settings:
_markerobj = createMarkerLocal["markername",[_Xpos,_Ypos]] _markerobj setMarkerShapeLocal "ICON" "markername" setMarkerTypeLocal "DOT"

