Important information: this site is currently scheduled to go offline indefinitely by end of the year.

Dissidia Final Fantasy. LBA help

Coders and would-be coders alike, this is the place to talk about programming.
Post Reply
User avatar
Xino
n00b
Posts: 15
Joined: Sat Dec 20, 2008 6:26 pm
Location: Spain

Dissidia Final Fantasy. LBA help

Post by Xino »

Hey there. I want to extract the files from the Munge file "PACKAGE.BIN" from Dissidia FF (PSP)
The LBA is in another file called "PACKAGE_INFO.BIN" but i can´t find the structure...

I uploaded both files. Munge file splitted into two 5 Mb parts, one for Begin of file and one for end.

Code: Select all

http://www.mediafire.com/?0ogxpndqz3o
Any help will be appreciated.
ImageImage
MysterySword
ultra-n00b
Posts: 4
Joined: Wed Dec 24, 2008 8:39 pm

Re: Dissidia Final Fantasy. LBA help

Post by MysterySword »

Hmm... what are you trying to do, extract the files from Dissidia? If so, I have an extractor for that...
User avatar
Xino
n00b
Posts: 15
Joined: Sat Dec 20, 2008 6:26 pm
Location: Spain

Re: Dissidia Final Fantasy. LBA help

Post by Xino »

MysterySword wrote:Hmm... what are you trying to do, extract the files from Dissidia? If so, I have an extractor for that...
Yep. I´m looking for a ext/reb tool. Better for me to understand the LBA structure itself. The only value i founded is the size of LBA file (blue marked)

Image
ImageImage
MysterySword
ultra-n00b
Posts: 4
Joined: Wed Dec 24, 2008 8:39 pm

Re: Dissidia Final Fantasy. LBA help

Post by MysterySword »

Here's the extractor (coded by someone from EndlessParadigm):

http://endlessparadigm.com/forum/attach ... p?aid=2437

There are some unusual formats within package.bin. The GIM files are the images (character icons and tip images). The ARC and PAK files are like ZIP files (and I've heard they contain images). The GMO files are the text files, I believe, but I can't open them correctly (I think GNU gettext can, but I don't know how to use that).
User avatar
Xino
n00b
Posts: 15
Joined: Sat Dec 20, 2008 6:26 pm
Location: Spain

Re: Dissidia Final Fantasy. LBA help

Post by Xino »

Thanks. I think the LBA is encrypted, so the values cant match with the BIN files offsets....
ImageImage
Vash
mega-veteran
mega-veteran
Posts: 183
Joined: Fri Apr 29, 2005 2:39 pm
Has thanked: 5 times
Been thanked: 26 times

Re: Dissidia Final Fantasy. LBA help

Post by Vash »

Here you are some tools of MINE:

Arc Extractor v0.91: Download
Package.Bin Extractor v0.5 : Download
Mpk Extractor v0.9: Download

the extractor made by that guy is just mine, not even renamed. The file name and extensions are the same (I invented them studying each file header), the readme structure is the same, an error with file extensions is still there (pmf instead of sfo). He just changed from "by Vash v0.5 -www.romhacking.it-" to "by Kratosjohn -". I hate those kind of people.
MysterySword
ultra-n00b
Posts: 4
Joined: Wed Dec 24, 2008 8:39 pm

Re: Dissidia Final Fantasy. LBA help

Post by MysterySword »

The ARC and MPK extractors need to be run from command prompt, right?

How is that done?
Vash
mega-veteran
mega-veteran
Posts: 183
Joined: Fri Apr 29, 2005 2:39 pm
Has thanked: 5 times
Been thanked: 26 times

Re: Dissidia Final Fantasy. LBA help

Post by Vash »

yes, they're in command line.

mpkextr file.mpk or for %%i in (*.mpk) do mpkextr "%%i" for multiple files

arcextr file.arc or for %%i in (*.arc) do arcextr "%%i" for multiple files
MysterySword
ultra-n00b
Posts: 4
Joined: Wed Dec 24, 2008 8:39 pm

Re: Dissidia Final Fantasy. LBA help

Post by MysterySword »

Thanks!

I extracted the MPK and ARC files and looked around. Any way to extract the PAK files?

EDIT: Nevermind, I don't need it anymore...
safersephiroth
ultra-n00b
Posts: 1
Joined: Thu Mar 05, 2009 7:26 am

Re: Dissidia Final Fantasy. LBA help

Post by safersephiroth »

Hi there,

Is there a tool to compile extracted data from Package.Bin because most of the tools available so far are for extraction only?
amandak695
ultra-n00b
Posts: 1
Joined: Wed Oct 06, 2010 2:59 am

Re: Dissidia Final Fantasy. LBA help

Post by amandak695 »

Xino wrote:Hey there. I want to extract the files from the Munge file "PACKAGE.BIN" from Dissidia FF (PSP)
The LBA is in another file called "PACKAGE_INFO.BIN" but i can´t find the structure...

I uploaded both files. Munge file splitted into two 5 Mb parts, one for Begin of file and one for end.

Code: Select all

http://www.mediafire.com/?0ogxpndqz3o
Any help will be appreciated.
Thanks you for the post.
Post Reply