Tool for exporting Growtopia's items.dat file to other formats.
Simply run the itemsdat-export.py wrapper script:
python itemsdat-export.py <path to items.dat> [options]Keep in mind that the tool writes exclusively to stdout. If you want to save the output to a file, you must redirect it yourself.
To see all available options, view the help message by running:
python itemsdat-export.py -hYou may install the tool system-wide by running:
pip install .
Once installed, the exporter can be invoked like this:
itemsdat-export <path to items.dat> [options]
This project may be slow to support future items.dat versions. However, you may use the tool's -V and -d flags to
force an export of unsupported versions and diagnose structure changes.
For example, if a future update adds a 4-byte field at the end of an item definition, you can bypass the version check and skip these bytes manually:
python itemsdat-export.py <path to items.dat> -f <format> -V -d 4PRs that introduce support for new versions are always appreciated.
This tool was largely made possible by the reverse-engineering work provided by Cernodile.