CueSports Pool Revolution .bin Files

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
Larsenv
Posts: 137
Joined: Thu Jun 04, 2015 11:20 pm

CueSports Pool Revolution .bin Files

Post by Larsenv »

ThatTrueStruggle
Posts: 20
Joined: Tue Nov 17, 2015 12:11 am

Re: CueSports Pool Revolution .bin Files

Post by ThatTrueStruggle »

Code: Select all

endian big
comtype COMP_UNZIP_DYNAMIC
get fileCount long
for i = 0 < fileCount
   get offsets[i] long
next i

xmath trueCount "fileCount - 1"
for i = 0 < trueCount
   if i == trueCount
      math Offset = offsets[i]
      math Offset + 0x10
      get FileSize asize
      xmath FinalSize "FileSize - Offset"
      clog "" Offset FinalSize FinalSize
   endif
   math Offset = offsets[i]
   math Offset + 0x10
   math i + 1
   math Size = offsets[i]
   math Size + 0x10
   xmath TrueSize "Size - Offset"
   math i - 1
   clog "" Offset TrueSize TrueSize
next i