Unit Modeling help

Torx

New Member
Reaction score
0
Hello

I am wondering if some kind member could do a very easy unit model with skin for me.

It should only look like a chocolate bar with the image in front.



It should only be like an rectangle, I am sure it wont take many minutes for a pro.

Just something like this from the front:
d00ccaa3-c3eb-4eb9-801a-49430585e5af.fodoc



Edit: I dont need a Portrait File for it. (Unit will never be clicked on)
 

veepee

New Member
Reaction score
2
I'm afraid im a useless modeller/skinner, but you have made me curious...

What kind of map are you making? Will there be other candy/chocolate involved? :)

Seriously though, this is an unusual request and I'm really, really curious.
 

Torx

New Member
Reaction score
0
I'm afraid im a useless modeller/skinner, but you have made me curious...

What kind of map are you making? Will there be other candy/chocolate involved? :)

Seriously though, this is an unusual request and I'm really, really curious.

Haha, I am doing a defence map. Defence yourself from the evil triggers and set the kexchocolate free, it is the kexchocolate and homer edition, so I need this in the final cinematic to show.


Someone? I know someone can do this! If I am going do this it would take like 2h or something just to learn everything.
 

Torx

New Member
Reaction score
0
Okey, I have done the model now! But should I change something in the .txt file (that should be an MDL)? And in what program can I convert to .MDL and then to .MDX?

Here is the text:

Code:
"'DeX Version: 0.185m
"
"'DeX Version: 0.185m"
// 'DeX Version: 0.185m
Version {
	FormatVersion 800,
}
Model "Kecchoklad" {
	NumGeosets 1,
	NumBones 1,
	BlendTime 150,
	MinimumExtent { -64.2523, -4.16776, 0.0 },
	MaximumExtent { 58.3406, 5.91728, 63.6014 },
	BoundsRadius 86.5088,
}
Textures 1 {
	Bitmap {
		Image "",
		ReplaceableId 1,
	}
}
Materials 1 {
	Material {
		Layer {
			FilterMode None,
			static TextureID 0,
		}
	}
}
Geoset {		// "Box01"
	Vertices 8 {
		{ -64.2523, -4.16776, 0.0 },
		{ 58.3406, -4.16776, 0.0 },
		{ -64.2523, 5.91728, 0.0 },
		{ 58.3406, 5.91728, 0.0 },
		{ -64.2523, -4.16776, 63.6014 },
		{ 58.3406, -4.16776, 63.6014 },
		{ -64.2523, 5.91728, 63.6014 },
		{ 58.3406, 5.91728, 63.6014 },
	}
	Normals 8 {
		{ 0.0, 0.0, -2.0 },
		{ 0.0, 0.0, -1.0 },
		{ 0.0, 0.0, -1.0 },
		{ 0.0, 0.0, -2.0 },
		{ 0.0, 0.0, 2.0 },
		{ 0.0, 0.0, 1.0 },
		{ 0.0, 0.0, 1.0 },
		{ 0.0, 0.0, 2.0 },
	}
	TVertices 8 {
		{ 0.00392157, 0.990876 },
		{ 0.997647, 0.989051 },
		{ 0.986667, 0.974453 },
		{ 0.0117647, 0.983577 },
		{ 0.000784314, 0.00364965 },
		{ 0.996078, -0.00182486 },
		{ 0.988235, 0.0182482 },
		{ 0.0101961, 0.0182482 },
	}
	VertexGroup {
		0,
		0,
		0,
		0,
		0,
		0,
		0,
		0,
	}
	Faces 1 36 {
		Triangles {
			{ 0, 2, 3, 3, 1, 0, 4, 5, 7, 7, 6, 4, 0, 1, 5, 5, 4, 0, 1, 3, 7, 7, 5, 1, 3, 2, 6, 6, 7, 3, 2, 0, 4, 4, 6, 2 },
		}
	}
	Groups 1 1 {
		Matrices { 0 },
	}
	MinimumExtent { -64.2523, -4.16776, 0.0 },
	MaximumExtent { 58.3406, 5.91728, 63.6014 },
	BoundsRadius 86.5088,
	MaterialID 0,
	SelectionGroup 0,
}
Bone "default_bone01" {
	ObjectId 0,
	GeosetId 2,
	GeosetAnimId None,
}
PivotPoints 1 {
	{ 0.0, 0.0, 0.0 },
}
Camera "Camera01" {
	Position { 59.0719, -160.339, 84.3613 },
	FieldOfView 45.0,
	FarClip 1000.0,
	NearClip 1.0,
	Target {
		Position { 13.8862, -42.5216, 35.3102 },
	}
}
Export Successful!

Is the texture Image even right?

This guide, i don't get it, what should I do?
http://world-editor-tutorials.thehelper.net/modelmaterial.php



Or is it just to put this file as an MDX and the .blp it the game now?
 

Sooda

Diversity enchants
Reaction score
318
You can convert *.mdl to *.mdx with MDLX Converter (wc3c.net), or use Yobgul's file converter, can be found from our stickied useful tools thread.

I have wrote same thing in another thread.

Remove from your *.mdl:
Code:
"'DeX Version: 0.185m
"
"'DeX Version: 0.185m"
and from in the end:
Code:
Export Successful!

Image path location is this:
Code:
Textures 1 {
	Bitmap {
		Image "",
		ReplaceableId 1,
	}
}
It should look something like this:
Code:
Textures 1 {

	Bitmap {

		Image "ReplaceableTextures\CommandButtons\BTNAmbush.blp",

	}

}
Image path and its format (*.tga is fine, add just *.tga extension instead of *.blp, though *.blp feels? more professional and has its good sides.) match perfectly.

Example, if your imported image has path:
Code:
wc3imported/Kex_Chocolate.tga
in *.mdl it needs to be exactly same only between "":
Code:
Textures 1 {

	Bitmap {

		Image "wc3imported/Kex_Chocolate.tga",

	}

}
Texture (image) needs to be put on model in Gmax (or other modeling program which exports to Warcraft III in some way) which creates UV data (texture coordinates data).

Because Gmax does not take *.blp (Blizzard proprietary format) nor *.tga convert image which you use for model to *.jpg or *.jpeg (Don't know which exactly). Position texture on model with Gmax (For beginner it is hardest). Use BlinkBoy modified Dex exporter for Gmax, if it spits out loads of data, you need to copy it by portions, make sure you get all of it. Gmax has copying limitations (Built in).

I made Kex chocolate model in Blender which is free modeling program. Learning it if I got time and mood. Sadly it can't export to Warcraft file format. Though it can export to other well known formats which could be exported again (maybe) to somehow Gmax or 3ds Max (costs lots of).

I post my *.tga texture which is 64x64 pixels (needs to be power of 2, like 128x64; 128x128; 128x256; 64x256; 512x512) and screen shot from Blender render:
attachment.php

I am on Linux, Ubuntu that is why I can't use Gmax, I have to download it again and run with Wine. As I have read Gmax is usable with Wine though not so well as on Windows OS, user interface flickers though 3D view is fine.

Time to download Gmax I guess.
 

Attachments

  • Kex_Chocolate.jpg
    Kex_Chocolate.jpg
    35.8 KB · Views: 289
  • Tex_chocolate.tga
    32.8 KB · Views: 264
General chit-chat
Help Users
  • Monovertex Monovertex:
    How are you all? :D
    +1
  • Ghan Ghan:
    Howdy
  • Ghan Ghan:
    Still lurking
    +3
  • The Helper The Helper:
    I am great and it is fantastic to see you my friend!
    +1
  • The Helper The Helper:
    If you are new to the site please check out the Recipe and Food Forum https://www.thehelper.net/forums/recipes-and-food.220/
  • Monovertex Monovertex:
    How come you're so into recipes lately? Never saw this much interest in this topic in the old days of TH.net
  • Monovertex Monovertex:
    Hmm, how do I change my signature?
  • tom_mai78101 tom_mai78101:
    Signatures can be edit in your account profile. As for the old stuffs, I'm thinking it's because Blizzard is now under Microsoft, and because of Microsoft Xbox going the way it is, it's dreadful.
  • The Helper The Helper:
    I am not big on the recipes I am just promoting them - I use the site as a practice place promoting stuff
    +2
  • Monovertex Monovertex:
    @tom_mai78101 I must be blind. If I go on my profile I don't see any area to edit the signature; If I go to account details (settings) I don't see any signature area either.
  • The Helper The Helper:
    You can get there if you click the bell icon (alerts) and choose preferences from the bottom, signature will be in the menu on the left there https://www.thehelper.net/account/preferences
  • The Helper The Helper:
    I think I need to split the Sci/Tech news forum into 2 one for Science and one for Tech but I am hating all the moving of posts I would have to do
  • The Helper The Helper:
    What is up Old Mountain Shadow?
  • The Helper The Helper:
    Happy Thursday!
    +1
  • Varine Varine:
    Crazy how much 3d printing has come in the last few years. Sad that it's not as easily modifiable though
  • Varine Varine:
    I bought an Ender 3 during the pandemic and tinkered with it all the time. Just bought a Sovol, not as easy. I'm trying to make it use a different nozzle because I have a fuck ton of Volcanos, and they use what is basically a modified volcano that is just a smidge longer, and almost every part on this thing needs to be redone to make it work
  • Varine Varine:
    Luckily I have a 3d printer for that, I guess. But it's ridiculous. The regular volcanos are 21mm, these Sovol versions are about 23.5mm
  • Varine Varine:
    So, 2.5mm longer. But the thing that measures the bed is about 1.5mm above the nozzle, so if I swap it with a volcano then I'm 1mm behind it. So cool, new bracket to swap that, but THEN the fan shroud to direct air at the part is ALSO going to be .5mm to low, and so I need to redo that, but by doing that it is a little bit off where it should be blowing and it's throwing it at the heating block instead of the part, and fuck man
  • Varine Varine:
    I didn't realize they designed this entire thing to NOT be modded. I would have just got a fucking Bambu if I knew that, the whole point was I could fuck with this. And no one else makes shit for Sovol so I have to go through them, and they have... interesting pricing models. So I have a new extruder altogether that I'm taking apart and going to just design a whole new one to use my nozzles. Dumb design.
  • Varine Varine:
    Can't just buy a new heatblock, you need to get a whole hotend - so block, heater cartridge, thermistor, heatbreak, and nozzle. And they put this fucking paste in there so I can't take the thermistor or cartridge out with any ease, that's 30 dollars. Or you can get the whole extrudor with the direct driver AND that heatblock for like 50, but you still can't get any of it to come apart
  • Varine Varine:
    Partsbuilt has individual parts I found but they're expensive. I think I can get bits swapped around and make this work with generic shit though
  • Ghan Ghan:
    Heard Houston got hit pretty bad by storms last night. Hope all is well with TH.
  • The Helper The Helper:
    Power back on finally - all is good here no damage

      The Helper Discord

      Staff online

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top