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

Plz help get 3d model from Pride of Soul!!!

Post questions about game models here, or help out others!
Post Reply
finale00
M-M-M-Monster veteran
M-M-M-Monster veteran
Posts: 2382
Joined: Sat Apr 09, 2011 1:22 am
Has thanked: 170 times
Been thanked: 307 times

Re: Plz help get 3d model from Pride of Soul!!!

Post by finale00 »

I don't know what the game is about but I liked the girl with the blades so I will look at these.
finale00
M-M-M-Monster veteran
M-M-M-Monster veteran
Posts: 2382
Joined: Sat Apr 09, 2011 1:22 am
Has thanked: 170 times
Been thanked: 307 times

Re: Plz help get 3d model from Pride of Soul!!!

Post by finale00 »

Can't get past the archives :(
Spira1&He1ix
beginner
Posts: 20
Joined: Sun Jun 24, 2012 4:44 pm
Been thanked: 1 time

Re: Plz help get 3d model from Pride of Soul!!!

Post by Spira1&He1ix »

So this is your bad new!!!But may be i have good new,i saw the patch update use .nif file when it's downloading content to zip it!!!Hope someone will by bass this broblem
chrrox
Moderator
Posts: 2602
Joined: Sun May 18, 2008 3:01 pm
Has thanked: 57 times
Been thanked: 1422 times

Re: Plz help get 3d model from Pride of Soul!!!

Post by chrrox »

just run offzip on the files.
you will get nifs with the header
Gamebryo File Format, Version 20.3.0.9
finale00
M-M-M-Monster veteran
M-M-M-Monster veteran
Posts: 2382
Joined: Sat Apr 09, 2011 1:22 am
Has thanked: 170 times
Been thanked: 307 times

Re: Plz help get 3d model from Pride of Soul!!!

Post by finale00 »

Well at least we know it's zip compression lol
chrrox
Moderator
Posts: 2602
Joined: Sun May 18, 2008 3:01 pm
Has thanked: 57 times
Been thanked: 1422 times

Re: Plz help get 3d model from Pride of Soul!!!

Post by chrrox »

the textures are embedded in the nif files so names don't do much anyway. and the nif format is to new to be supported so archive extraction wont do any more then offzip does.
howfie
double-veteran
double-veteran
Posts: 929
Joined: Fri Jul 08, 2011 12:06 pm
Location: Torrance, CA
Has thanked: 10 times
Been thanked: 274 times

Re: Plz help get 3d model from Pride of Soul!!!

Post by howfie »

yeah always look for an 0x?8 followed by some number and then run this test. usually it's almost always 0x78 but sometimes i've seen 0x58.

Code: Select all

bool isZLIB(uint08 b1, uint08 b2)
{
 // first byte check
 if(b1 == 0x18) ;
 else if(b1 == 0x28) ;
 else if(b1 == 0x38) ;
 else if(b1 == 0x48) ;
 else if(b1 == 0x58) ;
 else if(b1 == 0x68) ;
 else if(b1 == 0x78) ;
 else return false;

 // second byte check
 uint32 u1 = (uint32)b1;
 uint32 u2 = (uint32)b2;
 return ((u1*256 + u2) % 31) == 0;
}
finale00
M-M-M-Monster veteran
M-M-M-Monster veteran
Posts: 2382
Joined: Sat Apr 09, 2011 1:22 am
Has thanked: 170 times
Been thanked: 307 times

Re: Plz help get 3d model from Pride of Soul!!!

Post by finale00 »

I have self-proclaimed filename OCD and require all my files to be nicely named (:

Guess I should take an hour or two to figure out how nif.xml works...I mean, presumably it's just a matter of adding a couple extra lines to the specs to map out the format of these new chunks.
chrrox
Moderator
Posts: 2602
Joined: Sun May 18, 2008 3:01 pm
Has thanked: 57 times
Been thanked: 1422 times

Re: Plz help get 3d model from Pride of Soul!!!

Post by chrrox »

yeah i wanted to do the same thing never got around to it.
Post Reply