Total War: WARHAMMER III

Total War: WARHAMMER III

Attack Move and Countercharge (WH3)
paperpancake  [developer] 18 Mar, 2023 @ 12:16pm
Technical Compatibility Details
Two things could make your mod incompatibile with this one. The first might surprise you!
  1. Mods should never use battle object[chadvandy.github.io] handlers or listeners directly (for phases, for commands, for selections, etc). Only one of those handlers is allowed at a time, so that prevents your mod from working when the game already has a handler, like during quest battles, and it stops other mods from working. Please play nice with other mods and instead use the callbacks in the battle_manager[chadvandy.github.io].

  2. Giving units to multiple different Unitcontroller[chadvandy.github.io] objects at the same time can cause some or all of them to glitch. This mod uses Unitcontrollers, and it's still compatible with the Unitcontrollers in my other mods because they release the units when the other asks for them. They do this by registering with object I made up called modder_API_uc_manager. Other mods can use it as well. Please contact me if you have questions.