BIS_fnc_removeRespawnInventory
Description
- Description:
 - Remove a respawn inventory added by BIS_fnc_addRespawnInventory.
 - Execution:
 - call
 - Groups:
 - Respawn
 
Syntax
- Syntax:
 - [target, id] call BIS_fnc_removeRespawnInventory
 - Parameters:
 - target: Namespace, Side, Group or Object
 - id: Number
 - Return Value:
 - Boolean
 
Examples
- Example 1:
 - Example 2:
 - private _myRespawnInventory = [missionNamespace,"ATSniper"] call BIS_fnc_addRespawnInventory; _myRespawnInventory call BIS_fnc_removeRespawnInventory;
 
Additional Information
- See also:
 - Arma 3: Respawn BIS_fnc_addRespawnInventory BIS_fnc_getRespawnInventories BIS_fnc_setRespawnInventory
 
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 Jul 01, 2016 - 17:29 (UTC)
 - 
To remove all inventories that are currently available you can use the following:
If all available inventories are removed, the default inventory for the current unit (as it would be placed in the editor) will be added automatically.{ [missionNamespace, _x] call BIS_fnc_removeRespawnInventory; } forEach ([missionNamespace, true] call BIS_fnc_getRespawnInventories;