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

Dark Souls 2 file formats

The Original Forum. Game archives, full of resources. How to open them? Get help here.
nyxo
advanced
Posts: 68
Joined: Sun Jan 06, 2013 3:54 am
Been thanked: 18 times
Contact:

Dark Souls 2 file formats

Post by nyxo »

I'd like to get a head start on the dark souls 2 file formats, so I can hopefully have some support for it in DSMODT when Dark Souls 2 is released in March, or shortly thereafter~

So I've gotten into the network test, and am downloading the client right now-- however, I haven't a clue on how to get these files off of my PS3 (and I'm fairly confident I don't have the hardware for it anyways >_<) so in addition to using this thread to discuss these formats, I'd also like to hear from some of the others who are in the network test, about getting some files to work with.

I can't wait to work with the dark souls 2 files! ^_^
~Nyxo~
||| Twitter ||| Youtube |||
Rick
Moderator
Posts: 388
Joined: Tue Aug 09, 2005 10:10 pm
Been thanked: 84 times
Contact:

Re: Dark Souls 2 file formats

Post by Rick »

To answer your question,
  1. Get some sort of way to log your PS3 network activity.
  2. Start (or unpause) the client download.
  3. Sniff the URL it grabs for the install package.
  4. Unpack that package for game data using PS3 package unpacking tools.
As for formats, mostly the same as Dark Souls. At least the archives, not looked at models.
https://blog.gib.me/

Don't ask me about localization tools; if you don't have the resources to develop them yourself you don't need them.
nyxo
advanced
Posts: 68
Joined: Sun Jan 06, 2013 3:54 am
Been thanked: 18 times
Contact:

Re: Dark Souls 2 file formats

Post by nyxo »

Hey Rick, thanks for the reply~

I actually managed to get the package onto my computer thanks to somebody else who suggested pretty much exactly the same thing- and have discovered the same thing as you regarding formats. Some minor shuffling of values here and there, but the archives are pretty much the same.

I'd actually wanted to wait until I had some screenshots of models (hopefully in a few days!) before I posted again, but didn't want to put off thanking you for sharing the info~
~Nyxo~
||| Twitter ||| Youtube |||
EcheloCross
veteran
Posts: 88
Joined: Sat Feb 27, 2010 6:57 pm
Has thanked: 40 times
Been thanked: 77 times

Re: Dark Souls 2 file formats

Post by EcheloCross »

A lot of the models extracted using the old Dark Souls 1 script method. Some of the new models have a different amount of parts entries than mesh entries.

Image Image

Image Image

Image Image
User avatar
zaramot
double-veteran
double-veteran
Posts: 783
Joined: Wed Jan 05, 2011 12:41 pm
Has thanked: 39 times
Been thanked: 855 times

Re: Dark Souls 2 file formats

Post by zaramot »

Could you try my apha script with models which aren't working? It's "raw" and unfinished but I want to know will it work or not. Thanks
You do not have the required permissions to view the files attached to this post.
Making model-import scripts, PM
User avatar
zaramot
double-veteran
double-veteran
Posts: 783
Joined: Wed Jan 05, 2011 12:41 pm
Has thanked: 39 times
Been thanked: 855 times

Re: Dark Souls 2 file formats

Post by zaramot »

So guys, 6 downloads - any one could report about Dark Souls 2 models? I tried script with Dark Souls 1 models nicely (I have the game), but didn't have much of DS 2 models.
Making model-import scripts, PM
EcheloCross
veteran
Posts: 88
Joined: Sat Feb 27, 2010 6:57 pm
Has thanked: 40 times
Been thanked: 77 times

Re: Dark Souls 2 file formats

Post by EcheloCross »

zaramot wrote:So guys, 6 downloads - any one could report about Dark Souls 2 models? I tried script with Dark Souls 1 models nicely (I have the game), but didn't have much of DS 2 models.
I tried your script on the Dark Souls 2 Xbox360 .flver files, but they didn't load. I'll try some more tests later today.

After further testing, I changed readshort, readlong, and readfloat to readBEshort, readBElong, and readBEfloat, and the Xbox360 models are loading.
I also had to comment out a part of the bone reading, but it may also have to do with the console version of the files.

Testing on more models currently.

A lot of the models are loading with just those changed.
Last edited by EcheloCross on Fri Apr 25, 2014 5:24 pm, edited 3 times in total.
User avatar
zaramot
double-veteran
double-veteran
Posts: 783
Joined: Wed Jan 05, 2011 12:41 pm
Has thanked: 39 times
Been thanked: 855 times

Re: Dark Souls 2 file formats

Post by zaramot »

Ah, it's for PC version for Xbox-360 use this one

EDIT: Updated Xbox-360 script a bit
You do not have the required permissions to view the files attached to this post.
Last edited by zaramot on Sat Apr 26, 2014 7:02 am, edited 1 time in total.
Making model-import scripts, PM
EcheloCross
veteran
Posts: 88
Joined: Sat Feb 27, 2010 6:57 pm
Has thanked: 40 times
Been thanked: 77 times

Re: Dark Souls 2 file formats

Post by EcheloCross »

zaramot wrote:Ah, it's for PC version for Xbox-360 use this one
It works great. Will test on more models later.
michalss
Moderator
Posts: 954
Joined: Sun Mar 27, 2011 8:42 pm
Has thanked: 10 times
Been thanked: 161 times

Re: Dark Souls 2 file formats

Post by michalss »

zaramot wrote:Ah, it's for PC version for Xbox-360 use this one
Hi Would you be so kind and help with localization of DS2 for X360 and PC ?
Quick BMS Editor GUI - simple easy to use
Goto : viewtopic.php?uid=34229&f=29&t=6797&start=0

Downloads from DropBox : https://dl.dropboxusercontent.com/u/
EcheloCross
veteran
Posts: 88
Joined: Sat Feb 27, 2010 6:57 pm
Has thanked: 40 times
Been thanked: 77 times

Re: Dark Souls 2 file formats

Post by EcheloCross »

The c1000 model is loading a little different between the converted pc script, and the xbox360 script.

The model on the left is the pc script with reversed endianness and bone node info commented out, and the model on the right is the untouched xbox360 script.
I had to move the uvs' around and scale them to get to line up, what I did in the other screen shots was:

Code: Select all

//Scaling
tu = (tu * (8192));
tv = (tv * (8192));

//Flipping
tv = ((tv * (-1)) + 1);
Image Image
User avatar
zaramot
double-veteran
double-veteran
Posts: 783
Joined: Wed Jan 05, 2011 12:41 pm
Has thanked: 39 times
Been thanked: 855 times

Re: Dark Souls 2 file formats

Post by zaramot »

Cool! Thanks for all the testing, I guess I should download Xbox-360 or PC version of Dark Souls 2, or if script will fail for some models, you can upload them and send me via PM?
Making model-import scripts, PM
michalss
Moderator
Posts: 954
Joined: Sun Mar 27, 2011 8:42 pm
Has thanked: 10 times
Been thanked: 161 times

Re: Dark Souls 2 file formats

Post by michalss »

Can anyone please write bms script for GameData1.bdt and GameData1.bhd(index) files ?
Quick BMS Editor GUI - simple easy to use
Goto : viewtopic.php?uid=34229&f=29&t=6797&start=0

Downloads from DropBox : https://dl.dropboxusercontent.com/u/
Ekey
M-M-M-Monster veteran
M-M-M-Monster veteran
Posts: 1823
Joined: Wed Mar 31, 2010 6:54 am
Has thanked: 92 times
Been thanked: 1058 times

Re: Dark Souls 2 file formats

Post by Ekey »

michalss wrote:Can anyone please write bms script for GameData1.bdt and GameData1.bhd(index) files ?
What the problems? Use try use Rick tools
michalss
Moderator
Posts: 954
Joined: Sun Mar 27, 2011 8:42 pm
Has thanked: 10 times
Been thanked: 161 times

Re: Dark Souls 2 file formats

Post by michalss »

Ekey wrote:
michalss wrote:Can anyone please write bms script for GameData1.bdt and GameData1.bhd(index) files ?
What the problems? Use try use Rick tools

Can unpack only, but not repack also does not work for X360 , also no support for GameData1.bdt and bhd :( also there are text files as container i dont know structure :(
Quick BMS Editor GUI - simple easy to use
Goto : viewtopic.php?uid=34229&f=29&t=6797&start=0

Downloads from DropBox : https://dl.dropboxusercontent.com/u/
Post Reply