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

[NOESIS] Dragon Nest, help needed

Post questions about game models here, or help out others!
pixellegolas
ultra-veteran
ultra-veteran
Posts: 423
Joined: Mon Aug 11, 2008 11:30 pm
Has thanked: 27 times
Been thanked: 15 times

[NOESIS] Dragon Nest, help needed

Post by pixellegolas »

Image


Hi guys! I talked to the guy who made the Dragon nest model viewer and got the file format for this game. It includes model, texture, bones and animation, in otherwise full file format. I started creating a noesis python script but got stuck and Chrrox has helped me....ALOT to intepret and understand. But I am totally stuck so I present what I have now and hopefully the community can help to build it on :)

In the provided zip file there is:

dragon nest.py
+model
+texture
+anim file

I was able to make noesis count bones, show the model without texture and....yes, that is about it :)

http://www.2shared.com/file/GrmHBqGg/dragon_nest.html


Oops, forgot the file format source so here it is on pastebin, and comments in code is chinese but maybe understand with google translate:

http://pastebin.com/z9GFxfxp
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: [NOESIS] Dragon Nest, help needed

Post by finale00 »

Call rapi.rpgSetMaterial before you commit the triangles.
Then the texture should be applied to those faces.
pixellegolas
ultra-veteran
ultra-veteran
Posts: 423
Joined: Mon Aug 11, 2008 11:30 pm
Has thanked: 27 times
Been thanked: 15 times

Re: [NOESIS] Dragon Nest, help needed

Post by pixellegolas »

sweet, going to a party now but will hop on this info asap :)
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: [NOESIS] Dragon Nest, help needed

Post by finale00 »

Your normals and UV's might be a little weird because of how you are calling the functions.
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: [NOESIS] Dragon Nest, help needed

Post by finale00 »

The chinese characters are all messed up in pastebin.
Maybe you can post it somewhere else or just upload it?

Code: Select all

numVerts, numIdx, unk, renderMode
There are two "render modes" as the spec says. One of them (when it's 1 or 257) requires you to commit triangles using TRIANGLE_STRIP, the other (when it's 0) with TRIANGLE.

There are two msh types; one with bones/weights and the other doesn't. I don't know when this would be checked.

I also don't know how to find the correct texture. Maybe I'm actually just missing textures.
But other than that it gets the geometry.

There are also some weird structs after the vertex section sometimes. I'm not sure what they are, or when they occur.

There are some files where you have

Code: Select all

int count
count {
   char[256] name
}
I'm not too sure when it occurs

But, you can use it for reference if you want. I probably just have to see what patterns those unknowns are.
You do not have the required permissions to view the files attached to this post.
pixellegolas
ultra-veteran
ultra-veteran
Posts: 423
Joined: Mon Aug 11, 2008 11:30 pm
Has thanked: 27 times
Been thanked: 15 times

Re: [NOESIS] Dragon Nest, help needed

Post by pixellegolas »

Updated pastebin with english translation

http://pastebin.com/AiQmvg83
kawayide
beginner
Posts: 37
Joined: Wed Nov 09, 2011 2:03 am
Has thanked: 7 times

Re: [NOESIS] Dragon Nest, help needed

Post by kawayide »

sorry for call back this old thread.

i just finishied a viewer(mesh and anime), but in opengl + qt. the document is nearly right but has lots of error.
btw, if any problems with mesh or anime, maybe I can help.
pixellegolas
ultra-veteran
ultra-veteran
Posts: 423
Joined: Mon Aug 11, 2008 11:30 pm
Has thanked: 27 times
Been thanked: 15 times

Re: [NOESIS] Dragon Nest, help needed

Post by pixellegolas »

I would like to be able to export model + animation in some way :)
amzerof6
advanced
Posts: 57
Joined: Sat Oct 23, 2010 3:50 pm
Has thanked: 2 times
Been thanked: 2 times

Re: [NOESIS] Dragon Nest, help needed

Post by amzerof6 »

how can import those anim files into 3dsmax, please help
Darko
double-veteran
double-veteran
Posts: 723
Joined: Mon Jul 13, 2009 6:16 pm
Has thanked: 72 times
Been thanked: 138 times

Re: [NOESIS] Dragon Nest, help needed

Post by Darko »

amzerof6 wrote:how can import those anim files into 3dsmax, please help
You need to export those anims to something readable in 3DS Max, normally to the format of the model (normally fbx).
Image
amzerof6
advanced
Posts: 57
Joined: Sat Oct 23, 2010 3:50 pm
Has thanked: 2 times
Been thanked: 2 times

Re: [NOESIS] Dragon Nest, help needed

Post by amzerof6 »

Darko wrote:
amzerof6 wrote:how can import those anim files into 3dsmax, please help
You need to export those anims to something readable in 3DS Max, normally to the format of the model (normally fbx).
I tried every Dragon Nest‘s tools, but there's no one can convert anim files successful.
User avatar
shakotay2
MEGAVETERAN
MEGAVETERAN
Posts: 4284
Joined: Fri Apr 20, 2012 9:24 am
Location: Nexus, searching for Jim Kirk
Has thanked: 1146 times
Been thanked: 2242 times

Re: [NOESIS] Dragon Nest, help needed

Post by shakotay2 »

amzerof6 wrote:I tried every Dragon Nest‘s tools, but there's no one can convert anim files successful.
Does that apply to this one, too?
http://www.dnmodz.com/guides/msh-converter/

Brief: "You can choose a msh file,as well as its animation file(*.ani) that you can finish a
msh-to-fbx conversion."

(If it doesn't work you should upload an ani sample because noone can help without it.)
Tuts: a) Bigchillghost, viewtopic.php?f=29&t=17889
b) Extracting simple models: http://forum.xentax.com/viewtopic.php?f=29&t=10894
"Quoting the whole thing. Would u ever stop this nonsense?"
amzerof6
advanced
Posts: 57
Joined: Sat Oct 23, 2010 3:50 pm
Has thanked: 2 times
Been thanked: 2 times

Re: [NOESIS] Dragon Nest, help needed

Post by amzerof6 »

shakotay2 wrote:
amzerof6 wrote:I tried every Dragon Nest‘s tools, but there's no one can convert anim files successful.
Does that apply to this one, too?
http://www.dnmodz.com/guides/msh-converter/

Brief: "You can choose a msh file,as well as its animation file(*.ani) that you can finish a
msh-to-fbx conversion."

(If it doesn't work you should upload an ani sample because noone can help without it.)
yes,I tried this tool , but when I import those fbx files to 3dsmax had some errors . model and skin were fine , but there's no animations . :(
You do not have the required permissions to view the files attached to this post.
User avatar
shakotay2
MEGAVETERAN
MEGAVETERAN
Posts: 4284
Joined: Fri Apr 20, 2012 9:24 am
Location: Nexus, searching for Jim Kirk
Has thanked: 1146 times
Been thanked: 2242 times

Re: [NOESIS] Dragon Nest, help needed

Post by shakotay2 »

thx.
This is the skeleton. I'm unsure whether Bip01 is a dummy.
If so there should be a direct connection between Pelvis and Spine.
airhound_skel.JPG
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
"Quoting the whole thing. Would u ever stop this nonsense?"
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: [NOESIS] Dragon Nest, help needed

Post by Szkaradek123 »

Hello

Here is blender importer for models from this game.
It works only with Blender version 249 and Python version 2.6


It import skinned and textured meshes with animations.

-select *.skn files for importing meshes
-select *.ani files for unpacking animations
-after unpacking *.ani files select *.anim files for animation

For Noesis use fbx blender exporter.

Importer:
http://www.mediafire.com/download/9fo7x ... -20%5D.zip


Example:
http://www.mediafire.com/download/9a45j ... onnest.zip
Post Reply