Hey guys ! dose any one have any idea how to convert mdl to fbx ?
-
Elementalix
- ultra-n00b
- Posts: 5
- Joined: Fri Nov 09, 2018 7:19 pm
Hey guys ! dose any one have any idea how to convert mdl to fbx ?
Hello the game is:Tokyo Necro:Suicide Mission from Nitro + . The model file is an mdl.
Here's same sample (Updated):https://www.mediafire.com/file/m39gvi5q ... c.rar/file THX
Here's same sample (Updated):https://www.mediafire.com/file/m39gvi5q ... c.rar/file THX
Last edited by Elementalix on Fri Mar 26, 2021 5:50 am, edited 1 time in total.
Re: Hey guys ! dose any one have any idea how to convert mdl to fbx ?
link dont work
This game is kind of made in Unity, use Asset Studio to extract resources ...
This game is kind of made in Unity, use Asset Studio to extract resources ...
-
Elementalix
- ultra-n00b
- Posts: 5
- Joined: Fri Nov 09, 2018 7:19 pm
Re: Hey guys ! dose any one have any idea how to convert mdl to fbx ?
Hello i tried to open it with Asset Studio but nothing shows up .Thx for the reply !
Re: Hey guys ! dose any one have any idea how to convert mdl to fbx ?
There is already a topic with this format:Elementalix wrote: ↑Sat Mar 27, 2021 11:31 amHello i tried to open it with Asset Studio but nothing shows up .Thx for the reply !
viewtopic.php?f=16&t=10178
-
Elementalix
- ultra-n00b
- Posts: 5
- Joined: Fri Nov 09, 2018 7:19 pm
Re: Hey guys ! dose any one have any idea how to convert mdl to fbx ?
Hello again ,i know of the topic but the blender script will loop ,probably the encryption is different. THX for the reply!
The code what the terminal is displays :
Root 28
Root 28
...
The code what the terminal is displays :
Root 28
Root 28
...
- shakotay2
- MEGAVETERAN

- Posts: 3461
- Joined: Fri Apr 20, 2012 9:24 am
- Location: Nexus, searching for Jim Kirk
- Has thanked: 955 times
- Been thanked: 1876 times
Re: Hey guys ! dose any one have any idea how to convert mdl to fbx ?
yeah, would take hours to understand/patch the script, I did it for one specific mdl only:
.
.
You do not have the required permissions to view the files attached to this post.
Bigchillghost, Reverse Engineering a Game Model: viewtopic.php?f=29&t=17889
extracting simple models: viewtopic.php?f=29&t=10894
Make_H2O-ForzaHor3-jm9.zip
"You quoted the whole thing, what a mess."
extracting simple models: viewtopic.php?f=29&t=10894
Make_H2O-ForzaHor3-jm9.zip
"You quoted the whole thing, what a mess."
-
Elementalix
- ultra-n00b
- Posts: 5
- Joined: Fri Nov 09, 2018 7:19 pm
- shakotay2
- MEGAVETERAN

- Posts: 3461
- Joined: Fri Apr 20, 2012 9:24 am
- Location: Nexus, searching for Jim Kirk
- Has thanked: 955 times
- Been thanked: 1876 times
Re: Hey guys ! dose any one have any idea how to convert mdl to fbx ?
I really don't like to care for weapons so I didn't bother any further but this as some hints:
The format has changed a little bit, if you patch the .py like so
. the error message looks like this:
With some rough understanding of the script you can apply another patch by copying some branches like
from
def frme(n,mesh_id,parent)
to
def mdl_parser(filename)
(Blender will freeze in an endless loop displaying the chunk name you didn't handle so far.)
This is a very ugly patch but worked (more or less) for the models you uploaded.
The format has changed a little bit, if you patch the .py like so
. the error message looks like this:
Code: Select all
MESH start
Traceback (most recent call last):
File "sonicomi - org.py", line 556, in openfile
File "sonicomi - org.py", line 383, in mdl_parser
File "sonicomi - org.py", line 289, in frme
File "sonicomi - org.py", line 144, in vertexuv
RuntimeError: mesh has no facesCode: Select all
elif chunk=='FACE':
...
mesh.update()def frme(n,mesh_id,parent)
to
def mdl_parser(filename)
(Blender will freeze in an endless loop displaying the chunk name you didn't handle so far.)
This is a very ugly patch but worked (more or less) for the models you uploaded.
You do not have the required permissions to view the files attached to this post.
Bigchillghost, Reverse Engineering a Game Model: viewtopic.php?f=29&t=17889
extracting simple models: viewtopic.php?f=29&t=10894
Make_H2O-ForzaHor3-jm9.zip
"You quoted the whole thing, what a mess."
extracting simple models: viewtopic.php?f=29&t=10894
Make_H2O-ForzaHor3-jm9.zip
"You quoted the whole thing, what a mess."
-
Elementalix
- ultra-n00b
- Posts: 5
- Joined: Fri Nov 09, 2018 7:19 pm
