Total War: WARHAMMER III

Total War: WARHAMMER III

Mod Configuration Tool - v0.9 Beta
Showing 11-20 of 21 entries
< 1  2  3 >
Update: Feb 18, 2023 @ 9:29pm

Hotfix
- Fix a function typo: get_default_setings_page() -> get_default_settings_page()

Update: Feb 18, 2023 @ 1:46pm

- Remove testing stuff.

Update: Feb 18, 2023 @ 1:43pm

MCT v0.9 Warmfix
- Pressed the update button so people can stop asking if it works with 2.4 <3
- Moved the number label on the notifications button to the bottom right so it doesn't lose its head/neck region
- MCT keys can now include hyphens, rejoice!
- MCT Mods can store arbitrary, non-settings-related data between game sessions and saves. Useful for carrying large amounts of detail from the frontend into a campaign, or persisting information between saves (ie. "has this mechanic been interacted with, has this character been unlocked", whatever!)
-- mct_mod:set_userdata(table_to_save) -> save a full table.
-- mct_mod:get_userdata() -> get said table.
-- mct_mod:clear_userdata() -> wipe it
-- mct_mod:set_userdata_kv(k, v) -> set a single field inside the table, to not overwrite the entire thing
-- mct_mod:get_userdata_kv(k) -> get a single field inside the table
-- You will have to use mct:get_registry():save() after setting any userdata to force a save of the file immediately.
- MCT remembers the last page selected and the open/close status of all the pages, and it will only automatically close a mod's settings rows if they were automatically opened.
- The Default Settings Page can be replaced or killed.
-- mct_mod:set_default_settings_page(page) -> replace the default page with another
-- mct_settings_page:remove() -> kill an existing page. Cannot be used on the current default page, so you have to replace it first.
- Fixed a bug with locked sliders being kinda editable.
- Fixed a bug with campaign settings being unreadable during campaign battles.
- Fixed a bug with text on main pages being blank (ie. "Current version: "). If there's nothing to show, those rows won't be created.
- Fixed invisible icons

Update: Feb 14, 2023 @ 9:21pm

Hotfix
- Fix a silly edge-case crash on loading campaigns.

Update: Feb 13, 2023 @ 9:56am

Hotfix / Patch:
- Added a new "Radio Button" option, which acts kinda-sorta like a checkbox and a dropdown got married. You've seen 'em before - you have 2-6 options, and you can only select one of them. They look best on 1-2 column settings pages, don't use them on 3 column settings pages yet.
- Fixed several issues reported by @paperpancake5: https://github.com/chadvandy/van_mct/issues/352 https://github.com/chadvandy/van_mct/issues/353 https://github.com/chadvandy/van_mct/issues/354
- The MCT option for "game logging" will be disabled and ignored if you already have game logging enabled through an external means (ie., you have the Script Debug Activator enabled or some such).
- Default new settings pages to 2 columns instead of 3 because of how strange 3-columns has a tendency to look

Update: Feb 7, 2023 @ 6:02am

Another One:
- Added an Expand/Collapse All Rows button for mod rows, so it's easier to get to specific settings pages without clicking through a bunch of other stuff
- Enabled MCT options for enabling/disabling logging for MCT and the base game
- Removed some testing components

Update: Feb 6, 2023 @ 6:12pm

Hotfix 3
- Campaign-specific settings now behave properly. The values set in the main menu will stay until the next time you change them in the main menu, and will be "applied" to the next campaign you create. Changing campaign-specific settings in a campaign only changes them in that campaign. Hence the name. Changing global settings changes their value everywhere. Hence the name!
- Added some UX (icons and tooltips on the options and on the topbar) explaining the above. It's a little brute, but it gets the job done.

Update: Feb 4, 2023 @ 7:27am

Hotfix 2

- The Error popup now shows the full filename of the mod that failed to load, and can fit more text in it.
- The Steam link button for MCT in-game now targets the proper version of MCT, hehe

Update: Feb 4, 2023 @ 5:52am

Hotfix - settings are saved properly. Oops.

Update: Feb 3, 2023 @ 2:29pm