Scripts and tools to help generate content for the unofficial Rotwood wiki hosted on wiki.gg.
The wikiggutil
script is used to generate formatted data from game content, you can run it straight from the in-game console and there's no need to install a Lua interpreter separately.
If you've patched your modloader, you can install the mod provided in src/
to automatically add wikiggutil
to GLOBAL
.
- Make sure you're using extracted scripts (see here).
- Copy
src/wikigg-automated/scripts/wikiggutil.lua
todata/scripts/
. - Copy
src/wikigg-automated/scripts/tools/upvaluehacker.lua
todata/scripts/tools
(create thetools/
directory yourself). - Launch Rotwood with the
-enable_debug_console
command line flag (Right click on Rotwood in your Steam library and go to Properties). - Hit ` to open the in-game console.
- Run
wikiggutil = require "wikiggutil"
to load the script.
You will run these commands in the in-game console, the result will be copied to clipboard.
Example: table of all obtainable Powers.
imgui:SetClipboardText(wikiggutil.Wikitext.PowersTable())
Example: table of all obtainable Gems.
imgui:SetClipboardText(wikiggutil.Wikitext.GemsTable())
See wikiggutil.lua
for more details.