How do I create a keybinding to select all idle engineers onscreen except the ACU?
Looking through game.prefs I've manged to get this far
select_all_idle_eng_onscreen = {
order = 18,
action = 'UI_SelectByCategory +inview +idle ENGINEER',
category = 'selection'
},
Which selects all idle engineers onscreen, but I don't see any way to filter out the ACU from the list, this doesn't work:
action = 'UI_SelectByCategory +inview +idle ENGINEER TECH1 TECH2 TECH3',
..and neither does this:
action = 'UI_SelectByCategory +excludeacu +inview +idle ENGINEER',