18 lines
294 B
Plaintext
18 lines
294 B
Plaintext
/*
|
|
Author: Djeeberjr
|
|
|
|
Description:
|
|
Holsters the weapons for a unit.
|
|
|
|
Parameter(s):
|
|
0: OBJECT - the unit
|
|
|
|
*/
|
|
params ["_unit"];
|
|
|
|
if(DLib_isInit) then{
|
|
[_unit,{_this action ["SwitchWeapon", _this,_this,-1];}] call DLib_fnc_runPost;
|
|
}else{
|
|
_unit action ["SwitchWeapon", _unit,_unit,-1];
|
|
}
|