Important information: this site is currently scheduled to go offline indefinitely by end of the year.

Search found 6 matches

by Harime Nui
Thu Nov 12, 2015 8:53 pm
Forum: Savegames
Topic: Witcher 3 save files
Replies: 7
Views: 12869

Re: Witcher 3 save files

Still trying to figure out the save file itself. To me it looks like some kind of binary XML file?

Maybe someone knows in which file format they are saved?
by Harime Nui
Sun Nov 01, 2015 10:05 am
Forum: Savegames
Topic: Witcher 3 save files
Replies: 7
Views: 12869

Re: Witcher 3 save files

I was assuming that it was using LZO1X, but if it works, good job! I just used this https://github.com/Cyan4973/lz4/releases/tag/r131 library on every part for uncompressing and compressing on default settings, and it worked without any problems. As far as I can see it calls itself LZ4, but there a...
by Harime Nui
Sat Oct 31, 2015 10:51 pm
Forum: Savegames
Topic: Witcher 3 save files
Replies: 7
Views: 12869

Re: Witcher 3 save files

Yes, my assumption with the checksum was wrong, it is just the file length in byte of the uncompressed file. It is also not an archive which holds multiple files, but it is one file which gets split into 1048576 byte long parts. Every part then gets compressed with lz4 ( https://code.google.com/p/lz...
by Harime Nui
Sun Oct 18, 2015 9:36 pm
Forum: Savegames
Topic: Witcher 3 save files
Replies: 7
Views: 12869

Witcher 3 save files

I am trying to unpack and pack a Witcher 3 savefile, which is a archive containing multiple files. Unpacking works pretty well, but with packing I have problems, because there seems to be a checksum which needs to be recalculated. I tried several different algorithms, like adler and crc, but I just ...
by Harime Nui
Mon Oct 13, 2014 10:42 pm
Forum: Graphic file formats
Topic: Need help with .txf
Replies: 1
Views: 1284

Re: Need help with .txf

I found out!
I compared the file to the Half Life 2 textures and noticed it was the same (you could copy the header and it would open in HL2).
So the compression is DXT.
http://de.wikipedia.org/wiki/S3_Texture_Compression
by Harime Nui
Sat Oct 11, 2014 1:33 am
Forum: Graphic file formats
Topic: Need help with .txf
Replies: 1
Views: 1284

Need help with .txf

Hi everyone, I am trying to open a .txf image file form the game Disgaea D2. Sadly I got stuck, because the image seems to be compressed somehow. I tried to read every column into a separate image and got some strange results. Only the image 9 and 11 are recognizable. The rest is very fuzzy, but you...