removeAllWeapons: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]Take[ _]On[ _]Helicopters(\|.*)?\]\]" to "{{GameCategory|tkoh|Scripting Commands}}")
m (Text replacement - "_{10,} " to "")
Line 1: Line 1:
{{Command|Comments=
{{Command|Comments=
____________________________________________________________________________________________


| ofp |Game name=
| ofp |Game name=
Line 11: Line 10:


|gr1= Unit Inventory |GROUP1=
|gr1= Unit Inventory |GROUP1=
____________________________________________________________________________________________


| Removes all weapons and magazines from the given unit. Does not remove map, compass, radio. You can use <tt>unitname [[removeWeapon]] "itemMap";</tt>
| Removes all weapons and magazines from the given unit. Does not remove map, compass, radio. You can use <tt>unitname [[removeWeapon]] "itemMap";</tt>
Line 17: Line 15:
<tt>{tank [[removeWeapon]] _x} [[forEach]] [[weapons]] tank;</tt>
<tt>{tank [[removeWeapon]] _x} [[forEach]] [[weapons]] tank;</tt>
|DESCRIPTION=
|DESCRIPTION=
____________________________________________________________________________________________


| '''removeAllWeapons''' unitName|SYNTAX=
| '''removeAllWeapons''' unitName|SYNTAX=
Line 24: Line 21:


| [[Nothing]] |RETURNVALUE=
| [[Nothing]] |RETURNVALUE=
____________________________________________________________________________________________
   
   
|x1= <code>[[removeAllWeapons]] [[player]];</code> |EXAMPLE1=
|x1= <code>[[removeAllWeapons]] [[player]];</code> |EXAMPLE1=
____________________________________________________________________________________________


| [[removeWeapon]], [[setVehicleAmmo]], [[clearWeaponCargo]], [[clearMagazineCargo]], [[removeAllItems]], [[removeBackpack]] |SEEALSO=
| [[removeWeapon]], [[setVehicleAmmo]], [[clearWeaponCargo]], [[clearMagazineCargo]], [[removeAllItems]], [[removeBackpack]] |SEEALSO=

Revision as of 03:22, 17 January 2021

Hover & click on the images for description

Description

Description:
Removes all weapons and magazines from the given unit. Does not remove map, compass, radio. You can use unitname removeWeapon "itemMap"; for example. Doesn't quite work with vehicles. If you need to remove all weapons from a vehicle, remove each weapon individually: {tank removeWeapon _x} forEach weapons tank;
Groups:
Unit Inventory

Syntax

Syntax:
removeAllWeapons unitName
Parameters:
unitName: Object
Return Value:
Nothing

Examples

Example 1:
removeAllWeapons player;

Additional Information

See also:
removeWeaponsetVehicleAmmoclearWeaponCargoclearMagazineCargoremoveAllItemsremoveBackpack

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section