mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
26 lines
534 B
Plaintext
26 lines
534 B
Plaintext
/*
|
|
* Author: commy2
|
|
*
|
|
* Reload a launcher
|
|
*
|
|
* Argument:
|
|
* 0: Unit to do the reloading (Object)
|
|
* 1: Target to rload (Object)
|
|
* 2: weapon name (String)
|
|
* 3: missile name (String)
|
|
*
|
|
* Return value:
|
|
* NONE
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
PARAMS_4(_unit,_target,_weapon,_magazine);
|
|
|
|
_target selectWeapon _weapon;
|
|
|
|
if (currentWeapon _target != _weapon) exitWith {};
|
|
if (currentMagazine _target != "") exitWith {};
|
|
|
|
// command is wip, reload time for launchers is not intended.
|
|
_target addWeaponItem [_weapon, _magazine];
|