currentWeaponMode: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(firemode added)
Line 7: Line 7:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Returns current weapon mode of unit's weapon. Result can be: "Single", "Burst" or "manual" |= Description
| Returns current weapon mode of unit's weapon. Result can be: "Single", "Burst", "FullAuto", "manual", "player" |= Description
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 17: Line 17:
____________________________________________________________________________________________
____________________________________________________________________________________________


|x1= <pre> _weaponMode <nowiki>=</nowiki> currentWeaponMode player;</pre> |=  
|x1= <code> _weaponMode = [[currentWeaponMode]] [[player]];</code> |=  
|x2= <pre> weaponMode  <nowiki>=</nowiki> currentWeaponMode (gunner (vehicle player));</pre> |=  
|x2= <code> _weaponMode = [[currentWeaponMode]] [[gunner]] [[vehicle]] [[player]];</code> |=  
____________________________________________________________________________________________
____________________________________________________________________________________________



Revision as of 21:04, 25 June 2014

Hover & click on the images for description

Description

Description:
Returns current weapon mode of unit's weapon. Result can be: "Single", "Burst", "FullAuto", "manual", "player"
Groups:
Uncategorised

Syntax

Syntax:
currentWeaponMode gunner
Parameters:
gunner: Object
Return Value:
String

Examples

Example 1:
_weaponMode = currentWeaponMode player;
Example 2:
_weaponMode = currentWeaponMode gunner vehicle player;

Additional Information

See also:
ArmA:_Actions#SWITCHWEAPONcurrentWeapon

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

Notes

Bottom Section