Decryption
To decrypt the contents of the src folder:
- Download the extraction script:
unfuck.exeandunfuck.rs. (add download link) - Place them in the game's root folder (next to
Game.exe) and run the executable. - The
srcfolder will have the decrypted files alongside the originals.
| Encrypted | Decrypted | Contents |
|---|---|---|
| .dml | .xml | XML file. Open with Notepad. |
| .dsv | .csv | Spreadsheet file. Open with Excel. |
| .dx | .tx | Unity texture. Open with UABE. |
| .dxt | .txt | Text file. Open with Notepad. |
| .dwf | .swf | Shockwave Flash file. Open with JPEXS. |
The unfuck script does the following:
- Decrypting
.dwf(into.swf)- Read them as a byte array
- Then do the following to the first 100 bytes:
bytes[i] ^ i * 28(Whereiis the index)
- Save it as a file again and it should open fine in c or whatever software you use
- Decrypting
.dsv(into.csv)- Same as above, except do it for all bytes (not just the first 100)
- When importing the csv, it’s just semicolon separators as normal