Arsenal – Arma 3

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Page update with command links)
Line 1: Line 1:
{{SideTOC}}
[[File:a3 arsenal.png|center|400px]]
[[File:a3 arsenal.png|center|400px]]




Arsenal is, essentially, a character, equipment and weapon viewer which has been added to [[Arma 3]] in the Bootcamp update. This tool offers an overview of the available content, and enables customized loadouts to be exported to script, which can be used in the editor, other game modes, such as [[Zeus]], and by community scenarios/mods.
Arsenal is, essentially, a character, equipment and weapon viewer which has been added to [[Arma 3]] in the Bootcamp update.
This tool offers an overview of the available content, and enables customized loadouts to be exported to script, which can be used in the editor, other game modes, such as [[Zeus]], and by community scenarios/mods.


You can access it from the main menu by locking on '''LEARN > VIRTUAL ARSENAL'''
You can access it from the main menu by locking on '''LEARN > VIRTUAL ARSENAL'''


== Using ==
== Using ==
===Export ===
===Export ===


====Export to SQF====
==== Export to SQF ====
Clicking on EXPORT button or pressing Ctrl + C will copy the current loadout to clipboard in [[SQF]] format. You can paste it to soldier's init field or use it in a script.
Clicking on EXPORT button or pressing Ctrl + C will copy the current loadout to clipboard in [[SQF]] format. You can paste it to soldier's init field or use it in a script.


Line 15: Line 19:


'''Example:'''
'''Example:'''
<spoiler>
  [[comment]] "Exported from Arsenal by DavidArmstrong85";
  [[comment]] "Exported from Arsenal by DavidArmstrong85";
   
   
  comment "Remove existing items";
  [[comment]] "Remove existing items";
  [[removeAllWeapons]] [[this]];
  [[removeAllWeapons]] [[this]];
  [[removeAllItems]] this;
  [[removeAllItems]] [[this]];
  [[removeAllAssignedItems]] this;
  [[removeAllAssignedItems]] [[this]];
  [[removeUniform]] this;
  [[removeUniform]] [[this]];
  [[removeVest]] this;
  [[removeVest]] [[this]];
  [[removeBackpack]] this;
  [[removeBackpack]] [[this]];
  [[removeHeadgear]] this;
  [[removeHeadgear]] [[this]];
  [[removeGoggles]] this;
  [[removeGoggles]] [[this]];
   
   
  comment "Add containers";
  [[comment]] "Add containers";
  this [[forceAddUniform]] "U_I_CombatUniform";
  [[this]] [[forceAddUniform]] "U_I_CombatUniform";
  [[for]] "_i" [[from]] 1 to 4 do {this [[addItemToUniform]] "30Rnd_556x45_Stanag";};
  [[for]] "_i" [[from]] 1 [[to]] 4 [[do]] {[[this]] [[addItemToUniform]] "30Rnd_556x45_Stanag";};
  this [[addItemToUniform]] "16Rnd_9x21_Mag";
  [[this]] [[addItemToUniform]] "16Rnd_9x21_Mag";
  this [[addVest]] "V_PlateCarrierIA2_dgtl";
  [[this]] [[addVest]] "V_PlateCarrierIA2_dgtl";
  for "_i" from 1 to 4 do {this [[addItemToVest]] "FirstAidKit";};
  [[for]] "_i" [[from]] 1 [[to]] 4 [[do]] {[[this]] [[addItemToVest]] "FirstAidKit";};
  for "_i" from 1 to 6 do {this addItemToVest "HandGrenade";};
  [[for]] "_i" [[from]] 1 [[to]] 6 [[do]] {[[this]] [[addItemToVest]] "HandGrenade";};
  for "_i" from 1 to 3 do {this addItemToVest "16Rnd_9x21_Mag";};
  [[for]] "_i" [[from]] 1 [[to]] 3 [[do]] {[[this]] [[addItemToVest]] "16Rnd_9x21_Mag";};
  this [[addBackpack]] "B_TacticalPack_oli";
  [[this]] [[addBackpack]] "B_TacticalPack_oli";
  for "_i" from 1 to 2 do {this [[addItemToBackpack]] "SatchelCharge_Remote_Mag";};
  [[for]] "_i" [[from]] 1 [[to]] 2 [[do]] {[[this]] [[addItemToBackpack]] "SatchelCharge_Remote_Mag";};
  for "_i" from 1 to 4 do {this addItemToBackpack "DemoCharge_Remote_Mag";};
  [[for]] "_i" [[from]] 1 [[to]] 4 [[do]] {[[this]] [[addItemToBackpack]] "DemoCharge_Remote_Mag";};
  this [[addHeadgear]] "H_Cap_headphones";
  [[this]] [[addHeadgear]] "H_Cap_headphones";
  this [[addGoggles]] "G_Bandanna_oli";
  [[this]] [[addGoggles]] "G_Bandanna_oli";
   
   
  comment "Add weapons";
  [[comment]] "Add weapons";
  this [[addWeapon]] "arifle_Mk20C_F";
  [[this]] [[addWeapon]] "arifle_Mk20C_F";
  this [[addPrimaryWeaponItem]] "muzzle_snds_M";
  [[this]] [[addPrimaryWeaponItem]] "muzzle_snds_M";
  this addPrimaryWeaponItem "acc_flashlight";
  [[this]] [[addPrimaryWeaponItem]] "acc_flashlight";
  this addPrimaryWeaponItem "optic_MRCO";
  [[this]] [[addPrimaryWeaponItem]] "optic_MRCO";
  this addWeapon "hgun_P07_F";
  [[this]] [[addWeapon]] "hgun_P07_F";
   
   
  comment "Add items";
  [[comment]] "Add items";
  this [[linkItem]] "ItemMap";
  [[this]] [[linkItem]] "ItemMap";
  this linkItem "ItemCompass";
  [[this]] [[linkItem]] "ItemCompass";
  this linkItem "ItemWatch";
  [[this]] [[linkItem]] "ItemWatch";
  this linkItem "ItemRadio";
  [[this]] [[linkItem]] "ItemRadio";
  this linkItem "ItemGPS";
  [[this]] [[linkItem]] "ItemGPS";
   
   
  comment "Set identity";
  [[comment]] "Set identity";
  this [[setFace]] "GreekHead_A3_03";
  [[this]] [[setFace]] "GreekHead_A3_03";
  this [[setSpeaker]] "Male03GRE";
  [[this]] [[setSpeaker]] "Male03GRE";
  [this,"TFAegis"] [[call]] bis_fnc_setUnitInsignia;
  <nowiki>[</nowiki>[[this]],"TFAegis"] [[call]] [[BIS_fnc_setUnitInsignia]];
</spoiler>


====Export to CPP====
==== Export to CPP ====
Pressing '''CTRL + SHIFT + C''' will export the loadout in '''config format''', which can then be used in [https://community.bistudio.com/wiki/Arma_3_Respawn CfgRespawnInventory].
Pressing '''CTRL + SHIFT + C''' will export the loadout in '''config format''', which can then be used in [Arma 3 Respawn|CfgRespawnInventory].


'''Example:'''
'''Example:'''
Line 75: Line 81:
linkedItems[] = {"V_PlateCarrierSpec_rgr","H_HelmetB_light_desert","G_Combat","ItemMap","ItemCompass","ItemWatch","ItemRadio","NVGoggles"};
linkedItems[] = {"V_PlateCarrierSpec_rgr","H_HelmetB_light_desert","G_Combat","ItemMap","ItemCompass","ItemWatch","ItemRadio","NVGoggles"};
</syntaxhighlight>
</syntaxhighlight>
=== Zeus Ammo Box ===
=== Zeus Ammo Box ===
As Zeus, you can create virtual ammo box where players can endlessly resupply. Instead going through the classic inventory screen, they'll be able to access Arsenal and select any item you'll give them.
As Zeus, you can create virtual ammo box where players can endlessly resupply. Instead going through the classic inventory screen, they'll be able to access Arsenal and select any item you'll give them.
# Play a scenario as Zeus
# Play a scenario as Zeus
Line 87: Line 95:


=== Zeus Unit Arsenal ===
=== Zeus Unit Arsenal ===
Zeus can use '''Arsenal''' module to quickly customize gear of any AI soldier. It doesn't work on players, dead units or vehicles.
Zeus can use '''Arsenal''' module to quickly customize gear of any AI soldier. It doesn't work on players, dead units or vehicles.
# Play a scenario as Zeus
# Play a scenario as Zeus
Line 97: Line 106:


=== Zeus Respawn Loadouts ===
=== Zeus Respawn Loadouts ===
Saved loadout can be given to players as respawn loadouts by Zeus. Works only in scenarios with [[Arma_3_Respawn#Respawn_Templates|MenuInventory]] respawn template enabled.
Saved loadout can be given to players as respawn loadouts by Zeus. Works only in scenarios with [[Arma_3_Respawn#Respawn_Templates|MenuInventory]] respawn template enabled.
# Save your loadout
# Save your loadout
Line 105: Line 115:
# Select the saved loadout.
# Select the saved loadout.
# After confirming, players of the given side will be able to respawn with your loadout.
# After confirming, players of the given side will be able to respawn with your loadout.
[[File:a3 arsenal loadout save.png|200px]]
[[File:a3 arsenal loadout save.png|200px]]
[[File:a3 arsenal loadout load.png|200px]]
[[File:a3 arsenal loadout load.png|200px]]


===Shortcuts===
 
=== Shortcuts ===
 
{| class="wikitable"
{| class="wikitable"
! Shortcut !! Description                   
|-
|-
! Shortcut                                      !! Description                   
| Ctrl + Shift + C || Copies current loadout in config format to the clipboard, can be used for CfgRespawnInventory
|-
| Ctrl + Shift + C                       || Copies current loadout in config format to the clipboard, can be used for CfgRespawnInventory
|-
| Ctrl + C                    || Exports current loadout in script format
|-
|-
| Ctrl + V          || Applies loadout from clipboard to currently viewed unit
| Ctrl + C || Exports current loadout in script format
|-
|-
| ESC                    || Leave Arsenal
| Ctrl + V || Applies loadout from clipboard to currently viewed unit
|-
|-
| Backspace          || Test current loadout
| ESC || Leave Arsenal
|-
|-
| Enter          || Start preview
| Backspace || Test current loadout
|-
|-
| Ctrl + R                    || Randomise loadout
| Enter || Start preview
|-
|-
| N        || Toggle view mode
| Ctrl + R || Randomise loadout
|-
|-
| N || Toggle view mode
|}
|}


== Modding ==
== Modding ==
=== Access ===
=== Access ===
You can use Arsenal in a scenario you're designing simply by calling the following [[Functions|function]]:
You can use Arsenal in a scenario you're designing simply by calling the following [[Functions|function]]:
  [] [[spawn]] [[BIS_fnc_arsenal]];
  [] [[spawn]] [[BIS_fnc_arsenal]];
This version has several limitations as opposed to the Virtual one:
This version has several limitations as opposed to the Virtual one:
* Voice, Face and Insignia are not available (to avoid clashing with profile)
* Voice, Face and Insignia are not available (to avoid clashing with profile)
Line 140: Line 155:


To open Arsenal with full options, execute:
To open Arsenal with full options, execute:
  ["Open",true] spawn BIS_fnc_arsenal;
  ["Open", [[true]]] [[spawn]] [[BIS_fnc_arsenal]];


=== Virtual Ammo Box ===
=== Virtual Ammo Box ===
You can also use Arsenal as virtual inventory, allowing players to get unlimited number of items of given types from an ammo box. Action to access the Arsenal will be added automatically on all clients, you don't need to use [[addAction]] to enable it.
You can also use Arsenal as virtual inventory, allowing players to get unlimited number of items of given types from an ammo box. Action to access the Arsenal will be added automatically on all clients, you don't need to use [[addAction]] to enable it.


'''Syntax''' (shared by all mentioned functions):
'''Syntax''' (shared by all mentioned functions):
  ["AmmoboxInit",<box>] spawn BIS_fnc_arsenal;
  ["AmmoboxInit", <box>] [[spawn]] [[BIS_fnc_arsenal]];
or
or
  ["AmmoboxInit",[<box>,(<allowAll>,<condition>)]] spawn BIS_fnc_arsenal;
  ["AmmoboxInit", [<box>, (<allowAll>, <condition>)]] [[spawn]] [[BIS_fnc_arsenal]];
*box: [[Object]] - ammo box on which the action will be added
 
*allowAll (Optional): [[Boolean]] - true to add all available weapons, magazines, items and backpacks in the box
* box: [[Object]] - ammo box on which the action will be added
* condition (Optional): Condition for showing the Arsenal action (default: {true})
* allowAll: [[Boolean]] - (Optional) true to add all available weapons, magazines, items and backpacks in the box
* condition: [[Boolean]] - (Optional, default { [[true]]} ) condition for showing the Arsenal action
** Passed arguments are the same as in [[addAction]] condition, i.e., ''_target'' - the box, ''_this'' - caller
** Passed arguments are the same as in [[addAction]] condition, i.e., ''_target'' - the box, ''_this'' - caller
'''Returned value:'''
'''Returned value:'''
Line 157: Line 174:


'''Example''' (paste it into init field of a box)
'''Example''' (paste it into init field of a box)
  0 = ["AmmoboxInit",[this,true]] spawn BIS_fnc_arsenal;
  0 = ["AmmoboxInit", <nowiki>[</nowiki>[[this]], [[true]]]] [[spawn]] [[BIS_fnc_arsenal]];
 


To set which specific items should be available, use functions mentioned below.
To set which specific items should be available, use functions mentioned below.
{{note|You can preview all functions in in-game Functions viewer (while in editor, press Functions button or Ctrl + F)}}
{{Informative | You can preview all functions in in-game Functions viewer (while in editor, press Functions button or Ctrl + F)}}


==== Add ====
==== Add ====
Line 171: Line 187:


'''Syntax''' (shared by all mentioned functions):
'''Syntax''' (shared by all mentioned functions):
  [<target>,<classes>,(<isGlobal>,<addAction>)] call BIS_fnc_addVirtualWeaponCargo;
  [<target>, <classes>, (<isGlobal>, <addAction>)] [[call]] [[BIS_fnc_addVirtualWeaponCargo]];
*target: [[Object]] or [[Namespace]] - ammo box to which classes will be added. When [[missionNamespace]] is used, they will be available across all boxes.
*target: [[Object]] or [[Namespace]] - ammo box to which classes will be added. When [[missionNamespace]] is used, they will be available across all boxes.
*classes: [[Boolean]] or [[Array]] of [[String]]s  - whitelisted classes. Alternatiovely, use [[true]] to whitelist everything of the given type
*classes: [[Boolean]] or [[Array]] of [[String]]s  - whitelisted classes. Alternatiovely, use [[true]] to whitelist everything of the given type
Line 178: Line 194:


'''Returned value:'''
'''Returned value:'''
[[Array]] of Arrays: All virtual items within the target's space in format [<items>,<weapons>,<magazines>,<backpacks>]
[[Array]] of Arrays: All virtual items within the target's space in format [<items>, <weapons>, <magazines>, <backpacks>]


'''Example:'''
'''Example:'''
  [myBox,["arifle_MX_F","arifle_MX_SW_F","arifle_MXC_F"],true] call BIS_fnc_addVirtualWeaponCargo;
  [myBox, ["arifle_MX_F", "arifle_MX_SW_F", "arifle_MXC_F"], [[true]]] [[call]] [[BIS_fnc_addVirtualWeaponCargo]];
 
To add everything, use:
To add everything, use:
  [myBox,true,true] call BIS_fnc_addVirtualWeaponCargo;
  [myBox, [[true]], [[true]]] [[call]] [[BIS_fnc_addVirtualWeaponCargo]];
  //or the equivalent:
  {{cc|or the equivalent:}}
  [myBox,["%ALL"],true] call BIS_fnc_addVirtualWeaponCargo; //Note that %ALL is ALL CAPITAL LETTERS
  [myBox, ["%ALL"], [[true]]] [[call]] [[BIS_fnc_addVirtualWeaponCargo]]; {{cc|note that <tt>%ALL</tt> is ALL CAPITAL LETTERS}}


==== Remove ====
==== Remove ====
Line 196: Line 213:


'''Syntax''' (shared by all mentioned functions):
'''Syntax''' (shared by all mentioned functions):
  [<target>,<classes>,(<isGlobal>)] call BIS_fnc_addVirtualWeaponCargo;
  [<target>, <classes>, (<isGlobal>)] [[call]] [[BIS_fnc_addVirtualWeaponCargo]];
*target: [[Object]] or [[Namespace]] - ammo box from which classes will be removed.
 
*classes: [[Array]] of [[Strings]]s - removed classes
* target: [[Object]] or [[Namespace]] - ammo box from which classes will be removed.
*isGlobal (Optional): [[Boolean]] - [[true]] to remove classes globally (default: [[false]])
* classes: [[Array]] of [[Strings]]s - removed classes
* isGlobal: [[Boolean]] - (Optional, default [[false]]) [[true]] to remove classes globally


'''Returned value:'''
'''Returned value:'''
[[Array]] of Arrays: All virtual items within the target's space in format [<items>,<weapons>,<magazines>,<backpacks>]
[[Array]] of Arrays: All virtual items within the target's space in format [<items>, <weapons>, <magazines>, <backpacks>]


'''Example:'''
'''Example:'''
  [myBox,["arifle_MXC_F"],true] call BIS_fnc_removeVirtualWeaponCargo;
  [myBox, ["arifle_MXC_F"], [[true]]] [[call]] [[BIS_fnc_removeVirtualWeaponCargo]];
 
If an arsenal container has been created by using true as the whitelist (<allowAll>) then a string of "%ALL" (ALL CAPITAL LETTERS)  will be inserted into the category array. To remove this kind of whitelist instead use..
If an arsenal container has been created by using true as the whitelist (<allowAll>) then a string of "%ALL" (ALL CAPITAL LETTERS)  will be inserted into the category array. To remove this kind of whitelist instead use..
  [myBox,true,true] call BIS_fnc_removeVirtualWeaponCargo;
  [myBox, [[true]], [[true]]] [[call]] [[BIS_fnc_removeVirtualWeaponCargo]];
  // or the equivalent:
  {{cc|or the equivalent:}}
  [myBox,["%ALL"],true] call BIS_fnc_removeVirtualWeaponCargo; //Note that <tt>%ALL</tt> is ALL CAPITAL LETTERS
  [myBox, ["%ALL"], [[true]]] [[call]] [[BIS_fnc_removeVirtualWeaponCargo]]; {{cc|note that <tt>%ALL</tt> is ALL CAPITAL LETTERS}}


==== Get ====
==== Get ====
Line 219: Line 238:


'''Syntax''' (shared by all mentioned functions):
'''Syntax''' (shared by all mentioned functions):
  [<target>] call BIS_fnc_addVirtualWeaponCargo;
  [<target>] [[call]] [[BIS_fnc_addVirtualWeaponCargo]];
*target: [[Object]] or [[Namespace]]
*target: [[Object]] or [[Namespace]]


'''Returned value:'''
'''Returned value:'''
[[Array]] of Arrays: All virtual items within the target's space in format [<items>,<weapons>,<magazines>,<backpacks>]
[[Array]] of Arrays: All virtual items within the target's space in format [<items>, <weapons>, <magazines>, <backpacks>]


'''Example:'''
'''Example:'''
  myBox call BIS_fnc_getVirtualWeaponCargo;
  myBox [[call]] [[BIS_fnc_getVirtualWeaponCargo]];
 


[[Category:Arma 3: Editing]]
[[Category:Arma 3: Editing]]

Revision as of 17:02, 8 September 2019

Template:SideTOC

a3 arsenal.png


Arsenal is, essentially, a character, equipment and weapon viewer which has been added to Arma 3 in the Bootcamp update. This tool offers an overview of the available content, and enables customized loadouts to be exported to script, which can be used in the editor, other game modes, such as Zeus, and by community scenarios/mods.

You can access it from the main menu by locking on LEARN > VIRTUAL ARSENAL


Using

Export

Export to SQF

Clicking on EXPORT button or pressing Ctrl + C will copy the current loadout to clipboard in SQF format. You can paste it to soldier's init field or use it in a script.

You can take the same code and import it (Ctrl + V) back to Arsenal. Use this to share loadouts with other players.

Example:

comment "Exported from Arsenal by DavidArmstrong85";

comment "Remove existing items";
removeAllWeapons this;
removeAllItems this;
removeAllAssignedItems this;
removeUniform this;
removeVest this;
removeBackpack this;
removeHeadgear this;
removeGoggles this;

comment "Add containers";
this forceAddUniform "U_I_CombatUniform";
for "_i" from 1 to 4 do {this addItemToUniform "30Rnd_556x45_Stanag";};
this addItemToUniform "16Rnd_9x21_Mag";
this addVest "V_PlateCarrierIA2_dgtl";
for "_i" from 1 to 4 do {this addItemToVest "FirstAidKit";};
for "_i" from 1 to 6 do {this addItemToVest "HandGrenade";};
for "_i" from 1 to 3 do {this addItemToVest "16Rnd_9x21_Mag";};
this addBackpack "B_TacticalPack_oli";
for "_i" from 1 to 2 do {this addItemToBackpack "SatchelCharge_Remote_Mag";};
for "_i" from 1 to 4 do {this addItemToBackpack "DemoCharge_Remote_Mag";};
this addHeadgear "H_Cap_headphones";
this addGoggles "G_Bandanna_oli";

comment "Add weapons";
this addWeapon "arifle_Mk20C_F";
this addPrimaryWeaponItem "muzzle_snds_M";
this addPrimaryWeaponItem "acc_flashlight";
this addPrimaryWeaponItem "optic_MRCO";
this addWeapon "hgun_P07_F";

comment "Add items";
this linkItem "ItemMap";
this linkItem "ItemCompass";
this linkItem "ItemWatch";
this linkItem "ItemRadio";
this linkItem "ItemGPS";

comment "Set identity";
this setFace "GreekHead_A3_03";
this setSpeaker "Male03GRE";
[this,"TFAegis"] call BIS_fnc_setUnitInsignia;
↑ Back to spoiler's top

Export to CPP

Pressing CTRL + SHIFT + C will export the loadout in config format, which can then be used in [Arma 3 Respawn|CfgRespawnInventory].

Example:

// Exported from Arsenal by Revo
uniform = "U_B_CombatUniform_mcam_tshirt";
backpack = "B_AssaultPack_rgr_Medic";
weapons[] = {"arifle_MX_F","hgun_P07_F","Throw","Put"};
magazines[] = {"30Rnd_65x39_caseless_mag","30Rnd_65x39_caseless_mag","Chemlight_green","30Rnd_65x39_caseless_mag",
"30Rnd_65x39_caseless_mag","30Rnd_65x39_caseless_mag","16Rnd_9x21_Mag","16Rnd_9x21_Mag","SmokeShell",
"SmokeShellGreen","SmokeShellBlue","SmokeShellOrange","Chemlight_green"};
items[] = {"FirstAidKit","Medikit","FirstAidKit","FirstAidKit","FirstAidKit","FirstAidKit","FirstAidKit","FirstAidKit","FirstAidKit","FirstAidKit","FirstAidKit","FirstAidKit"};
linkedItems[] = {"V_PlateCarrierSpec_rgr","H_HelmetB_light_desert","G_Combat","ItemMap","ItemCompass","ItemWatch","ItemRadio","NVGoggles"};

Zeus Ammo Box

As Zeus, you can create virtual ammo box where players can endlessly resupply. Instead going through the classic inventory screen, they'll be able to access Arsenal and select any item you'll give them.

  1. Play a scenario as Zeus
  2. Place an ammo box (Units > Empty > Other > Ammo > [anything from the list])
  3. Select an item you want to make available in the Arsenal
  4. Decrease number of items to 0. Button on the left should change from '-' to '∞'
  5. Click on the button once more. Number of items should now be infinite
  6. After confirming, players will be able to access Arsenal through a new action attached to the box.

a3 ammobox infinite.jpg


Zeus Unit Arsenal

Zeus can use Arsenal module to quickly customize gear of any AI soldier. It doesn't work on players, dead units or vehicles.

  1. Play a scenario as Zeus
  2. Find a unit you want to customize
  3. Select Modules > Zeus > Arsenal
  4. Place the module on top of the unit
  5. Arsenal interface will be opened. You can either set specific items, or you can load previously saved loadout.

a3 arsenal module.png


Zeus Respawn Loadouts

Saved loadout can be given to players as respawn loadouts by Zeus. Works only in scenarios with MenuInventory respawn template enabled.

  1. Save your loadout
  2. Play a scenario as Zeus
  3. Place Modules > Respawn > Loadouts
  4. Select side tab
  5. Expand Arsenal category
  6. Select the saved loadout.
  7. After confirming, players of the given side will be able to respawn with your loadout.

a3 arsenal loadout save.png a3 arsenal loadout load.png


Shortcuts

Shortcut Description
Ctrl + Shift + C Copies current loadout in config format to the clipboard, can be used for CfgRespawnInventory
Ctrl + C Exports current loadout in script format
Ctrl + V Applies loadout from clipboard to currently viewed unit
ESC Leave Arsenal
Backspace Test current loadout
Enter Start preview
Ctrl + R Randomise loadout
N Toggle view mode


Modding

Access

You can use Arsenal in a scenario you're designing simply by calling the following function:

[] spawn BIS_fnc_arsenal;

This version has several limitations as opposed to the Virtual one:

  • Voice, Face and Insignia are not available (to avoid clashing with profile)
  • Not all assets are automatically present, designer has to whitelist allowed classes. By default, only player's current equipment is available.

To open Arsenal with full options, execute:

["Open", true] spawn BIS_fnc_arsenal;

Virtual Ammo Box

You can also use Arsenal as virtual inventory, allowing players to get unlimited number of items of given types from an ammo box. Action to access the Arsenal will be added automatically on all clients, you don't need to use addAction to enable it.

Syntax (shared by all mentioned functions):

["AmmoboxInit", <box>] spawn BIS_fnc_arsenal;

or

["AmmoboxInit", [<box>, (<allowAll>, <condition>)]] spawn BIS_fnc_arsenal;
  • box: Object - ammo box on which the action will be added
  • allowAll: Boolean - (Optional) true to add all available weapons, magazines, items and backpacks in the box
  • condition: Boolean - (Optional, default { true} ) condition for showing the Arsenal action
    • Passed arguments are the same as in addAction condition, i.e., _target - the box, _this - caller

Returned value: Nothing

Example (paste it into init field of a box)

0 = ["AmmoboxInit", [this, true]] spawn BIS_fnc_arsenal;

To set which specific items should be available, use functions mentioned below.

You can preview all functions in in-game Functions viewer (while in editor, press Functions button or Ctrl + F)

Add

Functions:

Syntax (shared by all mentioned functions):

[<target>, <classes>, (<isGlobal>, <addAction>)] call BIS_fnc_addVirtualWeaponCargo;
  • target: Object or Namespace - ammo box to which classes will be added. When missionNamespace is used, they will be available across all boxes.
  • classes: Boolean or Array of Strings - whitelisted classes. Alternatiovely, use true to whitelist everything of the given type
  • isGlobal (Optional): Boolean - true to add classes globally (default: false)
  • addAction (Optional): Boolean - true to add "Arsenal" action which players can access the Arsenal (default: true)

Returned value: Array of Arrays: All virtual items within the target's space in format [<items>, <weapons>, <magazines>, <backpacks>]

Example:

[myBox, ["arifle_MX_F", "arifle_MX_SW_F", "arifle_MXC_F"], true] call BIS_fnc_addVirtualWeaponCargo;

To add everything, use:

[myBox, true, true] call BIS_fnc_addVirtualWeaponCargo;
// or the equivalent:
[myBox, ["%ALL"], true] call BIS_fnc_addVirtualWeaponCargo; // note that %ALL is ALL CAPITAL LETTERS

Remove

Functions:

(Note: Only cargo specifically whitelisted can be removed via these commands e.g creating an arsenal container with a whitelist of true (<allowAll>) and then trying to remove "arifle_MX_ACO_pointer_F" will not work)

Syntax (shared by all mentioned functions):

[<target>, <classes>, (<isGlobal>)] call BIS_fnc_addVirtualWeaponCargo;

Returned value: Array of Arrays: All virtual items within the target's space in format [<items>, <weapons>, <magazines>, <backpacks>]

Example:

[myBox, ["arifle_MXC_F"], true] call BIS_fnc_removeVirtualWeaponCargo;

If an arsenal container has been created by using true as the whitelist (<allowAll>) then a string of "%ALL" (ALL CAPITAL LETTERS) will be inserted into the category array. To remove this kind of whitelist instead use..

[myBox, true, true] call BIS_fnc_removeVirtualWeaponCargo;
// or the equivalent:
[myBox, ["%ALL"], true] call BIS_fnc_removeVirtualWeaponCargo; // note that %ALL is ALL CAPITAL LETTERS

Get

Functions:

Syntax (shared by all mentioned functions):

[<target>] call BIS_fnc_addVirtualWeaponCargo;

Returned value: Array of Arrays: All virtual items within the target's space in format [<items>, <weapons>, <magazines>, <backpacks>]

Example:

myBox call BIS_fnc_getVirtualWeaponCargo;