10-21-2014, 12:44 AM
I made a QuickBMS script to extract all the files:
It extracts them with the .bmp extension, as that's what the names have, but obviously they won't open in the default viewer. It probably makes it easier to analyse individual files though.
@RaccoonSam: Are there any other settings I need to set in Tile Molester to find these? I've done 8bpp but I'm not getting anything like that at the address you specified.
Code:
# Super Bubsy .fst format
#
# Written by puggsoy
# script for QuickBMS http://quickbms.aluigi.org
get FILES long
math FILES -= 1
for i = 0 < FILES
savepos POS
get OFFSET long
getct NAME string 0x00
set SIZEPOS OFFSET
math SIZEPOS += 4
goto SIZEPOS
get SIZE short
math SIZE += 8
math POS += 17
goto POS
log NAME OFFSET SIZE
next i
It extracts them with the .bmp extension, as that's what the names have, but obviously they won't open in the default viewer. It probably makes it easier to analyse individual files though.
@RaccoonSam: Are there any other settings I need to set in Tile Molester to find these? I've done 8bpp but I'm not getting anything like that at the address you specified.