Hello, could anyone please look at the following files I uploaded?
The .pb files seem to be a container of sorts, seeing how it sections like TXP0, TMX0, MD00 and so forth
The model format is used by all PS2 Shin Megami Tensei games (SMT III, Digital Devil Saga 1/2, Devil Summoner 1/2)
The TMX files can be converted using a program left on the disc.
I don't know how to crack it myself so I appreciate any help.
Poll & Discussion: We wish the site to continue (Y/N)
Shin Megami Tensei PS2 model format
- shakotay2
- MEGAVETERAN
- Posts: 4146
- Joined: Fri Apr 20, 2012 9:24 am
- Location: Nexus, searching for Jim Kirk
- Has thanked: 1127 times
- Been thanked: 2162 times
Re: Shin Megami Tensei PS2 model format
using hex2obj (view link in my sig):
0x72FA0 471
Vb0
0x0
0x73350 179
020000
0x0 255
(copy previous 6 lines into an empty txt file and save it as luci_mask.h2o for example
then load model and h2o into hex2obj)
hex2obj is intended for a quickcheck only, to get the full model a script would make sense.
other submesh:0x72FA0 471
Vb0
0x0
0x73350 179
020000
0x0 255
(copy previous 6 lines into an empty txt file and save it as luci_mask.h2o for example
then load model and h2o into hex2obj)
hex2obj is intended for a quickcheck only, to get the full model a script would make sense.
You do not have the required permissions to view the files attached to this post.
Tuts: a) Bigchillghost, viewtopic.php?f=29&t=17889
b) Extracting simple models: http://forum.xentax.com/viewtopic.php?f=29&t=10894
Some things will never change.
"You quoted the whole thing, what a mess."
b) Extracting simple models: http://forum.xentax.com/viewtopic.php?f=29&t=10894
Some things will never change.
![rolleyes [roll]](./images/smilies/icon_rolleyes.gif)
"You quoted the whole thing, what a mess."
-
- veteran
- Posts: 109
- Joined: Wed Jun 04, 2014 7:48 pm
- Location: Netherlands
- Has thanked: 20 times
- Been thanked: 35 times
- Contact:
Re: Shin Megami Tensei PS2 model format
Oh wow, thanks. I tried messing around with it myself but I'm not a coder, I can't do much with this myself sadly.shakotay2 wrote:using hex2obj (view link in my sig):
All I can do is hope someone is willing to write a script lol.
Re: Shin Megami Tensei PS2 model format
I just took a cursory look at it, it seems to follow this basic pattern:
EDIT:
It also contains texture data in the TMX0 section
TXP0 seems to be a palette.
And I forgot to mention, but it's probably known: The files are little endian.
EDIT2:
Do you mind seeing if there is a PDB on the disc?
I was wrong about a few things, I've removed them.
Code: Select all
uint16 unk;
uint16 fileId;
uint32 flags;
char segmentType[4];
It also contains texture data in the TMX0 section
TXP0 seems to be a palette.
And I forgot to mention, but it's probably known: The files are little endian.
EDIT2:
Do you mind seeing if there is a PDB on the disc?
EDIT3:[antidote@the-key-bearer BE0605]$ file BE0605.exe
BE0605.exe: PE32 executable (GUI) Intel 80386 (stripped to external PDB), for MS Windows
I was wrong about a few things, I've removed them.
-
- veteran
- Posts: 109
- Joined: Wed Jun 04, 2014 7:48 pm
- Location: Netherlands
- Has thanked: 20 times
- Been thanked: 35 times
- Contact:
Re: Shin Megami Tensei PS2 model format
Uhh, I can't exactly extract all the files, since it uses some archive with the filetable in a seperate file.antidote wrote:I just took a cursory look at it, it seems to follow this basic pattern:
EDIT:Code: Select all
uint16 unk; uint16 fileId; uint32 flags; char segmentType[4];
It also contains texture data in the TMX0 section
TXP0 seems to be a palette.
And I forgot to mention, but it's probably known: The files are little endian.
EDIT2:
Do you mind seeing if there is a PDB on the disc?EDIT3:[antidote@the-key-bearer BE0605]$ file BE0605.exe
BE0605.exe: PE32 executable (GUI) Intel 80386 (stripped to external PDB), for MS Windows
I was wrong about a few things, I've removed them.
Unless I knew what to look for with a hex editor, I can't find the PDB.