Page MenuHomeFeedback Tracker

High Command: "setGroupIconParams" only works momentarily. However it works without the High Command module loaded. But its under "High Command" in documentation?
New, NormalPublic

Description

setGroupIconParams

this only works momentarily if you have the High Command module or the Military Symbols (MartaManager) modules loaded..
Those two modules overwrite setGroupIconParams.

Which is kind of silly, because setGroupIconParams is under the "High Command" section in the Bohemia documentation....

Tested with the latest "profiling" Arma 3 in High Command mode. No mods at all.

https://community.bistudio.com/wiki/setGroupIconParams

if you don't have the Military Symbols module or the High Command module loaded, then setGroupIconParams works fine.

Details

Severity
Feature
Resolution
Open
Reproducibility
Always
Operating System
Windows 11 x64
Category
Ingame UI
Steps To Reproduce

in Eden editor set up a High Command test. Only need to test on your own group.

Then play mission, and go into High Command mode.

Then in debug console, just put:

[] spawn {
sleep 3;
(group player) setGroupIconParams [[0.9,0,0,1], "", 1, false, true];
};

open map, and wait 3 seconds. You will see its only a momentary change.

Event Timeline

bendy303 created this task.Mar 15 2025, 4:55 AM
bendy303 edited Steps To Reproduce. (Show Details)
bendy303 updated the task description. (Show Details)Wed, Mar 19, 1:27 AM
bendy303 renamed this task from High Command: "setGroupIconParams" only works momentarily to High Command: "setGroupIconParams" only works momentarily. However it works without the High Command module loaded. But its under "High Command" in documentation?.Wed, Mar 19, 1:30 AM
bendy303 updated the task description. (Show Details)
bendy303 updated the task description. (Show Details)Thu, Mar 20, 2:17 AM
Leopard20 added a subscriber: Leopard20.EditedThu, Mar 20, 7:50 AM

However it works without the High Command module loaded

This means that the High Command module uses this command internally.

Which is kind of silly, because setGroupIconParams is under the "High Command" section in the Bohemia documentation....

Well modules are just scripts. If you don't want this behavior, you can edit the script and make it not do setGroupIconParams for groups you want to modify yourself (e.g. wrap it in an if that checks a variable on the group)