BIS fnc compatibleMagazines: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "<tt>([a-zA-Z0-9\. _"\\']+)<\/tt>" to "{{hl|$1}}") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 10: | Line 10: | ||
|s1= [weapon, returnHidden] call [[BIS_fnc_compatibleMagazines]] | |s1= [weapon, returnHidden] call [[BIS_fnc_compatibleMagazines]] | ||
|p1= weapon: [[String]] - | |p1= weapon: [[String]] - weapon's classname | ||
|p2= returnHidden: [[Boolean]] - (Optional, default [[false]]) [[true]] to also return magazines with scope 1 | |p2= returnHidden: [[Boolean]] - (Optional, default [[false]]) [[true]] to also return magazines with scope 1 | ||
Line 16: | Line 16: | ||
|r1= [[Array]] - Array of magazine classes | |r1= [[Array]] - Array of magazine classes | ||
|x1= < | |x1= <sqf>["arifle_mx_f"] call BIS_fnc_compatibleMagazines;</sqf> | ||
|seealso= [[currentMagazine]] [[currentWeapon]] | |seealso= [[currentMagazine]] [[currentWeapon]] | ||
}} | }} | ||
{{Note | |||
|user= PierreMGI | |||
|timestamp= 20200901185900 | |||
|text= This function returns all magazines in lower case.<br> | |||
This function returns all magazines in lower case.<br> | |||
Example: | Example: | ||
< | <sqf> | ||
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 | ||
</sqf> | |||
}} |
Revision as of 15:04, 3 May 2022
Description
- Description:
- Gets all compatible magazines for selected weapons. Function looks both for magazines listed in magazines array and compatible magazineWells.
- Execution:
- call
- Groups:
- Weapons
Syntax
- Syntax:
- [weapon, returnHidden] call BIS_fnc_compatibleMagazines
- Parameters:
- weapon: String - weapon's classname
- returnHidden: Boolean - (Optional, default false) true to also return magazines with scope 1
- Return Value:
- Array - Array of magazine classes
Examples
- Example 1:
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 Sep 01, 2020 - 18:59 (UTC)
-
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