addWeapon: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (moved notes)
Line 34: Line 34:
<!-- Note Section BEGIN -->
<!-- Note Section BEGIN -->


To ensure that the weapon is loaded at the start of the mission, add at least one magazine ([[addMagazine]]) before adding the weapon. To remove weapons use the [[removeAllWeapons]] or the [[removeWeapon]] commands.
<!-- Note Section END -->
<!-- Note Section END -->
</dl>
</dl>


<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
Old Notes (temporary):


To ensure that the weapon is loaded at the start of the mission, add at least one magazine ([[addMagazine]]) before adding the weapon. To remove weapons use the [[removeAllWeapons]] or the [[removeWeapon]] commands.


[[Category:Scripting Commands|ADDWEAPON]]
[[Category:Scripting Commands|ADDWEAPON]]

Revision as of 07:02, 2 August 2006

Hover & click on the images for description

Description

Description:
Add a weapon to a unit. Infantry units can only carry a specific number of weapons, once the weapon slots are filled, any further addWeapon commands are ignored.
Groups:
Uncategorised

Syntax

Syntax:
unit addWeapon weaponName
Parameters:
unit: Object - unit to add the weapon to
weaponName: String - weapon name. See the topic Weapon and Magazine Names for reference about possible values.
Return Value:
Nothing

Examples

Example 1:
player addWeapon "M16"

Additional Information

See also:
removeWeaponremoveAllWeaponsaddMagazine

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

To ensure that the weapon is loaded at the start of the mission, add at least one magazine (addMagazine) before adding the weapon. To remove weapons use the removeAllWeapons or the removeWeapon commands.

Bottom Section