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-03-11 07:06:07 +00:00
|
|
|
* Nothing
|
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"
|
|
|
|
|
|
|
|
PARAMS_2(_waypointName,_waypointPosASL);
|
|
|
|
|
|
|
|
_waypoints = ace_player getVariable [QGVAR(waypoints), []];
|
|
|
|
_waypoints pushBack [_waypointName, _waypointPosASL];
|
|
|
|
ace_player setVariable [QGVAR(waypoints), _waypoints];
|