- Jul 8, 2018
- 11
- 10
What is a TAD file?
So far I haven't been able to figure out which engine is responsible for storing their files in TAD formatting.
I made this script to extract data from the TAD files in this game.
What makes up a TAD file?
The header of the TAD uses
0x20 0x71
as a delimiter.The first few bytes before the delimiter above tells us how many files there are in the TAD file.
The following bytes separated by the delimiter corresponds to the filesize (in bytes) for each of the files in the TAD file.
The rest of the bytes in the TAD file are the binary contents of the files within the TAD file.
So this is the simplest TAD file:
Code:
Files | Delimiter | Size | Delimiter | Data
0x31 | 0x20 0x71 | 0x30 | 0x20 0x71 | 0x00
Updates and Source Code
You must be registered to see the links
and any updates and issues should be posted on there.
Last edited: