2015-03-09 18:52:15 +00:00
|
|
|
/*
|
|
|
|
* Author: PabstMirror
|
2015-03-11 07:06:07 +00:00
|
|
|
* Adds a waypoint to the "device"
|
|
|
|
* Device saving not implemented yet, just save to player object
|
2015-03-09 18:52:15 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
2015-03-11 07:06:07 +00:00
|
|
|
* 0: Waypoint name <STRING>
|
|
|
|
* 1: Waypoint Position ASL <ARRAY>
|
2015-03-09 18:52:15 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
2015-08-26 03:31:33 +00:00
|
|
|
* None
|
2015-03-09 18:52:15 +00:00
|
|
|
*
|
|
|
|
* Example:
|
2015-03-11 07:06:07 +00:00
|
|
|
* ["Hill 55", [41,324, 12]] call ace_microdagr_fnc_deviceAddWaypoint
|
2015-03-09 18:52:15 +00:00
|
|
|
*
|
2015-03-11 07:06:07 +00:00
|
|
|
* Public: No
|
2015-03-09 18:52:15 +00:00
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-04-17 20:45:00 +00:00
|
|
|
private "_waypoints";
|
2015-08-26 03:31:33 +00:00
|
|
|
params ["_waypointName","_waypointPosASL"];
|
|
|
|
|
|
|
|
|
2015-04-17 20:45:00 +00:00
|
|
|
|
2015-08-26 03:31:33 +00:00
|
|
|
_waypoints = ACE_player getVariable [QGVAR(waypoints), []];
|
2015-03-09 18:52:15 +00:00
|
|
|
_waypoints pushBack [_waypointName, _waypointPosASL];
|
2015-08-26 03:31:33 +00:00
|
|
|
ACE_player setVariable [QGVAR(waypoints), _waypoints];
|