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

Risen 3 Titan Lords

Post questions about game models here, or help out others!
Szkaradek123
mega-veteran
mega-veteran
Posts: 292
Joined: Wed May 05, 2010 8:21 pm
Location: Poland Głogów
Has thanked: 21 times
Been thanked: 742 times

Re: Risen 3 Titan Lords

Post by Szkaradek123 »

Use "...\0_na_skn\w_skn_0_na.db" - (binary file) - for searching needed name of material, mesh indice table offset and mesh indice count for each material
EcheloCross
veteran
Posts: 88
Joined: Sat Feb 27, 2010 6:57 pm
Has thanked: 40 times
Been thanked: 77 times

Re: Risen 3 Titan Lords

Post by EcheloCross »

Looking through the db now

Looks like the model data block is shared by each material, which makes sense as to why the uv were overlapping when I originally read the whole model.

Code: Select all

Model : Hum_F_Body_Main_Patty_1_L1

--Material: Hum_F_Body_Main_Patty_Fabric_1
B23C93CD F5536CE5 00000004 00000000 : amount to seek in face index block
B23C93CD 2F8143C6 00000004 00004F68 : face index count to read
B23C93CD BD79284B 00000004 00000000 : amount to seek in vertex info block
B23C93CD B99901EC 00000004 0000117B : vertices + uv + etc count to read
B23C93CD 0F2D41B1 00000004 00000000 : amount to seek for last data block?
B23C93CD 6ED76512 00000004 0000002A : count to read for last data block?

--Material: Hum_F_Body_Main_Patty_Skin_1
B23C93CD F5536CE5 00000004 00004F68 : amount to seek in face index block
B23C93CD 2F8143C6 00000004 00001D2E : face index count to read
B23C93CD BD79284B 00000004 0000117B : amount to seek in vertex info block
B23C93CD B99901EC 00000004 00000633 : vertices + uv + etc count to read
B23C93CD 0F2D41B1 00000004 0000002A : amount to seek for last data block?
B23C93CD 6ED76512 00000004 0000002E : count to read for last data block?
Finally got the sub mesh info reading from the db. Thanks again for pointing me in the right direction Szkaradek123. :)
Image Image

Image
raykingnihong
mega-veteran
mega-veteran
Posts: 179
Joined: Sun Apr 06, 2014 8:06 pm
Has thanked: 216 times
Been thanked: 6 times

Re: Risen 3 Titan Lords

Post by raykingnihong »

EcheloCross wrote:Looking through the db now

Looks like the model data block is shared by each material, which makes sense as to why the uv were overlapping when I originally read the whole model.

Code: Select all

Model : Hum_F_Body_Main_Patty_1_L1

--Material: Hum_F_Body_Main_Patty_Fabric_1
B23C93CD F5536CE5 00000004 00000000 : amount to seek in face index block
B23C93CD 2F8143C6 00000004 00004F68 : face index count to read
B23C93CD BD79284B 00000004 00000000 : amount to seek in vertex info block
B23C93CD B99901EC 00000004 0000117B : vertices + uv + etc count to read
B23C93CD 0F2D41B1 00000004 00000000 : amount to seek for last data block?
B23C93CD 6ED76512 00000004 0000002A : count to read for last data block?

--Material: Hum_F_Body_Main_Patty_Skin_1
B23C93CD F5536CE5 00000004 00004F68 : amount to seek in face index block
B23C93CD 2F8143C6 00000004 00001D2E : face index count to read
B23C93CD BD79284B 00000004 0000117B : amount to seek in vertex info block
B23C93CD B99901EC 00000004 00000633 : vertices + uv + etc count to read
B23C93CD 0F2D41B1 00000004 0000002A : amount to seek for last data block?
B23C93CD 6ED76512 00000004 0000002E : count to read for last data block?
Finally got the sub mesh info reading from the db. Thanks again for pointing me in the right direction Szkaradek123. :)
Image Image

Image
Very good game, can upload script, let everyone learn it, thanks,chrrox wrote a python script for noesis for Risen 2.Support only xmesh models do not support character models
User avatar
Tosyk
double-veteran
double-veteran
Posts: 1027
Joined: Thu Oct 22, 2009 10:24 am
Location: Russia, Siberia
Has thanked: 269 times
Been thanked: 154 times
Contact:

Re: Risen 3 Titan Lords

Post by Tosyk »

Nice work EcheloCross, Szkaradek123, shakotay2, zaramot.
Thank you for all you do here
my blog | my forum
Szkaradek123
mega-veteran
mega-veteran
Posts: 292
Joined: Wed May 05, 2010 8:21 pm
Location: Poland Głogów
Has thanked: 21 times
Been thanked: 742 times

Re: Risen 3 Titan Lords

Post by Szkaradek123 »

Hi
Here is an importer for textured models (*.skn ) from this game. No weighting. No skeleton.
It requires Blender 249 and Python 26.
How use:
Please read readMe.txt
You do not have the required permissions to view the files attached to this post.
raykingnihong
mega-veteran
mega-veteran
Posts: 179
Joined: Sun Apr 06, 2014 8:06 pm
Has thanked: 216 times
Been thanked: 6 times

Re: Risen 3 Titan Lords

Post by raykingnihong »

cool ! Hi Szkaradek123 My friend, thank you very much for the great work, the script runs perfectly.
Post Reply