onHCGroupSelectionChanged: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - " \| *(game[0-9]|version[0-9]|gr[0-9]|serverExec|mp|pr|descr|s[0-9]|p[0-9]{1,3}|r[0-9]|x1?[0-9]|seealso) *= +" to " |$1= ") |
Lou Montana (talk | contribs) m (Text replacement - "\|s([0-9])\= '''([^' ]+)'''([^ ]+) " to "|s$1= $2$3 ") |
||
Line 27: | Line 27: | ||
{{Feature|Informative|Since '''Arma 3''' ''v1.57'' a stackable version of this EH is available: [[Arma 3: Mission Event Handlers#HCGroupSelectionChanged|HCGroupSelectionChanged]]}} | {{Feature|Informative|Since '''Arma 3''' ''v1.57'' a stackable version of this EH is available: [[Arma 3: Mission Event Handlers#HCGroupSelectionChanged|HCGroupSelectionChanged]]}} | ||
|s1= | |s1= [[onHCGroupSelectionChanged]] command | ||
|p1= command: [[String]] or [[Code]] | |p1= command: [[String]] or [[Code]] |
Revision as of 17:11, 20 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
- Syntax:
- onHCGroupSelectionChanged command
- Parameters:
- command: String or Code
- Return Value:
- Nothing
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