- Oct 20, 2017
- 639
- 711
To use in game, Backup remove archive.rpa from the game directory, then replace with the one from the
You must be registered to see the links
. Recreated/updated are images. there are about 1500 images in total, most were updated though not all. Some were hard to regenerate, for some the original is just fine and then I missed some because they were not tagged and recreated (were missing), when AI does not 'understands' the picture. Some have the typical AI artifacts, some fixed.
Above images were not included as such, Some of the unfixable are in untouched_remain.zip, with below, in Linux, images (rpatool) and scripts (unrpyc) can be extracted. Some of my images above have ComfyUI worksheets (for the AI generation) in the metadata.
Bash:
#!/bin/bash
cd game
find -name "*.rpa" -exec /path/to/rpatool -x '{}' \;
find -name "*.rpyc" | while read f; do [ -e "${f%c}" ] || { echo "$f"; /path/to/unrpyc.py "$f";}; done
Last edited: