BIS fnc compatibleMagazines: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Some wiki formatting)
m (compatibleMagazines update)
Line 6: Line 6:
|gr1= Weapons
|gr1= Weapons


|descr= Gets all compatible magazines for selected weapons. Function looks both for magazines listed in {{hl|magazines}} array and compatible {{hl|magazineWells}}.
|descr= {{Feature|obsolete|Use [[compatibleMagazines]] instead.}} Gets all compatible magazines for selected weapons. Function looks both for magazines listed in {{hl|magazines}} array and compatible {{hl|magazineWells}}.


|s1= [weapon, returnHidden] call [[BIS_fnc_compatibleMagazines]]
|s1= [weapon, returnHidden] call [[BIS_fnc_compatibleMagazines]]
Line 18: Line 18:
|x1= <sqf>["arifle_mx_f"] call BIS_fnc_compatibleMagazines;</sqf>
|x1= <sqf>["arifle_mx_f"] call BIS_fnc_compatibleMagazines;</sqf>


|seealso= [[currentMagazine]] [[currentWeapon]]
|seealso= [[currentMagazine]] [[currentWeapon]] [[compatibleMagazines]]
}}
}}



Revision as of 16:56, 28 August 2022

Hover & click on the images for description

Description

Description:
🕖
The following information is obsolete. Reason: Use compatibleMagazines instead.
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:
["arifle_mx_f"] call BIS_fnc_compatibleMagazines;

Additional Information

See also:
currentMagazine currentWeapon compatibleMagazines

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
PierreMGI - c
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