onHCGroupSelectionChanged: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\| *arma2 * * *\| *([0-1]\.[0-9]{2}) * \|game2" to "|game1= arma2 |version1= $1 |game2") |
Lou Montana (talk | contribs) m (Text replacement - "[[Arma_3:_Event_Handlers/addMissionEventHandler" to "[[Arma 3: Mission Event Handlers") |
||
Line 25: | Line 25: | ||
* removed via <code>[[onHCGroupSelectionChanged]] "";</code> or <code>[[onHCGroupSelectionChanged]] {};</code> | * removed via <code>[[onHCGroupSelectionChanged]] "";</code> or <code>[[onHCGroupSelectionChanged]] {};</code> | ||
* or replaced by <code>[[onHCGroupSelectionChanged]] "SomeOtherCommand(s)";</code> or <code>[[onHCGroupSelectionChanged]] {SomeOtherCommand(s)};</code> | * or replaced by <code>[[onHCGroupSelectionChanged]] "SomeOtherCommand(s)";</code> or <code>[[onHCGroupSelectionChanged]] {SomeOtherCommand(s)};</code> | ||
{{Feature|Informative|Since '''Arma 3''' ''v1.57'' a stackable version of this EH is available: [[ | {{Feature|Informative|Since '''Arma 3''' ''v1.57'' a stackable version of this EH is available: [[Arma 3: Mission Event Handlers#HCGroupSelectionChanged|HCGroupSelectionChanged]]}} | ||
|s1= '''onHCGroupSelectionChanged''' command | |s1= '''onHCGroupSelectionChanged''' command |
Revision as of 10:36, 16 June 2021
Description
- Description:
- Defines an action performed when high command group selection has been changed.
Command receives 2 variables:- _group: Group - last selected/deselected group
- _isSelected: Boolean - new selection state of the specific group
- removed via
onHCGroupSelectionChanged "";
oronHCGroupSelectionChanged {};
- or replaced by
onHCGroupSelectionChanged "SomeOtherCommand(s)";
oronHCGroupSelectionChanged {SomeOtherCommand(s)};
- Groups:
- High CommandEvent Handlers
Syntax
Examples
- Example 1:
onHCGroupSelectionChanged { if (_isSelected) then { hint format ["Group %1 has been selected.", _group]; } else { hint format ["Group %1 has been deselected.", _group]; }; };
- Example 2:
onHCGroupSelectionChanged "player globalChat 'HC group selection has been changed.';";
Additional Information
- See also:
- High CommandhcAllGroupshcGroupParamshcLeaderhcRemoveAllGroupshcRemoveGrouphcSelectedhcSelectGrouphcSetGrouphcShowBarhcShownBaronCommandModeChanged
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