2017-04-03 50 views
2

假設我在阿爾瑪3有一個單位_unit。我如何移除所有設備,以便剩下的唯一東西就是它的制服?如何從SQF中的設備中移除所有設備?

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

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

,但我不知道這一切刪除。

請注意,一切這裏包括地圖,指南針,手錶和gps。

回答

2

這裏的Remove existing items部分從Arsenal loadout exports

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

所以,簡單地刪除removeUniform this;線。