Total War: WARHAMMER III
Modding Development Tools: Lua Console!
Εμφάνιση 1-8 από 8 καταχωρίσεις
Ενημέρωση: 7 Σεπ 2022 στις 16:57

Update with proper clipboard support!

Ενημέρωση: 21 Απρ 2022 στις 17:50

Ενημέρωση: 18 Απρ 2022 στις 14:10

Copy/paste support added! You can paste directly from your clipboard using the new Paste button; using the "Copy" button, a new file is created in your WH3 folder called "lua_console_code.lua" with all the console contents, due to a current standing issue with copying to clipboard.

Ενημέρωση: 17 Απρ 2022 στις 11:27

Added in a scrollbar and support to add lines (to a maximum of 90) or remove lines (to a minimum of 5).
Removed the dumb new line on the print box thing.

Ενημέρωση: 15 Απρ 2022 στις 14:19

Added in the global functions `t_set(table, index, value)` and `t_get(table, index)` as a workaround for the current bug where you can't use the [] keys in the Lua Console. Therefore, instead of doing `table[index] = value` you have to do `t_set(table, index, value)`, and instead of `local value = table[index]` you have to do `local value = t_get(table, index)`.

Enjoy!

Ενημέρωση: 11 Απρ 2022 στις 13:49

fix a dumb, oops!

Ενημέρωση: 11 Απρ 2022 στις 12:57

Hotfix to make the Console work in battle, oops!

Ενημέρωση: 9 Απρ 2022 στις 11:02

Initial release.