2015-03-18 19:17:53 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
* Reload a launcher
|
|
|
|
*
|
2016-06-18 09:50:41 +00:00
|
|
|
* Arguments:
|
2017-06-08 13:31:51 +00:00
|
|
|
* 0: Unit to do the reloading <OBJECT>
|
|
|
|
* 1: Target to rload <OBJECT>
|
|
|
|
* 2: weapon name <STRING>
|
|
|
|
* 3: missile name <STRING>
|
2015-03-18 19:17:53 +00:00
|
|
|
*
|
2016-06-18 09:50:41 +00:00
|
|
|
* Return Value:
|
2017-06-08 13:31:51 +00:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [bob, kevin, "weapon", "missile"] call ace_reloadlaunchers_fnc_realoadLauncher
|
2016-04-28 03:58:47 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
2015-03-18 19:17:53 +00:00
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2016-04-28 03:58:47 +00:00
|
|
|
params ["_unit","_target","_weapon","_magazine"];
|
|
|
|
TRACE_4("params",_unit,_target,_weapon,_magazine);
|
2015-03-18 19:17:53 +00:00
|
|
|
|
2015-03-22 13:05:31 +00:00
|
|
|
_target selectWeapon _weapon;
|
2015-03-18 19:17:53 +00:00
|
|
|
|
2015-03-22 13:05:31 +00:00
|
|
|
if (currentWeapon _target != _weapon) exitWith {};
|
|
|
|
if (currentMagazine _target != "") exitWith {};
|
2015-03-18 19:17:53 +00:00
|
|
|
|
2015-10-21 20:52:21 +00:00
|
|
|
// command is wip, reload time for launchers is not intended.
|
2017-06-08 13:31:51 +00:00
|
|
|
_target addWeaponItem [_weapon, _magazine];
|