getCompatiblePylonMagazines: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(show in example where pylon classes are defined in config)
m (Some wiki formatting)
 
Line 19: Line 19:
|r1= [[Array]] of [[String]]s, or [[Array]] of [[Array]] of [[String]]s
|r1= [[Array]] of [[String]]s, or [[Array]] of [[Array]] of [[String]]s


|x1= <code>[[vehicle]] [[player]] [[getCompatiblePylonMagazines]] 0; {{cc|returns array of arrays containing all compatible magazines}}</code>
|x1= <sqf>
// returns array of arrays containing all compatible magazines
vehicle player getCompatiblePylonMagazines 0;
</sqf>


|x2= <code>jet1 [[getCompatiblePylonMagazines]] 3; {{cc|returns array of compatible magazines for the 3rd pylon if it exists; otherwise returns array of arrays (see above)}}</code>
|x2= <sqf>
// returns array of compatible magazines for the 3rd pylon if it exists; otherwise returns array of arrays (see above)
jet1 getCompatiblePylonMagazines 3;
</sqf>


|x3= <code>"B_Plane_CAS_01_dynamicLoadout_F" [[getCompatiblePylonMagazines]] "pylon1"; {{cc|returns array of compatible magazines for "pylon1" class, defined in: configFile >> "CfgVehicles" >> "B_Plane_CAS_01_dynamicLoadout_F" >> "Components" >> "TransportPylonsComponent" >> "Pylons"}}</code>
|x3= <sqf>
// returns array of compatible magazines for "pylon1" class, defined in
// configFile >> "CfgVehicles" >> "B_Plane_CAS_01_dynamicLoadout_F" >> "Components" >> "TransportPylonsComponent" >> "Pylons"
"B_Plane_CAS_01_dynamicLoadout_F" getCompatiblePylonMagazines "pylon1";
</sqf>


|seealso= [[Arma 3: Vehicle Loadouts]] [[getPylonMagazines]] [[setAmmoOnPylon]] [[ammoOnPylon]] [[animatePylon]] [[animateBay]] [[setPylonsPriority]] [[setPylonLoadout]]
|seealso= [[Arma 3: Vehicle Loadouts]] [[getPylonMagazines]] [[setAmmoOnPylon]] [[ammoOnPylon]] [[animatePylon]] [[animateBay]] [[setPylonsPriority]] [[setPylonLoadout]]
}}
}}

Latest revision as of 21:43, 7 May 2022

Hover & click on the images for description

Description

Description:
Get array of compatible pylon magazines
Groups:
Vehicle Loadouts

Syntax

Syntax:
vehicle getCompatiblePylonMagazines pylon
Parameters:
vehicle: Object or String - aircraft object or config class
pylon: Number or String
  • If String - pylon class name from TransportPylonsComponent >> pylons class
  • If Number - pylon ID
  • If an invalid pylon ID or class name is provided, such as 0 or "", all compatible magazines from all pylons are returned.
Return Value:
Array of Strings, or Array of Array of Strings

Examples

Example 1:
// returns array of arrays containing all compatible magazines vehicle player getCompatiblePylonMagazines 0;
Example 2:
// returns array of compatible magazines for the 3rd pylon if it exists; otherwise returns array of arrays (see above) jet1 getCompatiblePylonMagazines 3;
Example 3:
// returns array of compatible magazines for "pylon1" class, defined in // configFile >> "CfgVehicles" >> "B_Plane_CAS_01_dynamicLoadout_F" >> "Components" >> "TransportPylonsComponent" >> "Pylons" "B_Plane_CAS_01_dynamicLoadout_F" getCompatiblePylonMagazines "pylon1";

Additional Information

See also:
Arma 3: Vehicle Loadouts getPylonMagazines setAmmoOnPylon ammoOnPylon animatePylon animateBay setPylonsPriority setPylonLoadout

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