unitBackpack: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
EMSI_bi_wiki (talk | contribs) mNo edit summary |
||
Line 30: | Line 30: | ||
<dl class="command_description"> | <dl class="command_description"> | ||
<!-- Note Section BEGIN --> | <!-- Note Section BEGIN --> | ||
If you want to check if the unit have the specific backpack, use this code: | |||
<pre>_bag = unitBackpack soldier; | |||
_class = typeOf _bag; | |||
if (_class == "US_UAV_Pack_EP1") then { - exec this code - };</pre> | |||
- if the unit called "soldier" has the backpack with class name "US_UAV_Pack_EP1", code in the brackets will be executed | |||
<!-- Note Section END --> | <!-- Note Section END --> | ||
</dl> | </dl> |
Revision as of 09:19, 2 May 2011
Description
- Description:
- Returns unit's backpack
- Groups:
- Uncategorised
Syntax
Examples
- Example 1:
myBackpack = unitBackpack player
- Example 2:
clearMagazineCargo unitBackpack player
- Example 3:
player action ["gear", unitBackpack player]
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
Notes
-
If you want to check if the unit have the specific backpack, use this code:
_bag = unitBackpack soldier; _class = typeOf _bag; if (_class == "US_UAV_Pack_EP1") then { - exec this code - };
- if the unit called "soldier" has the backpack with class name "US_UAV_Pack_EP1", code in the brackets will be executed