Extract "Big Fish Games Studios" file.

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
antalindor
Posts: 2
Joined: Sun Oct 03, 2021 4:42 pm

Extract "Big Fish Games Studios" file.

Post by antalindor »

Hi! I need help.
I trying to extracting file "data.pak" from "Drawn: The Painted Tower" with .quickbms script (Bigfishgames81.bms) and Raviolli.
And I got an error
- signature of 4 bytes at offset 0x00000000 doesn't match the one expected by the script: this one: "BASP" 42 41 53 50 BASP expected: "bfg 62 66 67 81 bfg. - 0 files found in 0 seconds coverage file 0 0% 4 633825243

file
sorry for my bad english. i'm from russia
Ekey
Posts: 1383
Joined: Sat Aug 09, 2014 2:34 pm

Re: Extract "Big Fish Games Studios" file.

Post by Ekey »

Code: Select all

# Drawn: The Painted Tower (PAK) format
# script for QuickBMS http://quickbms.aluigi.org

idstring "BASPACK"
get TABLE_OFFSET long
get FILES long
math FILES >>= 6
goto TABLE_OFFSET

for i = 1 < FILES
   getdstring NAME 255
   get OFFSET long
   get SIZE long
   filexor "0x37"
   log NAME OFFSET SIZE
   filexor ""
next i
antalindor
Posts: 2
Joined: Sun Oct 03, 2021 4:42 pm

Re: Extract "Big Fish Games Studios" file.

Post by antalindor »

Thanks! Working