addWeaponWithAttachmentsCargoGlobal: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - " {3,}\|" to " |") |
Lou Montana (talk | contribs) m (Text replacement - " *\| *[Pp]arameter [0-9]{1,3}= * " to " ") |
||
Line 24: | Line 24: | ||
|p8= [primaryMuzzleMagazine, ammoCount]: [[Array]] - Primary muzzle magazine info or [] if not needed | |p8= [primaryMuzzleMagazine, ammoCount]: [[Array]] - Primary muzzle magazine info or [] if not needed | ||
|p9= primaryMuzzleMagazine: [[String]] - Magazine class name | |p9= primaryMuzzleMagazine: [[String]] - Magazine class name | ||
|p10= ammoCount: [[Number]] - Ammo count in magazine (will be clipped in 0 and max mag capacity range) | |p10= ammoCount: [[Number]] - Ammo count in magazine (will be clipped in 0 and max mag capacity range) | ||
|p11= [secondaryMuzzleMagazine, ammoCount]: [[Array]] - Secondary muzzle magazine info or [] if not needed | |p11= [secondaryMuzzleMagazine, ammoCount]: [[Array]] - Secondary muzzle magazine info or [] if not needed | ||
|p12= secondaryMuzzleMagazine: [[String]] - Magazine class name | |p12= secondaryMuzzleMagazine: [[String]] - Magazine class name | ||
|p13= ammoCount: [[Number]] - Ammo count in magazine (will be clipped in 0 and max mag capacity range) | |p13= ammoCount: [[Number]] - Ammo count in magazine (will be clipped in 0 and max mag capacity range) | ||
|p14= bipod: [[String]] - Underbarrel rail attachment class name or "" if not needed | |p14= bipod: [[String]] - Underbarrel rail attachment class name or "" if not needed | ||
|p15= weaponsCount: [[Number]] - Number of weapons to add | |p15= weaponsCount: [[Number]] - Number of weapons to add | ||
| [[Nothing]] | | [[Nothing]] |
Revision as of 00:48, 19 January 2021
Description
- Description:
- Adds a weapon into cargo space of a vehicle / box with given attachments / magazines. Ignores available cargo space. If the weapon class has any pre-attached items (LinkedItems), they are removed and new items, supplied via command arguments, are added. This command has a global effect.
- Groups:
- Vehicle Inventory
Syntax
- Syntax:
- container addWeaponWithAttachmentsCargoGlobal [[weapon, muzzle, flashlight, optics, [primaryMuzzleMagazine, ammoCount], [secondaryMuzzleMagazine, ammoCount], bipod], weaponsCount]
- Parameters:
- container: Object - Container to add the weapon to, might be backpack, ammobox or vehicle
- [[weapon, muzzle, flashlight, optics, [primaryMuzzleMagazine, ammoCount], [secondaryMuzzleMagazine, ammoCount], bipod], weaponsCount]: Array
- [weapon, muzzle, flashlight, optics, [primaryMuzzleMagazine, ammoCount], [secondaryMuzzleMagazine, ammoCount], bipod]: Array in format weaponsItems
- weapon: String - Weapon class name. See the topic Category:Weapons for reference about possible values
- muzzle: String - Muzzle attachment class name or "" if not needed
- flashlight: String - Side rail attachment class name or "" if not needed
- optics: String - Top rail attachment class name or "" if not needed
- [primaryMuzzleMagazine, ammoCount]: Array - Primary muzzle magazine info or [] if not needed
- primaryMuzzleMagazine: String - Magazine class name
- ammoCount: Number - Ammo count in magazine (will be clipped in 0 and max mag capacity range)
- [secondaryMuzzleMagazine, ammoCount]: Array - Secondary muzzle magazine info or [] if not needed
- secondaryMuzzleMagazine: String - Magazine class name
- ammoCount: Number - Ammo count in magazine (will be clipped in 0 and max mag capacity range)
- bipod: String - Underbarrel rail attachment class name or "" if not needed
- weaponsCount: Number - Number of weapons to add
- Return Value:
- Nothing
Examples
- Example 1:
cursorObject addWeaponWithAttachmentsCargoGlobal [["arifle_MX_GL_F", "muzzle_snds_H", "", "optic_aco", ["30Rnd_65x39_caseless_mag", 15], ["3Rnd_HE_Grenade_shell", 2], ""], 2];
- Example 2:
- Add five MX GL rifles with flashlight side attachment and a full 30 round magazine loaded into the gun, and full 3Rnd HE grenade magazine loaded into the grenade launcher:
cursorObject addWeaponWithAttachmentsCargoGlobal [["arifle_MX_GL_F", "", "acc_flashlight", "", ["30Rnd_65x39_caseless_mag", 30], ["3Rnd_HE_Grenade_shell", 2], ""], 5]
- Example 3:
- Add one MX rifle without any attachments or magazines event though the class has linked items:
cursorObject addWeaponWithAttachmentsCargoGlobal [["arifle_MX_Holo_pointer_F", "", "", "", [], [], ""], 1];
- Example 4:
- Add all weapons on player with attachments:
{ cursorObject addWeaponWithAttachmentsCargoGlobal [_x, 1] } forEach weaponsItems player;
Additional Information
- See also:
- addWeaponWithAttachmentsCargoaddWeaponCargoaddWeaponCargoGlobalclearWeaponCargogetWeaponCargo
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
- Posted on October 28, 2020 - 20:57 (UTC)
- Andrew_S90
-
This command also allows you to add a weapon with attachments directly to the players backpack.
(backpackContainer player) addWeaponWithAttachmentsCargoGlobal [ ["arifle_MX_F","muzzle_snds_H","acc_pointer_IR","optic_Hamr",["30Rnd_65x39_caseless_mag",30],[],"bipod_03_F_blk"], 1];