ACE3/addons/microdagr/functions/fnc_deviceDeleteWaypoint.sqf

29 lines
642 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-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_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"
PARAMS_1(_wpIndex);
2015-04-17 20:45:00 +00:00
private "_waypoints";
2015-03-09 18:52:15 +00:00
_waypoints = ace_player getVariable [QGVAR(waypoints), []];
if ((_wpIndex < 0) || (_wpIndex > ((count _waypoints) - 1))) exitWith {ERROR("out of bounds wp");};
_waypoints deleteAt _wpIndex;
ace_player setVariable [QGVAR(waypoints), _waypoints];