createMarkerLocal
From Bohemia Interactive Community
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, position]: Array
- name: String
- position: Array - format Position
- name: String
- 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:
_markerstr = createMarkerLocal["markername",[_Xpos,_Ypos]] _markerstr setMarkerShapeLocal "ICON" "markername" setMarkerTypeLocal "DOT"