ACE3/addons/microdagr/functions/fnc_deviceDeleteWaypoint.sqf

27 lines
625 B
Plaintext
Raw Normal View History

2015-03-09 18:52:15 +00:00
/*
* Author: PabstMirror
2015-03-11 07:06:07 +00:00
* Deletes a waypoint from 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 Index <NUMBER>
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_deviceDeleteWaypoint
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-08-26 03:31:33 +00:00
params ["_wpIndex"];
2015-04-17 20:45:00 +00:00
private _waypoints = ACE_player getVariable [QGVAR(waypoints), []];
2015-03-09 18:52:15 +00:00
if ((_wpIndex < 0) || (_wpIndex > ((count _waypoints) - 1))) exitWith {ERROR("out of bounds wp");};
_waypoints deleteAt _wpIndex;
2015-08-26 03:31:33 +00:00
ACE_player setVariable [QGVAR(waypoints), _waypoints];