addMagazine: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<dd class="note">([^}]*)<code>([^<]*)<\/code>" to "<dd class="note">$1<sqf>$2</sqf>")
m (Some wiki formatting)
 
(3 intermediate revisions by the same user not shown)
Line 21: Line 21:
|game7= arma3
|game7= arma3
|version7= 0.50
|version7= 0.50
|arg= local
|eff= global


|gr1= Unit Inventory
|gr1= Unit Inventory


|descr= Adds a magazine to a person. Infantry units can only carry a specific number of magazines, once the magazine slots are filled (or uniform/vest/bagpack are full in {{arma3}}), any further [[addMagazine]] commands are ignored. If class of magazine does not exist, an error message is printed in .rpt:
|descr= Adds a magazine to a person. Infantry units can only carry a specific number of magazines, once the magazine slots are filled (or uniform/vest/bagpack are full in {{arma3}}), any further [[addMagazine]] commands are ignored.
<code>player addMagazine "dasdsa"; // .rpt: Given magazine[dasdsa] not found)</code>
If class of magazine does not exist, an error message is printed in {{Link|Crash Files|.rpt}}:
{{Feature | Informative | Use [[addMagazine]] ''before'' [[addWeapon]] for the weapon to be loaded with magazine automatically.}}
<sqf>player addMagazine "dasdsa"; // .rpt: Given magazine[dasdsa] not found</sqf>
{{Feature|informative|Use [[addMagazine]] ''before'' [[addWeapon]] for the weapon to be loaded with the magazine automatically.}}


|s1= unitName [[addMagazine]] magazineName
|s1= unitName [[addMagazine]] magazineName<br>
{{Icon|localArgument|32}}{{Icon|globalEffect|32}}


|p1= unitName: [[Object]] - person to add the magazines to
|p1= unitName: [[Object]] - person to add the magazines to
Line 43: Line 41:
{{GVI|arma2oa|1.62}} {{Icon|localArgument|32}}{{Icon|globalEffect|32}}<br>
{{GVI|arma2oa|1.62}} {{Icon|localArgument|32}}{{Icon|globalEffect|32}}<br>
{{GVI|arma3|1.00}} {{Icon|globalArgument|32}}{{Icon|globalEffect|32}}
{{GVI|arma3|1.00}} {{Icon|globalArgument|32}}{{Icon|globalEffect|32}}
|s2since= arma2oa 1.62


|p21= unitName: [[Object]] - person to add the magazines to
|p21= unitName: [[Object]] - person to add the magazines to
Line 48: Line 48:
|p22= magazineName: [[String]] - magazine name. See the topic [[:Category:Weapons]] for reference about possible values.
|p22= magazineName: [[String]] - magazine name. See the topic [[:Category:Weapons]] for reference about possible values.


|p23= ammoCount: [[Number]] - Ammo quantity to be added to magazine. If it goes beyond maximum magazine capacity, the magazine will be given full and not overloaded.
|p23= ammoCount: [[Number]] - ammo quantity to be added to magazine. If it goes beyond maximum magazine capacity, the magazine will be given full and not overloaded.


|r2= [[Nothing]]
|r2= [[Nothing]]
Line 54: Line 54:
|x1= <sqf>player addMagazine "30Rnd_556x45_STANAG";</sqf>
|x1= <sqf>player addMagazine "30Rnd_556x45_STANAG";</sqf>


|x2= <sqf>player addMagazine ["30Rnd_556x45_STANAG", 15]; // since Arma 2 OA 1.62</sqf>
|x2= <sqf>player addMagazine ["30Rnd_556x45_STANAG", 15]; // since {{Name|arma2oa|short}} 1.62</sqf>


|x3= <sqf>nonLocalUnit addMagazine ["30Rnd_556x45_STANAG", 15]; // global argument since Arma 3</sqf>
|x3= <sqf>nonLocalUnit addMagazine ["30Rnd_556x45_STANAG", 15]; // global argument since {{arma3}}</sqf>


|x4= <sqf>player addMagazine ["30Rnd_556x45_STANAG", 9999]; // will give a 30 rounds magazine anyway</sqf>
|x4= <sqf>player addMagazine ["30Rnd_556x45_STANAG", 9999]; // will give a 30 rounds magazine anyway</sqf>


|seealso= [[addMagazineGlobal]] [[addMagazines]] [[addMagazineCargo]] [[addMagazineCargoGlobal]] [[addMagazinePool]] [[addMagazineTurret]] [[removeMagazine]] [[removeMagazines]] [[addWeapon]] [[loadMagazine]]
|seealso= [[addMagazineGlobal]] [[addMagazines]] [[addMagazineCargo]] [[addMagazineCargoGlobal]] [[addMagazinePool]] [[addMagazineTurret]] [[removeMagazine]] [[removeMagazines]] [[addWeapon]] [[loadMagazine]]
}}
}}


<dl class="command_description">
{{Note
|user= Hoz
|timestamp= 20060802065900
|text=  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.
}}
 
{{Note
|user= PhilippRauch
|timestamp= 20100221201300
|text= 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; << ).
}}


<dt><dt>
{{Note
<dd class="notedate">Posted on August 2, 2006 - 06:59</dd>
|user= Inkompetent
<dt class="note">[[User:Hoz|Hoz]]</dt>
|timestamp= 20100512200900
<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.
|text= 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><dt>
<dd class="notedate">Posted on February 21, 2010 - 20:13</dd>
<dt class="note">[[User:PhilippRauch|PhilippRauch]]</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; << ).
<dt><dt>
<dd class="notedate">Posted on May 12, 2010 - 20:09</dd>
<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.


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.
<sqf>{this addMagazine "magazineClassName"} forEach [1,2,3,...,N];
<sqf>{ this addMagazine "magazineClassName" } forEach [1,2,3, /*..., */ N];
for "_i" from 0 to (N - 1) do {this addMagazine "magazineClassName"};</sqf>
for "_i" from 1 to N do { this addMagazine "magazineClassName" };</sqf>
<dt><dt>
}}
<dd class="notedate">Posted on November 28, 2017 - 13:10 (UTC)</dd>
<dt class="note">[[User:Pisces_72|Pisces_72]]</dt>
<dd class="note">If adding a magazine to an empty artillery support with this command in Arma 3, use [[reload]]. If you do not reload, Artillery calls will not fire rounds, because the AI won't reload automatically (tested with 82mm mortar)


</dl>
{{Note
|user= Pisces_72
|timestamp= 20171128131000
|text= If adding a magazine to an empty artillery support with this command in Arma 3, use [[reload]]. If you do not reload, Artillery calls will not fire rounds, because the AI won't reload automatically (tested with 82mm mortar)
}}

Latest revision as of 19:16, 18 November 2023

Hover & click on the images for description

Description

Description:
Adds a magazine to a person. Infantry units can only carry a specific number of magazines, once the magazine slots are filled (or uniform/vest/bagpack are full in Arma 3), any further addMagazine commands are ignored. If class of magazine does not exist, an error message is printed in .rpt:
player addMagazine "dasdsa"; // .rpt: Given magazine[dasdsa] not found
Use addMagazine before addWeapon for the weapon to be loaded with the magazine automatically.
Groups:
Unit Inventory

Syntax

Syntax:
unitName addMagazine magazineName
LALocalGEGlobal
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

Alternative Syntax

Syntax:
unitName addMagazine [magazineName, ammoCount]
A2 OA Logo.png1.62 LALocalGEGlobal
Arma 3 logo black.png1.00 GAGlobalGEGlobal
Parameters:
unitName: Object - person to add the magazines to
magazineName: String - magazine name. See the topic Category:Weapons for reference about possible values.
ammoCount: Number - ammo quantity to be added to magazine. If it goes beyond maximum magazine capacity, the magazine will be given full and not overloaded.
Return Value:
Nothing

Examples

Example 1:
player addMagazine "30Rnd_556x45_STANAG";
Example 2:
player addMagazine ["30Rnd_556x45_STANAG", 15]; // since Arma 2:OA 1.62
Example 3:
nonLocalUnit addMagazine ["30Rnd_556x45_STANAG", 15]; // global argument since Arma 3
Example 4:
player addMagazine ["30Rnd_556x45_STANAG", 9999]; // will give a 30 rounds magazine anyway

Additional Information

See also:
addMagazineGlobal addMagazines addMagazineCargo addMagazineCargoGlobal addMagazinePool addMagazineTurret removeMagazine removeMagazines addWeapon loadMagazine

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
Hoz - c
Posted on Aug 02, 2006 - 06:59 (UTC)
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.
PhilippRauch - c
Posted on Feb 21, 2010 - 20:13 (UTC)
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; << ).
Inkompetent - c
Posted on May 12, 2010 - 20:09 (UTC)
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 1 to N do { this addMagazine "magazineClassName" };
Pisces_72 - c
Posted on Nov 28, 2017 - 13:10 (UTC)
If adding a magazine to an empty artillery support with this command in Arma 3, use reload. If you do not reload, Artillery calls will not fire rounds, because the AI won't reload automatically (tested with 82mm mortar)