ACE3/addons/common/functions/fnc_getWeaponItems_f.sqf

14 lines
316 B
Plaintext
Raw Normal View History

2015-01-16 23:21:47 +00:00
/**
* fn_getWeaponItems_f.sqf
* @Descr: Get the weapon items from the unit.
* @Author: Glowbal
*
* @Arguments: [unit OBJECT]
* @Return:
* @PublicAPI: false
*/
#include "script_component.hpp"
private "_unit";
_unit = _this select 0;
[primaryWeaponItems _unit, secondaryWeaponItems _unit, handgunItems _unit];