BIS fnc compatibleMagazines: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - " |exec= call " to " ") |
Lou Montana (talk | contribs) m (Text replacement - "<code> +" to "<code>") |
||
Line 32: | Line 32: | ||
This function returns all magazines in lower case.<br> | This function returns all magazines in lower case.<br> | ||
Example: | Example: | ||
<code> | <code>[[currentMagazine]] [[player]] // "30Rnd_762x39_AK12_Mag_F"<br> | ||
[[currentMagazine]] [[player]] // "30Rnd_762x39_AK12_Mag_F"<br> | |||
[[currentWeapon]] [[player]] [[call]] [[BIS_fnc_compatibleMagazines]]; // ["30rnd_762x39_ak12_mag_f",....]<br> | [[currentWeapon]] [[player]] [[call]] [[BIS_fnc_compatibleMagazines]]; // ["30rnd_762x39_ak12_mag_f",....]<br> | ||
[[currentMagazine]] [[player]] [[in]] ([[currentWeapon]] [[player]] [[call]] [[BIS_fnc_compatibleMagazines]]) // never works<br> | [[currentMagazine]] [[player]] [[in]] ([[currentWeapon]] [[player]] [[call]] [[BIS_fnc_compatibleMagazines]]) // never works<br> |
Revision as of 16:52, 7 February 2021
Description
- Description:
- Get all compatible magazines for selected weapons. Function looks both for magazines listed in "magazines" array & compatibile magazineWells.
- Execution:
- call
- Groups:
- Weapons
Syntax
- Syntax:
- [weapon, returnHidden] call BIS_fnc_compatibleMagazines
- Parameters:
- weapon: String - Classname of the weapon
- returnHidden: Boolean - (Optional, default false) true to also return magazines with scope 1
- Return Value:
- Array - Array of magazine classes
Examples
- Example 1:
["arifle_mx_f"] call BIS_fnc_compatibleMagazines;
Additional Information
- See also:
- currentMagazine currentWeapon
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 September 1, 2020 - 18:59 (UTC)
- pierremgi
-
This function returns all magazines in lower case.
Example:currentMagazine player // "30Rnd_762x39_AK12_Mag_F"
currentWeapon player call BIS_fnc_compatibleMagazines; // ["30rnd_762x39_ak12_mag_f",....]
currentMagazine player in (currentWeapon player call BIS_fnc_compatibleMagazines) // never works
toLowerANSI currentMagazine player in (currentWeapon player call BIS_fnc_compatibleMagazines) // works