2015-03-18 19:17:53 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
*
|
|
|
|
* Check of the unit can reload the launcher of target unit.
|
|
|
|
*
|
|
|
|
* Argument:
|
2015-03-18 20:33:00 +00:00
|
|
|
* 0: Unit to do the reloading (Object)
|
2015-03-18 19:17:53 +00:00
|
|
|
* 1: Unit eqipped with launcher (Object)
|
2015-03-22 13:05:31 +00:00
|
|
|
* 2: weapon name (String)
|
|
|
|
* 3: missile name (String)
|
2015-03-18 19:17:53 +00:00
|
|
|
*
|
|
|
|
* Return value:
|
|
|
|
* NONE
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-03-22 13:05:31 +00:00
|
|
|
private ["_unit", "_target", "_weapon", "_magazine"];
|
2015-03-18 19:17:53 +00:00
|
|
|
|
|
|
|
_unit = _this select 0;
|
|
|
|
_target = _this select 1;
|
2015-03-22 13:05:31 +00:00
|
|
|
_weapon = _this select 2;
|
|
|
|
_magazine = _this select 3;
|
2015-03-18 19:17:53 +00:00
|
|
|
|
|
|
|
if (!alive _target) exitWith {false};
|
2015-03-22 13:05:31 +00:00
|
|
|
if (vehicle _target != _target) exitWith {false};
|
2015-03-18 19:17:53 +00:00
|
|
|
if !([_unit, _target, []] call EFUNC(common,canInteractWith)) exitWith {false};
|
|
|
|
|
2015-03-22 13:05:31 +00:00
|
|
|
// target is awake
|
|
|
|
if (_target getVariable ["ACE_isUnconscious", false]) exitWith {false};
|
2015-03-18 19:17:53 +00:00
|
|
|
|
|
|
|
// has secondary weapon equipped
|
2015-03-22 13:05:31 +00:00
|
|
|
if !(_weapon in weapons _target) exitWith {false};
|
2015-03-18 19:17:53 +00:00
|
|
|
|
|
|
|
// check if the target really needs to be reloaded
|
2015-03-22 13:05:31 +00:00
|
|
|
if (count secondaryWeaponMagazine _target > 0) exitWith {false};
|
2015-03-18 19:17:53 +00:00
|
|
|
|
|
|
|
// check if the launcher is compatible
|
2015-03-18 20:33:00 +00:00
|
|
|
if (getNumber (configFile >> "CfgWeapons" >> _weapon >> QGVAR(enabled)) == 0) exitWith {false};
|
2015-03-18 19:17:53 +00:00
|
|
|
|
2015-03-22 13:05:31 +00:00
|
|
|
// check if the magazine compatible with targets launcher
|
|
|
|
_magazine in ([_unit, _weapon] call FUNC(getLoadableMissiles))
|