说我在Arma 3中有一个单位_unit
。如何删除所有装备,以便剩下的只有它的制服?
到目前为止,我一直在使用
removeAllItemsWithMagazines _unit;
{player removeWeaponGlobal _x} forEach weapons _unit;
removeBackpackGlobal _unit;
removeVest _unit;
但我不确定这会删除所有内容。
请注意,此处所有包括地图,指南针,手表和gps。
答案 0 :(得分:2)
这里是Arsenal loadout exports的Remove existing items
部分:
removeAllWeapons this;
removeAllItems this;
removeAllAssignedItems this;
removeUniform this;
removeVest this;
removeBackpack this;
removeHeadgear this;
removeGoggles this;
只需删除removeUniform this;
行。