selectWeaponTurret: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (Cleaned up description and parameters)
Line 6: Line 6:
|gr1= Turrets
|gr1= Turrets


|descr= Selects the given weapon on specified turret. Use turret path [-1] for driver's turret. Since ver. 1.63.136864 this command supports both weapon name and muzzle name.
|descr= Selects the given weapon on the specified turret. Use turret path [-1] for the driver's turret.


|s1= vehicle [[selectWeaponTurret]] [weapon, turretPath, muzzle, firemode]
|s1= vehicle [[selectWeaponTurret]] [weapon, turretPath, muzzle, firemode]


|p1= vehicle: [[Object]]
|p1= vehicle: [[Object]]
|p2= [weapon, turretPath]: [[Array]]
|p2= weapon: [[String]] - weapon class name or (since {{GVI|arma3|1.63|branch=dev}}) muzzle class name
|p3= weapon: [[String]] - weapon class name or muzzle class name
|p3= turretPath: [[Array]]
|p4= turretPath: [[Array]]
|p4= muzzle: [[String]] (Optional) - muzzle name
|p5= muzzle: [[String]] (Optional) - muzzle name
|p4since= Arma3 2.08
|p5= firemode: [[String]] (Optional) - firemode name
|p5since= Arma3 2.08
|p5since= Arma3 2.08
|p6= firemode: [[String]] (Optional) - firemode name
|p6since= Arma3 2.08


|r1= [[Nothing]]
|r1= [[Nothing]]
Line 24: Line 23:
|x2= <code>Kamysh [[selectWeaponTurret]] ["missiles_titan", [0], "missiles_titan", "topdown"];</code>
|x2= <code>Kamysh [[selectWeaponTurret]] ["missiles_titan", [0], "missiles_titan", "topdown"];</code>


|seealso= [[removeWeaponTurret]], [[weaponState]], [[turretLocal]], [[addMagazineTurret]], [[magazinesTurret]], [[removeMagazinesTurret]], [[removeMagazineTurret]], [[weaponsTurret]], [[currentMagazineDetailTurret]], [[currentMagazineTurret]], [[currentWeaponTurret]], [[addWeaponTurret]]
|seealso= [[removeWeaponTurret]] [[weaponState]] [[turretLocal]] [[addMagazineTurret]] [[magazinesTurret]] [[removeMagazinesTurret]] [[removeMagazineTurret]] [[weaponsTurret]] [[currentMagazineDetailTurret]] [[currentMagazineTurret]] [[currentWeaponTurret]] [[addWeaponTurret]]
}}
}}



Revision as of 10:38, 26 November 2021

Hover & click on the images for description

Description

Description:
Selects the given weapon on the specified turret. Use turret path [-1] for the driver's turret.
Groups:
Turrets

Syntax

Syntax:
vehicle selectWeaponTurret [weapon, turretPath, muzzle, firemode]
Parameters:
vehicle: Object
weapon: String - weapon class name or (since Arma 3 logo black.png1.63) muzzle class name
turretPath: Array
since Arma 3 logo black.png2.08
muzzle: String (Optional) - muzzle name
since Arma 3 logo black.png2.08
firemode: String (Optional) - firemode name
Return Value:
Nothing

Examples

Example 1:
MBT_Kuma selectWeaponTurret ["LMG_coax",[0]];
Example 2:
Kamysh selectWeaponTurret ["missiles_titan", [0], "missiles_titan", "topdown"];

Additional Information

See also:
removeWeaponTurret weaponState turretLocal addMagazineTurret magazinesTurret removeMagazinesTurret removeMagazineTurret weaponsTurret currentMagazineDetailTurret currentMagazineTurret currentWeaponTurret addWeaponTurret

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 February 13, 2017 - 16:54 (UTC)
Killzone Kid
The command will treat weapon or muzzle param like a weapon first. If no such weapon is found then it will try to find muzzle with such name. For example AMV-7 Marshall APC has main gun "autocannon_40mm_CTWS" which has 2 muzzles "HE" and "AP". Default muzzle is "HE". So if you try to select weapon by the name "autocannon_40mm_CTWS" you will always get "HE" muzzle selected. However if you pass "AP" as param, it will correctly select "AP" muzzle, since no "AP" weapon exists on this turret it will continue searching for a muzzle with this name and will find it eventually.