
Originally Posted by
Stuie
No - something else. If/when I get it to work I'll report back.

Coming back to this now that the most current beta version of TFT is public, I figured out how to *mostly* force automerge units - I'm sure people will find work-arounds but whatever.
Here's the code - obviously needed for every faction playable:
Code:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;; AUTOMERGE UNITS CODE ;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
monitor_event CharacterSelected FactionType romans_brutii
and FactionIsLocal
call_object_shortcut campaign_hud automerge_units
end_monitor
monitor_event SettlementSelected FactionType romans_brutii
and FactionIsLocal
call_object_shortcut campaign_hud automerge_units
end_monitor
monitor_event CharacterSelected FactionType gauls
and FactionIsLocal
call_object_shortcut campaign_hud automerge_units
end_monitor
monitor_event SettlementSelected FactionType gauls
and FactionIsLocal
call_object_shortcut campaign_hud automerge_units
end_monitor
etc.
Bookmarks