A relatively obscure title, but one I do enjoy. I was wanting to utilize the sprites for a projects. Can anyone figure out how to extract them?
https://www.dropbox.com/s/ukja561vdz6nrw0/BossMonster.zip?dl=0
Boss Monster PC (*.wpk)
-
- Posts: 706
- Joined: Fri Aug 08, 2014 1:06 am
Re: Boss Monster PC (*.wpk)
decompress them first with this bms script
then use this Noesis python script to open the images
supports dxt5 and rgba8888
Code: Select all
# script for QuickBMS http://aluigi.altervista.org/quickbms.htm
comtype gzip
get NAME basename
get EXT extension
string NAME + _decmp.
string NAME + EXT
idstring "WPK\0"
get CHECK byte
if CHECK == 0x30
goto 0x36
elif CHECK == 0x32
goto 0x38
endif
savepos OFFSET
get ZSIZE asize
math ZSIZE - OFFSET
clog NAME OFFSET ZSIZE ZSIZE
then use this Noesis python script to open the images
supports dxt5 and rgba8888