unassignItem: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\|s([0-9])\= ([^' ]+)'''([^' ]+)'''([^ ]*) " to "|s$1= $2$3$4 ")
No edit summary
(16 intermediate revisions by one other user not shown)
Line 9: Line 9:
|gr1= Unit Inventory
|gr1= Unit Inventory


|descr= Unassigns existing item and tries to put it into inventory. If there is no space in inventory the item simply disappears.
|descr= Unassigns existing item and tries to put it into inventory. If there is no space in inventory the item simply disappears. See also [[unlinkItem]].


|s1= unit [[unassignItem]] item
|s1= unit [[unassignItem]] item
Line 19: Line 19:
|r1= [[Nothing]]
|r1= [[Nothing]]


|x1= <code>_bluforUnit [[unassignItem]] "NVGoggles";
|x1= <sqf>_bluforUnit unassignItem "NVGoggles";
_bluforUnit [[removeItem]] "NVGoggles";
_bluforUnit removeItem "NVGoggles";
_opforUnit [[unassignItem]] "NVGoggles_OPFOR";
_opforUnit unassignItem "NVGoggles_OPFOR";
_opforUnit [[removeItem]] "NVGoggles_OPFOR";
_opforUnit removeItem "NVGoggles_OPFOR";
_independentUnit [[unassignItem]] "NVGoggles_INDEP";
_independentUnit unassignItem "NVGoggles_INDEP";
_independentUnit [[removeItem]] "NVGoggles_INDEP";</code>
_independentUnit removeItem "NVGoggles_INDEP";</sqf>


|x2= <code>{
|x2= <sqf>{
   _x [[unassignItem]] [[hmd]] [[Magic Variables#x|_x]]; {{cc|Unassign (not remove) NVGs from all units. The class name of the NVG is not needed}}
   _x unassignItem hmd _x; // Unassign (not remove) NVGs from all units. The class name of the NVG is not needed
} [[forEach]] [[allUnits]];</code>
} forEach allUnits;</sqf>


|seealso= [[assignItem]], [[addItem]], [[removeItem]], [[linkItem]], [[unlinkItem]], [[assignedItems]], [[removeAllAssignedItems]]
|seealso= [[assignItem]] [[addItem]] [[removeItem]] [[linkItem]] [[unlinkItem]] [[assignedItems]] [[removeAllAssignedItems]]
}}
}}

Revision as of 18:20, 9 April 2023

Hover & click on the images for description

Description

Description:
Unassigns existing item and tries to put it into inventory. If there is no space in inventory the item simply disappears. See also unlinkItem.
Groups:
Unit Inventory

Syntax

Syntax:
unit unassignItem item
Parameters:
unit: Object
item: String
Return Value:
Nothing

Examples

Example 1:
_bluforUnit unassignItem "NVGoggles"; _bluforUnit removeItem "NVGoggles"; _opforUnit unassignItem "NVGoggles_OPFOR"; _opforUnit removeItem "NVGoggles_OPFOR"; _independentUnit unassignItem "NVGoggles_INDEP"; _independentUnit removeItem "NVGoggles_INDEP";
Example 2:
{ _x unassignItem hmd _x; // Unassign (not remove) NVGs from all units. The class name of the NVG is not needed } forEach allUnits;

Additional Information

See also:
assignItem addItem removeItem linkItem unlinkItem assignedItems removeAllAssignedItems

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