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

Total War: Warhammer II import MaxScript (*.rigid_model_v2)

Post questions about game models here, or help out others!
User avatar
TokiChan
mega-veteran
mega-veteran
Posts: 223
Joined: Wed May 18, 2016 7:38 pm
Location: Russia
Has thanked: 60 times
Been thanked: 24 times

Re: Total War: Warhammer II import MaxScript (*.rigid_model_v2)

Post by TokiChan »

Hello!
Can someone give me the priests and paladins?
I wanna make cosplay suit, but can't find them.
Thanks!
http://tokami-fuko.deviantart.com/
Extracted, converted, rigged models :)
Skyrim, Witcher 3, Dark Souls, Demon's Souls, Doom 3, random dragons
Slava
ultra-n00b
Posts: 6
Joined: Tue May 05, 2020 11:37 pm
Has thanked: 2 times

Re: Total War: Warhammer II import MaxScript (*.rigid_model_v2)

Post by Slava »

jayn23 wrote: Sun Nov 10, 2019 12:28 pm When loading a static mesh like a building it does not use a .anim file, when asked to pick a .anim file just press cancel, you will then be asked to choose a .V2 rigid model.

if you want i already made a custom script without skin support , you will be able to batch export all static meshes with it
PM me if you do and ill send it to you.
jayn23, when I press chancel, i gеt error: --Unable to convert: undefined to type: Filename.
Or it is problem of max 2021?
jayn23
mega-veteran
mega-veteran
Posts: 250
Joined: Sun Jul 17, 2011 9:30 pm
Has thanked: 61 times
Been thanked: 241 times

Re: Total War: Warhammer II import MaxScript (*.rigid_model_v2)

Post by jayn23 »

jayn23, when I press chancel, i gеt error: --Unable to convert: undefined to type: Filename.
Or it is problem of max 2021?
sorry for the late response i missed it somehow,

3DS max plugin was not made by me, it was made by zaramot.
his script works great on 3dsmax 2018 which is what i use, dont know about 2021, his script supports mesh + skeleton.
for any advice you should contact him, he is very helpful i am sure he will help you.
Slava
ultra-n00b
Posts: 6
Joined: Tue May 05, 2020 11:37 pm
Has thanked: 2 times

Re: Total War: Warhammer II import MaxScript (*.rigid_model_v2)

Post by Slava »

jayn23 wrote: Tue May 26, 2020 10:30 pm
jayn23, when I press chancel, i gеt error: --Unable to convert: undefined to type: Filename.
Or it is problem of max 2021?
sorry for the late response i missed it somehow,

3DS max plugin was not made by me, it was made by zaramot.
his script works great on 3dsmax 2018 which is what i use, dont know about 2021, his script supports mesh + skeleton.
for any advice you should contact him, he is very helpful i am sure he will help you.
Thank you very much!
h3ro
ultra-n00b
Posts: 1
Joined: Thu Jul 09, 2020 10:12 pm

Re: Total War: Warhammer II import MaxScript (*.rigid_model_v2)

Post by h3ro »

I had a look at the script, but I am struggling to understand how the normals are extracted. Can someone give me some pointers? Its been a very long time since I have been any max related programming

Edit:
The script does not extract normals. If anyone wants them, they are stored like this for vertexType == 196608
vertex.Normal_X = (vertexChunck.ReadByte() / 255.0f * 2.0f) - 1.0f; //byte 12 in vertex
vertex.Normal_Y = (vertexChunck.ReadByte() / 255.0f * 2.0f) - 1.0f; //13
vertex.Normal_Z = (vertexChunck.ReadByte() / 255.0f * 2.0f) - 1.0f; //14
Post Reply