getWPPos
From Bohemia Interactive Community
| Editors, please check Policy: Scripting Command Page Syntax. |
Click on the images for descriptions
Introduced in
- Game:
- Operation Flashpoint
- Version:
- 1.21
Description
- Description:
- Returns the position of a selected waypoint of a given group. Waypoints include only those which were placed in the mission editor.
Syntax
- Syntax:
- Position3D = getWPPos [ Group, number]
- Parameters:
- group: Group - the group/unit, of which you want to select a waypoint
- number: Integer - 0 equals the starting position of the group.
The number used in this and other waypoint commands is one more than the one displayed in the waypoint window in the editor. (i.e. if the editor labeled a WP "0:MOVE" the you would have to use getWPPos [grp,1] to access this particular WP - Return Value:
- Position3D - The returned position equals [0,0,0], if the selected waypoint doesn't exist.
Examples
- Example 1:
[_group1,1] setWPPos [200,600,0]
_pos = getWPPos [_group1,1]returns [200,600,0]
Additional Information
- Multiplayer:
- Behaviour unknown.
- See also:
- setWPPos

