What's new

SIM [ アリバイ] 赤ずきんと白雪姫 RJ210337


JustLurksHere

Jungle Girl
Joined
Oct 28, 2016
Messages
558
Reputation score
45
Does anyone know how to extract images from the game's .tad archives? I really like the wallpaper that's unlocked after beating Snow White's story mode.
The "format" is nearly trivial: as the containers don't store any metadata, it's just:
Code:
- read first line (format: '%s q') : number of files inside as a string
- read number_of_files lines (format: as above): size of each file
- split the rest of the file in chunks of the sizes you've just read (in the exact order)
Should take about 40 lines in python - that's how much it took me with my severely wanting python skills.
 
Top