BIS fnc addWeapon: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "|= Comments" to "|Comments=")
m (Text replacement - "(\|[pr][0-9]+ *= *[^- ]*) *- *W([a-z ])" to "$1 - w$2")
 
(45 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{RV|type=function


{{Function|Comments=
|game1= arma3
____________________________________________________________________________________________
|version1= 1.00


| arma3 |Game name=
|gr1= Inventory


|1.00|Game version=
|gr2= Weapons
____________________________________________________________________________________________


| Adds a weapon to the specified unit, with magazine classnames taken from the weapon's config (in CfgWeapons).
|descr= Adds a weapon to the specified unit, with magazine classnames taken from the weapon's config (in [[:Category:Weapons|CfgWeapons]]).
This function does not remove magazines nor weapons prior to adding the new weapon, so that still has to be done manually. |DESCRIPTION=
This function does not remove magazines nor weapons prior to adding the new weapon, so that still has to be done manually.
____________________________________________________________________________________________


| [unit, "weaponClassName", 1, ''0''] call '''BIS_fnc_addWeapon''';|SYNTAX=
|s1= [unit, weaponClassName, quantity, type] call [[BIS_fnc_addWeapon]]


|p1= [[Object]] - Unit to add weapon to. |=
|p1= unit: [[Object]] - unit to add weapon to.
|p2= [[String]] - Weapon Classname (found in CfgWeapons). |=
|p3= [[Number]] - Amount of magazines. |=
|p4= ''[[Number]] - Index of magazine name that should be used, OR:''<br>
''[[String]] - Magazine name to be used.''<br>
''Optional parameter, default 0. Found in magazines={} array.'' |=


| [[String]] - Primary'''(!)''' muzzle name of weapon. |RETURNVALUE=
|p2= weaponClassName: [[String]] - weapon Classname (found in [[:Category:Weapons|CfgWeapons]]).
____________________________________________________________________________________________


|x1= <code>newGun = [player, "arifle_SDAR_F", 6] call BIS_fnc_addWeapon; // Adds 6 dual-purpose magazines and the underwater gun to the player.</code> |=
|p3= quantity: [[Number]] - amount of magazines.
|x2= <code>newGun = [bluforUnit, "arifle_Mk20_F", 2, 1] call BIS_fnc_addWeapon; // Adds 2 30 Rnd Stanag Tracer (Red) magazines to bluforUnit, with an Mk20_F.</code> |=
|x3= <code>newGun = [player, "arifle_Mk20_F", 2, "30Rnd_556x45_Stanag_Tracer_red"] call BIS_fnc_addWeapon; // Alternative syntax of second example, with magazine name written out.</code> |=
____________________________________________________________________________________________


| [[addWeapon]], [[selectWeapon]] |SEEALSO=
|p4= type: [[Number]] or [[String]] - (Optional, default 0)
* [[Number]] - Index of magazine name that should be used - found in <syntaxhighlight lang="cpp" inline>magazines = {}</syntaxhighlight> array.
* [[String]] - Magazine name to be used.


}}
|r1= [[String]] - primary'''(!)''' muzzle name of weapon.
 
|x1= Add 6 dual-purpose magazines and the underwater gun to the player:
<sqf>[player, "arifle_SDAR_F", 6] call BIS_fnc_addWeapon;</sqf>


<h3 style="display:none">Notes</h3>
|x2= Adds 2 &times; 30 Rnd Stanag Tracer (Red) magazines to bluforUnit, with an Mk20_F:
<dl class="command_description">
<sqf>[bluforUnit, "arifle_Mk20_F", 2, 1] call BIS_fnc_addWeapon;</sqf>
<!-- Note Section BEGIN -->


<!-- Note Section END -->
|x3= Alternative syntax of second example, with magazine name written out:
</dl>
<sqf>[bluforUnit, "arifle_Mk20_F", 2, "30Rnd_556x45_Stanag_Tracer_red"] call BIS_fnc_addWeapon;</sqf>


<h3 style="display:none">Bottom Section</h3>
|seealso= [[addWeapon]] [[selectWeapon]]
[[Category:Function Group: Inventory|{{uc:addWeapon}}]]
}}
[[Category:Functions|{{uc:addWeapon}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:addWeapon}}]]


<!-- CONTINUE Notes -->
{{Note
<dl class="command_description">
|user= Tryteyker-
<dd class="notedate">Posted on September 29, 2014 - 18:13 (UTC)</dd>
|timestamp= 20140929181300
<dt class="note">[[User:Tryteyker-|Tryteyker-]]</dt>
|text= This function only returns the primary muzzle name of a gun. For more info on how to select guns' secondary muzzle names (like an underhand grenade launcher), view the notes on [[selectWeapon]].
<dd class="note">
}}
This function only returns the primary muzzle name of a gun. For more info on how to select guns' secondary muzzle names (like an underhand grenade launcher), view the notes on [[selectWeapon]].
</dd>
</dl>
<!-- DISCONTINUE Notes -->

Latest revision as of 17:35, 8 November 2023

Hover & click on the images for description

Description

Description:
Adds a weapon to the specified unit, with magazine classnames taken from the weapon's config (in CfgWeapons). This function does not remove magazines nor weapons prior to adding the new weapon, so that still has to be done manually.
Execution:
call
Groups:
InventoryWeapons

Syntax

Syntax:
[unit, weaponClassName, quantity, type] call BIS_fnc_addWeapon
Parameters:
unit: Object - unit to add weapon to.
weaponClassName: String - weapon Classname (found in CfgWeapons).
quantity: Number - amount of magazines.
type: Number or String - (Optional, default 0)
  • Number - Index of magazine name that should be used - found in magazines = {} array.
  • String - Magazine name to be used.
Return Value:
String - primary(!) muzzle name of weapon.

Examples

Example 1:
Add 6 dual-purpose magazines and the underwater gun to the player:
[player, "arifle_SDAR_F", 6] call BIS_fnc_addWeapon;
Example 2:
Adds 2 × 30 Rnd Stanag Tracer (Red) magazines to bluforUnit, with an Mk20_F:
[bluforUnit, "arifle_Mk20_F", 2, 1] call BIS_fnc_addWeapon;
Example 3:
Alternative syntax of second example, with magazine name written out:
[bluforUnit, "arifle_Mk20_F", 2, "30Rnd_556x45_Stanag_Tracer_red"] call BIS_fnc_addWeapon;

Additional Information

See also:
addWeapon selectWeapon

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
Tryteyker- - c
Posted on Sep 29, 2014 - 18:13 (UTC)
This function only returns the primary muzzle name of a gun. For more info on how to select guns' secondary muzzle names (like an underhand grenade launcher), view the notes on selectWeapon.