weaponState: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Some wiki formatting) |
Killzone Kid (talk | contribs) No edit summary |
||
Line 31: | Line 31: | ||
* {{GVI|arma3|2.06|size= 0.75}} magazineReloadPhase: [[Number]] - current magazine reload phase from 1 to 0, 0 - reload complete. > 0 - reload in progress | * {{GVI|arma3|2.06|size= 0.75}} magazineReloadPhase: [[Number]] - current magazine reload phase from 1 to 0, 0 - reload complete. > 0 - reload in progress | ||
|s2= [[weaponState]] [vehicle, turretPath, weapon] | |s2= [[weaponState]] [vehicle, turretPath, weapon, muzzle, firemode] | ||
|p21= [vehicle, turretPath, weapon]: [[Array]] | |p21= [vehicle, turretPath, weapon]: [[Array]] | ||
Line 41: | Line 41: | ||
|p24= weapon: [[String]] - (Optional) weapon or muzzle name | |p24= weapon: [[String]] - (Optional) weapon or muzzle name | ||
|p24since= arma3 1.70 | |p24since= arma3 1.70 | ||
|p25= muzzle: [[String]] - (Optional) muzzle name | |||
|p25since= arma3 2.08 | |||
|p26= firemode: [[String]] - (Optional) firemode name | |||
|p26since= arma3 2.08 | |||
|r2= [[Array]] - in format [weapon, muzzle, firemode, magazine, ammoCount, roundReloadPhase, magazineReloadPhase], where: | |r2= [[Array]] - in format [weapon, muzzle, firemode, magazine, ammoCount, roundReloadPhase, magazineReloadPhase], where: |
Revision as of 15:51, 24 November 2021
Description
- Description:
- Returns the given or currently selected weapon state for unit or vehicle.
- Groups:
- Weapons
Syntax 1
- Syntax:
- weaponState unit
- Parameters:
- unit: Object
- Return Value:
- Array - in format [weapon, muzzle, firemode, magazine, ammoCount, roundReloadPhase, magazineReloadPhase], where:
Syntax 2
- Syntax:
- weaponState [vehicle, turretPath, weapon, muzzle, firemode]
- Parameters:
- [vehicle, turretPath, weapon]: Array
- vehicle: Object
- turretPath: Array
- since 1.70
- weapon: String - (Optional) weapon or muzzle name
- since 2.08
- muzzle: String - (Optional) muzzle name
- since 2.08
- firemode: String - (Optional) firemode name
- Return Value:
- Array - in format [weapon, muzzle, firemode, magazine, ammoCount, roundReloadPhase, magazineReloadPhase], where:
Syntax 3
- Syntax:
- unit weaponState weaponOrMuzzle
- Parameters:
- unit: Object
- weaponOrMuzzle: String
- Return Value:
- Array - in format [weapon, muzzle, firemode, magazine, ammoCount, roundReloadPhase, magazineReloadPhase], where:
Examples
- Example 1:
_wsPlayer = weaponState player; // ["arifle_MXC_ACO_F","arifle_MXC_ACO_F","Single","30Rnd_65x39_caseless_mag",30,0,0]
- Example 2:
_wsVehicle = weaponState [_apc, [0]]; // ["autocannon_40mm_CTWS","HE","player","60Rnd_40mm_GPR_Tracer_Red_shells",60,0,0]
- Example 3:
_wsVehicle = weaponState [_apc, [0], "AP"]; // ["autocannon_40mm_CTWS","AP","player","40Rnd_40mm_APFSDS_Tracer_Red_shells",40,0,0]
- Example 4:
_wsPlayer = player weaponState "GL_3GL_F"; // ["arifle_MX_GL_ACO_F","GL_3GL_F","Single","1Rnd_HE_Grenade_shell",1,0,0]
Additional Information
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