addMagazine: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (VBS2 scripting category removal)
(mass edit: removing obsolete </dt> and </dd> tags)
Line 36: Line 36:
<!-- Note Section BEGIN -->
<!-- Note Section BEGIN -->


<dd class="notedate">Posted on August 2, 2006 - 06:59</dd>
<dd class="notedate">Posted on August 2, 2006 - 06:59
<dt class="note">'''[[User:Hoz|Hoz]]'''</dt><dd class="note">If the unit has magazines already, you may need to use the commands [[removeMagazine]] or [[removeMagazines]] to make space for the mags you want to add.</dd>
<dt class="note">'''[[User:Hoz|Hoz]]'''<dd class="note">If the unit has magazines already, you may need to use the commands [[removeMagazine]] or [[removeMagazines]] to make space for the mags you want to add.


<dd class="notedate">Posted on September 11, 2007 - 15:39</dd>
<dd class="notedate">Posted on September 11, 2007 - 15:39
<dt class="note">'''[[User:Lester|Lester]]'''</dt><dd class="note">The command doesn't stop adding magazines if the slots are full, it's possible do add much more magazines as slots are defined.</dd>
<dt class="note">'''[[User:Lester|Lester]]'''<dd class="note">The command doesn't stop adding magazines if the slots are full, it's possible do add much more magazines as slots are defined.


<dd class="notedate">Posted on February 21, 2010 - 20:13</dd>
<dd class="notedate">Posted on February 21, 2010 - 20:13
<dt class="note">'''[[User:Vigilante|Vigilante]]'''</dt><dd class="note">In turreted vehicles the magazine is added to the first turret with >> primaryGunner = 1; << set in the Vehicles turret config part (and the magazine is ONLY added to the very first turret if more than one is configged with >> primaryGunner = 1; << ).</dd>
<dt class="note">'''[[User:Vigilante|Vigilante]]'''<dd class="note">In turreted vehicles the magazine is added to the first turret with >> primaryGunner = 1; << set in the Vehicles turret config part (and the magazine is ONLY added to the very first turret if more than one is configged with >> primaryGunner = 1; << ).


<dd class="notedate">Posted on May 12, 2010 - 20:09</dd>
<dd class="notedate">Posted on May 12, 2010 - 20:09
<dt class="note">'''[[User:Inkompetent|Inkompetent]]'''</dt><dd class="note">When wanting to add many magazines to an object's init-line it can be easier to use loops than to just repeat the addMagazine command.
<dt class="note">'''[[User:Inkompetent|Inkompetent]]'''<dd class="note">When wanting to add many magazines to an object's init-line it can be easier to use loops than to just repeat the addMagazine command.


If you want to add N magazines to an object either of the two below ways are handy, the first for fewer magazines, and the latter when you want to add many since it then is the easiest of the two to read.
If you want to add N magazines to an object either of the two below ways are handy, the first for fewer magazines, and the latter when you want to add many since it then is the easiest of the two to read.
Line 52: Line 52:
''{this addMagazine "magazineClassName"} forEach [1,2,3,...,N];''
''{this addMagazine "magazineClassName"} forEach [1,2,3,...,N];''


''for "_i" from 0 to N-1 do {this addMagazine "magazineClassName"};''</dd>
''for "_i" from 0 to N-1 do {this addMagazine "magazineClassName"};''
<!-- Note Section END -->
<!-- Note Section END -->
</dl>
</dl>

Revision as of 17:49, 17 October 2011

Hover & click on the images for description

Description

Description:
Add a magazine to a person . Infantry units can only carry a specific number of magazines, once the magazine slots are filled, any further addMagazine commands are ignored. Note: When you add a new weapon via scripting commands as well as the magazines for it, the addMagazine command has to be given before the addWeapon command, otherwise the weapon won't be loaded.
Groups:
Uncategorised

Syntax

Syntax:
unitName addMagazine magazineName
Parameters:
unitName: Object - person to add the magazines to
magazineName: String - magazine name. See the topic Category:Weapons for reference about possible values.
Return Value:
Nothing

Examples

Example 1:
player addMagazine "M16"

Additional Information

See also:
removeMagazineremoveMagazinesaddWeapon

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 - 06:59
Hoz
If the unit has magazines already, you may need to use the commands removeMagazine or removeMagazines to make space for the mags you want to add.
Posted on September 11, 2007 - 15:39
Lester
The command doesn't stop adding magazines if the slots are full, it's possible do add much more magazines as slots are defined.
Posted on February 21, 2010 - 20:13
Vigilante
In turreted vehicles the magazine is added to the first turret with >> primaryGunner = 1; << set in the Vehicles turret config part (and the magazine is ONLY added to the very first turret if more than one is configged with >> primaryGunner = 1; << ).
Posted on May 12, 2010 - 20:09
Inkompetent
When wanting to add many magazines to an object's init-line it can be easier to use loops than to just repeat the addMagazine command. If you want to add N magazines to an object either of the two below ways are handy, the first for fewer magazines, and the latter when you want to add many since it then is the easiest of the two to read. {this addMagazine "magazineClassName"} forEach [1,2,3,...,N]; for "_i" from 0 to N-1 do {this addMagazine "magazineClassName"};

Bottom Section