getWeaponCargo: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (format)
m (template:command argument fix)
Line 7: Line 7:
____________________________________________________________________________________________
____________________________________________________________________________________________


|  Returns all weapons types and count from the cargo space |= Description
|  Returns all weapons types and count from the cargo space |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| result <nowiki>=</nowiki> '''getWeaponCargo''' object |= Syntax
| result <nowiki>=</nowiki> '''getWeaponCargo''' object |SYNTAX=




|p1= object: [[Object]] - object to check |= Parameter 1
|p1= object: [[Object]] - object to check |PARAMETER1=


| [[Array]] - format [all_types_array, all_counts_array]. Eg: [["a", "b"], [3, 2]] |= Return value
| [[Array]] - format [all_types_array, all_counts_array]. Eg: [["a", "b"], [3, 2]] |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <code>_content = [[getWeaponCargo]] carName;</code> |= Example 1
|x1= <code>_content = [[getWeaponCargo]] carName;</code> |EXAMPLE1=
|x2= <code>_content = [[getWeaponCargo]] ammoBoxName;</code>
|x2= <code>_content = [[getWeaponCargo]] ammoBoxName;</code>
Sample result returns:<code>
Sample result returns:<code>
[["arifle_Katiba_F","launch_B_Titan_short_F"],[2,1]]</code> |= Example 2
[["arifle_Katiba_F","launch_B_Titan_short_F"],[2,1]]</code> |EXAMPLE2=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[weaponCargo]], [[addWeaponCargo]], [[addWeaponCargoGlobal]], [[clearWeaponCargo]], [[clearWeaponCargoGlobal]] |= See also
| [[weaponCargo]], [[addWeaponCargo]], [[addWeaponCargoGlobal]], [[clearWeaponCargo]], [[clearWeaponCargoGlobal]] |SEEALSO=


}}
}}

Revision as of 15:40, 7 April 2019

Hover & click on the images for description

Description

Description:
Returns all weapons types and count from the cargo space
Groups:
Uncategorised

Syntax

Syntax:
result = getWeaponCargo object
Parameters:
object: Object - object to check
Return Value:
Array - format [all_types_array, all_counts_array]. Eg: [["a", "b"], [3, 2]]

Examples

Example 1:
_content = getWeaponCargo carName;
Example 2:
_content = getWeaponCargo ammoBoxName; Sample result returns: [["arifle_Katiba_F","launch_B_Titan_short_F"],[2,1]]

Additional Information

See also:
weaponCargoaddWeaponCargoaddWeaponCargoGlobalclearWeaponCargoclearWeaponCargoGlobal

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

Notes

Bottom Section