setGroupId: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - "|game2= arma " to "|game2= arma1 ") |
m (Text replacement - "|game4= arma2oa |version4= 1.55 |game5= tkoh |version5= 1.00" to "|game4= arma2oa |version4= 1.51 |game5= tkoh |version5= 1.00") |
||
Line 15: | Line 15: | ||
|game4= arma2oa | |game4= arma2oa | ||
|version4= 1. | |version4= 1.51 | ||
|game5= tkoh | |game5= tkoh |
Revision as of 17:09, 1 March 2021
Description
- Description:
- Sets the group radio callsign, how it will be displayed in radio chat. Two groups on the same side cannot have the same callsign (different side is possible). When trying to apply the same callsign to two groups of the same side, the callsigns will simply be swapped, e.g:
group1 setGroupId ["Active Group"]; group2 setGroupId ["Inactive Group"]; group2 setGroupId ["Active Group"]; // group1 is "Inactive Group" now
The identity setup can also consist of format keywords (marked with %) and param keywords taken from CfgWorlds config. Basically it is like format command but with some special group keywords (See Example 2). - Multiplayer:
- For the global variant of this command see setGroupIdGlobal.
- Groups:
- Groups
Syntax
- Syntax:
- group setGroupId [nameFormat, nameParam1, ..., nameParamN]
- Parameters:
- group: Object or Group
- [nameFormat, nameParam1, ..., nameParamN]: Array
- nameFormat: String - format template (%keyword1 - %keyword2...etc)
- nameParam1: String - param keyword
- Return Value:
- Nothing
Examples
- Example 1:
- Arma 3:
group player setGroupId ["Some name for the group"]; hint groupId group player; // "Some name for the group" player sideChat "lalala"; // Some name for the group (KK): "lalala"
- Example 2:
- Arma 3:
group player setGroupId ["%GroupNames :=: %GroupColors", "Alpha", "GroupColor2"]; hint groupId group player; // "Alpha :=: Red" player sideChat "lalala"; // Alpha :=: Red (KK): "lalala"
- Example 3:
- Armed Assault / Arma 2 / Arma 3:
_group1 setGroupId ["Assault Squad"];
- Example 4:
- Operation Flashpoint:
_group1 setGroupId ["Delta", "GroupColor4"]
Additional Information
- See also:
- setGroupIdGlobalgroupIdgroup
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 April 21, 2015 - 23:21 (UTC)
- Killzone Kid
-
List of available keywords from config:
"if ((configName _x) select [0, 5] == 'group') then { diag_log ('%' + configName _x); for '_i' from 0 to count _x - 1 do { diag_log ('* ""' + configName (_x select _i) + '"" → ' + getText ((_x select _i) >> 'name')); }; }; false" configClasses (configFile >> "CfgWorlds");
Categories:
- Scripting Commands
- Introduced with Operation Flashpoint version 1.00
- Operation Flashpoint: New Scripting Commands
- Operation Flashpoint: Scripting Commands
- ArmA: Armed Assault: Scripting Commands
- Arma 2: Scripting Commands
- Arma 2: Operation Arrowhead: Scripting Commands
- Take On Helicopters: Scripting Commands
- Arma 3: Scripting Commands
- Command Group: Groups
- Scripting Commands: Local Effect
- Scripting Commands OFP 1.46
- Scripting Commands OFP 1.96
- Scripting Commands OFP 1.99