假设我在Arma 3中有一个单位_unit。我如何移除它的所有设备,使唯一剩下的东西是它的制服?
到目前为止,我一直在用
removeAllItemsWithMagazines _unit;
{player removeWeaponGlobal _x} forEach weapons _unit;
removeBackpackGlobal _unit;
removeVest _unit;但我不确定这能消除一切。
注意,这里的一切都包括地图、指南针、手表和gps。
发布于 2017-04-03 16:41:15
这是来自Remove existing items的阿森纳装货出口部分
removeAllWeapons this;
removeAllItems this;
removeAllAssignedItems this;
removeUniform this;
removeVest this;
removeBackpack this;
removeHeadgear this;
removeGoggles this;因此,只需删除removeUniform this;行即可。
https://stackoverflow.com/questions/43186460
复制相似问题