ACE3/addons/reloadlaunchers/functions/fnc_reloadLauncher.sqf

31 lines
639 B
Plaintext
Raw Normal View History

2015-03-18 19:17:53 +00:00
/*
* Author: commy2
*
* Reload a launcher
*
* Argument:
2015-03-22 13:05:31 +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
*
* Return value:
* NONE
*/
#include "script_component.hpp"
private ["_unit", "_weapon", "_magazine"];
_unit = _this select 0;
2015-03-22 13:05:31 +00:00
_target = _this select 1;
_weapon = _this select 2;
_magazine = _this select 3;
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
// command is wip, reload time for launchers is not intended.
2015-03-22 13:05:31 +00:00
_target addWeaponItem [_weapon, _magazine];