addWeapon: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 14: Line 14:
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[Object|Person]] '''addWeapon''' "weaponName" |= Syntax
| unitName '''addWeapon''' weaponName |= Syntax


|p1= [[Object|Person]]: [[Object]] - unit to add the weapon to |= Parameter 1
|p1= unitName: [[Object]] - unit to add the weapon to |= Parameter 1


|p2= weaponName: [[String]] - weapon name. See the topic [[:Category:Weapons]] for reference about possible values. |= Parameter 2
|p2= weaponName: [[String]] - weapon name. See the topic [[:Category:Weapons]] for reference about possible values. |= Parameter 2

Revision as of 23:17, 21 January 2009

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:
unitName addWeapon weaponName
Parameters:
unitName: Object - unit to add the weapon to
weaponName: String - weapon name. See the topic Category:Weapons 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

Posted on August 2, 2006 - 10:19
hardrock
Notes from before the conversion: 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