BIS fnc addWeapon: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<code>([^<]*)<nowiki\/>\[\[([a-zA-Z0-9_]+)\]\](.*)<\/code>" to "<code>$1$2$3</code>")
m (Text replacement - "(\|[pr][0-9]+ *= *[^- ]*) *- *W([a-z ])" to "$1 - w$2")
 
(7 intermediate revisions by the same user not shown)
Line 13: Line 13:
|s1= [unit, weaponClassName, quantity, type] call [[BIS_fnc_addWeapon]]
|s1= [unit, weaponClassName, quantity, type] call [[BIS_fnc_addWeapon]]


|p1= unit: [[Object]] - Unit to add weapon to.
|p1= unit: [[Object]] - unit to add weapon to.


|p2= weaponClassName: [[String]] - Weapon Classname (found in [[:Category:Weapons|CfgWeapons]]).
|p2= weaponClassName: [[String]] - weapon Classname (found in [[:Category:Weapons|CfgWeapons]]).


|p3= quantity: [[Number]] - Amount of magazines.
|p3= quantity: [[Number]] - amount of magazines.


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


|r1= [[String]] - Primary'''(!)''' muzzle name of weapon.
|r1= [[String]] - primary'''(!)''' muzzle name of weapon.


|x1= Add 6 dual-purpose magazines and the underwater gun to the player:
|x1= Add 6 dual-purpose magazines and the underwater gun to the player:
<code>newGun = [player, "arifle_SDAR_F", 6] [[call]] [[BIS_fnc_addWeapon]];</code>
<sqf>[player, "arifle_SDAR_F", 6] call BIS_fnc_addWeapon;</sqf>


|x2= Adds 2 &times; 30 Rnd Stanag Tracer (Red) magazines to bluforUnit, with an Mk20_F:
|x2= Adds 2 &times; 30 Rnd Stanag Tracer (Red) magazines to bluforUnit, with an Mk20_F:
<sqf>newGun = [bluforUnit, "arifle_Mk20_F", 2, 1] call BIS_fnc_addWeapon;</sqf>
<sqf>[bluforUnit, "arifle_Mk20_F", 2, 1] call BIS_fnc_addWeapon;</sqf>


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


|seealso= [[addWeapon]] [[selectWeapon]]
|seealso= [[addWeapon]] [[selectWeapon]]
}}
}}


<dl class="command_description">
{{Note
 
|user= Tryteyker-
<dt></dt>
|timestamp= 20140929181300
<dd class="notedate">Posted on September 29, 2014 - 18:13 (UTC)</dd>
|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]].
<dt class="note">[[User:Tryteyker-|Tryteyker-]]</dt>
}}
<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>

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.