currentWeaponMode: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\|( *\[\[[a-zA-Z]+\]\]) * \|x1=" to "\|r1=$1 \|x1=") |
Lou Montana (talk | contribs) m (Text replacement - "\|" to "|") |
||
Line 16: | Line 16: | ||
|p1= gunner: [[Object]] | |p1= gunner: [[Object]] | ||
|r1= [[String]] | |||
|x1= <code> _weaponMode = [[currentWeaponMode]] [[player]];</code> | |||
|x2= <code> _weaponMode = [[currentWeaponMode]] [[gunner]] [[vehicle]] [[player]];</code> | |x2= <code> _weaponMode = [[currentWeaponMode]] [[gunner]] [[vehicle]] [[player]];</code> |
Revision as of 10:34, 10 June 2021
Description
- Description:
- Description needed
- Groups:
- Weapons
Syntax
- Syntax:
- Syntax needed
- Parameters:
- gunner: Object
- Return Value:
- String
Examples
- Example 1:
_weaponMode = currentWeaponMode player;
- Example 2:
_weaponMode = currentWeaponMode gunner vehicle player;
Additional Information
- See also:
- See also needed
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 September 27, 2014 - 18:20 (UTC)
- Pierre MGI
-
- Be careful using this in script. This function returns these strings but also:
- 0 if unit is in a vehicle (pax),
- absolutely nothing if AH-99 helo driver or all weapons removed,
- "truckhorn2" if Hunter driver...
Absolutely nothing means: if you use a hint to display the returned value, you obtain absolutely no text,no black box, no error! Hint isn't displayed and there is no error in rpt file with compile preprocessFileLineNumbers. On the other hand, returned value 0 when unit is pax of a vehicle, could lead to a variable error type if your script is waiting for a string.