unassignItem: Difference between revisions
Jump to navigation
Jump to search
m (Text replace - "{{uc:{{PAGENAME}}}}" to "{{uc:{{PAGENAME}}}} {{uc:{{PAGENAME}}}}") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
(49 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{{ | {{RV|type=command | ||
| arma3 |= | |game1= arma3 | ||
|version1= 0.50 | |||
| | |arg= global | ||
|eff= global | |||
| | |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. See also [[unlinkItem]]. | ||
| | |s1= unit [[unassignItem]] item | ||
| | |p1= unit: [[Object]] | ||
| [[ | |p2= item: [[String]] | ||
|r1= [[Nothing]] | |||
|x1= < | |x1= <sqf> | ||
</ | _bluforUnit unassignItem "NVGoggles"; | ||
_bluforUnit removeItem "NVGoggles"; | |||
_opforUnit unassignItem "NVGoggles_OPFOR"; | |||
_opforUnit removeItem "NVGoggles_OPFOR"; | |||
_independentUnit unassignItem "NVGoggles_INDEP"; | |||
_independentUnit removeItem "NVGoggles_INDEP"; | |||
</sqf> | |||
|x2= <sqf> | |||
{ | |||
_x unassignItem hmd _x; // unassign (not remove) NVGs from all units | |||
} forEach allUnits; | |||
</sqf> | |||
| | |seealso= [[assignItem]] [[addItem]] [[removeItem]] [[linkItem]] [[unlinkItem]] [[assignedItems]] [[removeAllAssignedItems]] | ||
}} | }} | ||
Latest revision as of 13:31, 12 March 2024
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:
Additional Information
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