Page 1 of 1

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

Posted: Tue Mar 05, 2013 5:11 am
by Spira1&He1ix

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

Posted: Tue Mar 05, 2013 6:55 pm
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.

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

Posted: Wed Mar 06, 2013 3:10 am
by finale00
Can't get past the archives :(

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

Posted: Fri Mar 08, 2013 4:45 pm
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

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

Posted: Fri Mar 08, 2013 11:44 pm
by chrrox
just run offzip on the files.
you will get nifs with the header
Gamebryo File Format, Version 20.3.0.9

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

Posted: Sat Mar 09, 2013 12:06 am
by finale00
Well at least we know it's zip compression lol

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

Posted: Sat Mar 09, 2013 12:08 am
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.

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

Posted: Sat Mar 09, 2013 12:51 am
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;
}

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

Posted: Sat Mar 09, 2013 2:01 am
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.

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

Posted: Sat Mar 09, 2013 2:46 am
by chrrox
yeah i wanted to do the same thing never got around to it.