Warcraft III resources & community, 2003–2006 · archived

Remove Animation

2 posts
#1

Remove Animation

How do you remove i.e stand -1 and attack -1 animation from a unit?

I have 3ds max 4.0, The Art tool, oinker vertex modify, and some other programs!
#2
open the MDL by notepad and look down towards sequences. You find many


	Anim "Stand - 1" {
		Interval { 167, 1667 },
		MinimumExtent { -19.5992, -33.1796, -0.28233 },
		MaximumExtent { 52.4008, 36.7176, 99.0722 },
		BoundsRadius 62.4483,
	}
	Anim "Stand - 2" {
		Interval { 1833, 4333 },
		Rarity 4,
		MinimumExtent { -27.0629, -46.5617, -0.690621 },
		MaximumExtent { 59.4818, 42.1317, 99.4823 },
		BoundsRadius 63.9095,
	}
	Anim "Stand Victory" {
		Interval { 4500, 6833 },
		MinimumExtent { -25.6095, -52.7413, -0.528684 },
		MaximumExtent { 54.3427, 48.3475, 142.281 },
		BoundsRadius 82.3794,
	}

delete the Anim that no you want. If no you wanted Stand - 2 above would turn to


	Anim "Stand - 1" {
		Interval { 167, 1667 },
		MinimumExtent { -19.5992, -33.1796, -0.28233 },
		MaximumExtent { 52.4008, 36.7176, 99.0722 },
		BoundsRadius 62.4483,
	}
	Anim "Stand Victory" {
		Interval { 4500, 6833 },
		MinimumExtent { -25.6095, -52.7413, -0.528684 },
		MaximumExtent { 54.3427, 48.3475, 142.281 },
		BoundsRadius 82.3794,
	}