BIS fnc compatibleMagazines: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "{{Function " to "{{RV|type=function ")
m (Text replacement - " (\|[pr][0-9]+ *= *[^-]+) *- *A([a-z])" to " $1 - a$2")
 
(16 intermediate revisions by 3 users not shown)
Line 2: Line 2:


|game1= arma3
|game1= arma3
|version1= 1.96


|version1= 1.95
|gr1= Weapons


|gr1 = Weapons
|descr= {{Feature|obsolete|
 
Use [[compatibleMagazines]] instead.|arma3|2.10}}
|descr= Get all compatible magazines for selected weapons. Function looks both for magazines listed in "magazines" array & compatibile magazineWells.
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]]


|p1= weapon: [[String]] - Classname of the weapon
|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


|r1= [[Array]] - Array of magazine classes
|r1= [[Array]] - array of magazine classes
 
|x1= <code>["arifle_mx_f"] [[call]] [[BIS_fnc_compatibleMagazines]];</code>


|exec= call
|x1= <sqf>["arifle_mx_f"] call BIS_fnc_compatibleMagazines;</sqf>


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


[[Category:Functions|{{uc:compatibleMagazines}}]]
{{Note
[[Category:{{Name|arma3}}: Functions|{{uc:compatibleMagazines}}]]
|user= PierreMGI
 
|timestamp= 20200901185900
<!-- CONTINUE Notes -->
|text= This function returns all magazines in lower case.<br>
<dl class="command_description">
<dd class="notedate">Posted on September 1, 2020 - 18:59 (UTC)</dd>
<dt class="note">[[User:pierremgi|pierremgi]]</dt>
<dd class="note">
This function returns all magazines in lower case.<br>
Example:
Example:
<code>
<sqf>
[[currentMagazine]] [[player]] // "30Rnd_762x39_AK12_Mag_F"<br>
currentMagazine player; // "30Rnd_762x39_AK12_Mag_F"
[[currentWeapon]] [[player]] [[call]] [[BIS_fnc_compatibleMagazines]];   // ["30rnd_762x39_ak12_mag_f",....]<br>
currentWeapon player call BIS_fnc_compatibleMagazines; // ["30rnd_762x39_ak12_mag_f", ...]
[[currentMagazine]] [[player]] [[in]] ([[currentWeapon]] [[player]] [[call]] [[BIS_fnc_compatibleMagazines]]) // never works<br>
currentMagazine player in (currentWeapon player call BIS_fnc_compatibleMagazines); // never works
[[toLowerANSI]] [[currentMagazine]] [[player]] [[in]] ([[currentWeapon]] [[player]] [[call]] [[BIS_fnc_compatibleMagazines]]) // works</code>
toLowerANSI currentMagazine player in (currentWeapon player call BIS_fnc_compatibleMagazines); // works
</dd>
</sqf>
</dl>
}}
<!-- DISCONTINUE Notes -->

Latest revision as of 13:39, 8 November 2023

Hover & click on the images for description

Description

Description:
🕖
The following information is obsolete as of Arma 3 v2.10. 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