ACE3/addons/weaponselect/functions/fnc_putWeaponAway.sqf
2016-01-06 22:42:02 +01:00

23 lines
374 B
Plaintext

/*
* Author: commy2
* The unit will put its current weapon away.
*
* Arguments:
* 0: Unit <OBJECT>
*
* Return Value:
* None
*
* Example:
* [player] call ace_weaponselect_fnc_putWeaponAway
*
* Public: Yes
*/
#include "script_component.hpp"
params ["_unit"];
_unit call EFUNC(common,fixLoweredRifleAnimation);
_unit action ["SwitchWeapon", _unit, _unit, 99];