top of page

REMOVE WEAPONS/OBJECTS ON UNIT

On unit

 

To begin without weapon or somes weapons, objects, etc... on unit, you must place theses following commands in INIT of your unit
 

​

This exemple is done with Arma 2 but work with Arma 3, you just need the ID of your weapon/object that you can find inside editor in placing your mouse on your object, in object list

​

​

Remove M4 on unit :


this removeWeapon "M4"


Remove M4 Magazine on unit :


this removeMagazine "30Rnd_556x45_Stanag"


Remove all weapons on unit :


RemoveAllWeapons this


Inside ammo box


Place following commands inside INIT box of your object


Remove all weapons inside the box :


ClearWeaponCargo this


Remove all magazine :


ClearMagazineCargo this


Remove inside backpack


To remove weapons inside backback, place theses commands in your INIT box of your unit

 


Remove weapon from backpack :


ClearWeaponCargo (unitBackpack this)


Remove magazines form backpack :


ClearMagazineCargo (unitBackpack this)
 

bottom of page