An old game StoneAge (.bin)

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
zhiqieou
Posts: 9
Joined: Tue Jun 07, 2022 4:04 am

An old game StoneAge (.bin)

Post by zhiqieou »

Its files are arranged like this

adrn.bin
real.bin
spr.bin
spradrn.bin

I tried every tool I had.There's nothing I can do about it. Can anyone take a look.

https://drive.google.com/file/d/1QuH8tn ... sp=sharing
Pickle
Posts: 9
Joined: Thu Jul 14, 2022 6:24 pm

Re: An old game StoneAge (.bin)

Post by Pickle »

adrn.bin is an index file for real.bin; you read the fileOffset and fileLength from adrn.bin and use them to get the file data from real.bin. The other two files have no obvious purpose or file structure.

Code: Select all

adrn.bin { // each file entry is 80 bytes
   ULONG fileNumber;
   ULONG fileOffset;
   ULONG fileLength;
   
   ULONG unknown_1;
   ULONG unknown_2;
   ULONG unknown_3;
   ULONG unknown_4;
   ULONG unknown_5;
   ULONG unknown_6;
   
   ULONG[22] nullPad;
}