BIS fnc removeVirtualBackpackCargo: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (1 revision)
m (pf)
Line 1: Line 1:
{{Function|Comments=
____________________________________________________________________________________________
| arma3 |Game name=


{{Function|= Comments
|1.24|Game version=
____________________________________________________________________________________________
____________________________________________________________________________________________


| arma3 |= Game name
|Remove virtual backpacks from an object (e.g., ammo box). Virtual items can be selected in the [[Arsenal]].|Description=
 
|1.00|= Game version
____________________________________________________________________________________________
____________________________________________________________________________________________


| <pre>/*
| [object,backpackClasses,removeGlobally] call [[BIS_fnc_removeVirtualBackpackCargo]] |Syntax=


Description:
|p1=object: [[Object]] - Object from which items will be removed|Parameter 1=
Remove virtual backpacks from an object (e.g., ammo box).
Virtual items can be selected in the Arsenal.


Parameter(s):
|p2=backpackClasses: [[String]] or [[Array]] of [[String|strings]] - Backpack classes|Parameter 2=
0: OBJECT - objct from which backpacks will be removed
1: STRING or ARRAY of STRINGs - backpack class(es) to be removed
2 (Optional): BOOL - true to remove backpacks globally (default: false)


Returns:
|p3=removeGlobally: [[Boolean]] - (Optional, default [[false]]) [[True]] to remove items globally|Parameter 3=
ARRAY of ARRAYs - all virtual items within the object's space in format [<items>,<weapons>,<magazines>,<backpacks>]
*/


</pre><small>''(Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]])''</small> |= Description
| [[Array]] of [[Array|arrays]] - All virtual items in objects's space in format:
*0: [[Array]] - Items
*1: [[Array]] - Weapons
*2: [[Array]] - Magazines
*3: [[Array]] - Backpacks|Return value=
____________________________________________________________________________________________
____________________________________________________________________________________________


| <!-- [] call [[BIS_fnc_removeVirtualBackpackCargo]]; --> |= Syntax
|x1= <code>[ BIS_ammoBox, ["class_1","class_2"], [[true]] ] [[call]] [[BIS_fnc_removeVirtualBackpackCargo]];</code>|Example 1=


|p1= |= Parameter 1
| |= Return value
____________________________________________________________________________________________
____________________________________________________________________________________________


|x1= <code></code> |=
| [[Arsenal]],[[BIS_fnc_addVirtualBackpackCargo]], [[BIS_fnc_addVirtualItemCargo]], [[BIS_fnc_addVirtualMagazineCargo]],[[BIS_fnc_addVirtualWeaponCargo]],[[BIS_fnc_arsenal]],[[BIS_fnc_getVirtualBackpackCargo]],[[BIS_fnc_getVirtualItemCargo]],[[BIS_fnc_getVirtualMagazineCargo]],[[BIS_fnc_getVirtualWeaponCargo]],[[BIS_fnc_removeVirtualItemCargo]], [[BIS_fnc_removeVirtualMagazineCargo]],[[BIS_fnc_removeVirtualWeaponCargo]] |See also=
____________________________________________________________________________________________
 
| |= See also
 
}}
}}



Revision as of 10:24, 23 June 2018

Hover & click on the images for description

Description

Description:
Remove virtual backpacks from an object (e.g., ammo box). Virtual items can be selected in the Arsenal.
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
[object,backpackClasses,removeGlobally] call BIS_fnc_removeVirtualBackpackCargo
Parameters:
object: Object - Object from which items will be removed
backpackClasses: String or Array of strings - Backpack classes
removeGlobally: Boolean - (Optional, default false) True to remove items globally
Return Value:
Array of arrays - All virtual items in objects's space in format:

Examples

Example 1:
[ BIS_ammoBox, ["class_1","class_2"], true ] call BIS_fnc_removeVirtualBackpackCargo;

Additional Information

See also:
ArsenalBIS_fnc_addVirtualBackpackCargoBIS_fnc_addVirtualItemCargoBIS_fnc_addVirtualMagazineCargoBIS_fnc_addVirtualWeaponCargoBIS_fnc_arsenalBIS_fnc_getVirtualBackpackCargoBIS_fnc_getVirtualItemCargoBIS_fnc_getVirtualMagazineCargoBIS_fnc_getVirtualWeaponCargoBIS_fnc_removeVirtualItemCargoBIS_fnc_removeVirtualMagazineCargoBIS_fnc_removeVirtualWeaponCargo

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