unitAddons: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "<code>([^ ]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^ ]*)<\/code>" to "<code>$1$2$3</code>") |
Lou Montana (talk | contribs) m (Text replacement - "<code>([^ ]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^ ]*)<\/code>" to "<code>$1$2$3</code>") |
||
Line 14: | Line 14: | ||
|r1= [[Array]] - addon names | |r1= [[Array]] - addon names | ||
|x1= <code>hint str | |x1= <code>hint str unitAddons [[typeOf]] [[player]]; //["A3_Characters_F_BLUFOR"]</code> | ||
|seealso= [[activateAddons]] | |seealso= [[activateAddons]] | ||
Line 26: | Line 26: | ||
<dd class="note"> | <dd class="note"> | ||
1. From A3 1.14 | 1. From A3 1.14 | ||
<code>hint str ([player] | <code>hint str ([player] call [[BIS_fnc_unitAddon]]) // same as [[unitAddons]] ([[typeOf]] [[player]])</code> | ||
2. To return the addon that a weapon belongs to, use [[BIS_fnc_weaponAddon]] instead. E.g. | 2. To return the addon that a weapon belongs to, use [[BIS_fnc_weaponAddon]] instead. E.g. | ||
<code>((primaryWeapon player) | <code>((primaryWeapon player) call [[BIS_fnc_weaponAddon]]); //return: "A3_Weapons_F_Rifles_Khaybar"</code> | ||
</dl> | </dl> |
Revision as of 11:19, 12 May 2022
Description
- Description:
- Returns list with addons the unit belongs to.
- Groups:
- Mods and Addons
Syntax
- Syntax:
- unitAddons className
- Parameters:
- className: String - class name of a unit/vehicle or object
- Return Value:
- Array - addon names
Examples
Additional Information
- See also:
- activateAddons
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 Mar 31, 2014 - 23:38
- ffur2007slx2_5
-
1. From A3 1.14
hint str ([player] call BIS_fnc_unitAddon) // same as unitAddons (typeOf player)
2. To return the addon that a weapon belongs to, use BIS_fnc_weaponAddon instead. E.g.((primaryWeapon player) call BIS_fnc_weaponAddon); //return: "A3_Weapons_F_Rifles_Khaybar"