The Forum is up for sale: XeNTaX Forum looking for new owner

how to extract .fpg file - SSF2 Turbo Hd Remix ?

The Original Forum. Game archives, full of resources. How to open them? Get help here.
Post Reply
hsb083
ultra-n00b
Posts: 2
Joined: Wed Jan 02, 2013 10:49 pm

how to extract .fpg file - SSF2 Turbo Hd Remix ?

Post by hsb083 »

Sorry if this has been asked before, I'm new
I want to extract this archive
when I try to to extract the flog_ps3.fpg archive i get "QBMS: failed to produce list"
I used this script

Code: Select all

# extracts contents of FPG archives
#
# supported games:
# - Super Puzzle Fighter II Turbo - HD Remix (XBLA)
# - Super Street Fighter II Turbo - HD Remix (XBLA)
#
# (c) 2012-04-04 by AlphaTwentyThree of XeNTaX

include "func_getTYPE.bms"
idstring "30GF"
get FILES long
goto 0x800
for i = 1 <= FILES
   get NAME_CRC long
   string NAME_CRC p= "%08x" NAME_CRC
   get OFFSET long
   get SIZE long
   get ZSIZE long
   if SIZE == ZSIZE
      putVarChr MEMORY_FILE SIZE 0
      log MEMORY_FILE 0 0
      log MEMORY_FILE OFFSET SIZE
   else
      putVarChr MEMORY_FILE ZSIZE 0
      log MEMORY_FILE 0 0
      clog MEMORY_FILE OFFSET SIZE ZSIZE
      set SIZE ZSIZE
   endif
   callfunction getTYPE 1
   if ZNAME != ""
      set NAME ZNAME
   else
      get NAME basename
      string NAME += "_0x"
      string NAME += NAME_CRC
   endif
   string NAME += EXT
   log NAME 0 SIZE MEMORY_FILE
next i
where can i find func_getTYPE.bms that will work with this
archive ?
sorry noobness
any help is appreciated
thanks :)
Polefish
veteran
Posts: 94
Joined: Sat Jun 20, 2009 1:47 pm
Has thanked: 16 times
Been thanked: 13 times

Re: how to extract .fpg file - SSF2 Turbo Hd Remix ?

Post by Polefish »

hsb083
ultra-n00b
Posts: 2
Joined: Wed Jan 02, 2013 10:49 pm

Re: how to extract .fpg file - SSF2 Turbo Hd Remix ?

Post by hsb083 »

thanks for the link
I tried running the script through quickbms directly-- when I extract
I get 6000 + small files with numbers for extensions
for example "flog_ps3_0x000d97e4.53473238" or
"flog_ps3_0x0b689cd2.53473238"
I dont think it extracted right
Anyone know how to extract with 3 letter extensions ?
when I try to to extract in multiex commander I still get
"QBMS: failed to produce list!"
Any ideas ?
Post Reply