如何从SQF中的单元中移除所有设备?

时间:2017-04-03 13:50:33

标签: sqf

说我在Arma 3中有一个单位_unit。如何删除所有装备,以便剩下的只有它的制服?

到目前为止,我一直在使用

removeAllItemsWithMagazines _unit;
{player removeWeaponGlobal _x} forEach weapons _unit;
removeBackpackGlobal _unit;
removeVest _unit;

但我不确定这会删除所有内容。

请注意,此处所有包括地图,指南针,手表和gps。

1 个答案:

答案 0 :(得分:2)

这里是Arsenal loadout exportsRemove existing items部分:

removeAllWeapons this;
removeAllItems this;
removeAllAssignedItems this;
removeUniform this;
removeVest this;
removeBackpack this;
removeHeadgear this;
removeGoggles this;

只需删除removeUniform this;行。