• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

Arthas Stand Ready

Status
Not open for further replies.
Level 2
Joined
Dec 27, 2006
Messages
10
How do i change Arthas's Animation Stand - 1 to Stand Ready without attacking an enemy ..
i think what i did was wrong check this pls
I simply Move Stand Ready to Stand - 1

Code:
Sequences 13 {
	Anim "Stand Ready" {
		Interval { 30000, 31000 },
		MinimumExtent { -162.5, -143.208, -29.7471 },
		MaximumExtent { 133.44, 142.467, 104.669 },
		BoundsRadius 210.441,
	}
	Anim "Stand First" {
		Interval { 10000, 16667 },
		Rarity 5,
		MinimumExtent { -154.372, -145.345, -50.8508 },
		MaximumExtent { 135.577, 144.604, 129.42 },
		BoundsRadius 207.442,
	}
	Anim "Stand Second" {
		Interval { 20000, 26667 },
		Rarity 6,
		MinimumExtent { -154.372, -145.345, -58.5597 },
		MaximumExtent { 135.577, 144.604, 187.532 },
		BoundsRadius 212.742,
	}
	Anim "Stand - 1" {
		Interval { 3333, 6667 },
		MinimumExtent { -154.372, -145.345, -41.5714 },
		MaximumExtent { 135.577, 144.604, 118.823 },
		BoundsRadius 207.343,
	}
	Anim "Attack - 1" {
		Interval { 33333, 34333 },
		NonLooping,
		MinimumExtent { -161.692, -145.092, -39.2506 },
		MaximumExtent { 167.024, 144.35, 160.411 },
		BoundsRadius 220.168,
	}
	Anim "Attack - 2" {
		Interval { 36667, 37833 },
		NonLooping,
		MinimumExtent { -175.945, -147.584, -67.5383 },
		MaximumExtent { 172.425, 144.604, 217.012 },
		BoundsRadius 221.646,
	}
	Anim "Death" {
		Interval { 40000, 41500 },
		NonLooping,
		MinimumExtent { -154.372, -145.345, -73.0451 },
		MaximumExtent { 135.577, 172.391, 186.321 },
		BoundsRadius 220.569,
	}
	Anim "Stand Victory" {
		Interval { 46667, 49333 },
		MinimumExtent { -154.372, -145.345, -1.06609 },
		MaximumExtent { 135.577, 144.604, 199.406 },
		BoundsRadius 224.501,
	}
	Anim "Spell" {
		Interval { 53333, 55500 },
		NonLooping,
		MinimumExtent { -154.372, -145.345, -40.0393 },
		MaximumExtent { 135.577, 144.604, 238.33 },
		BoundsRadius 224.491,
	}
	Anim "Stand Channel" {
		Interval { 60000, 61667 },
		MinimumExtent { -154.372, -145.345, -0.62305 },
		MaximumExtent { 135.577, 144.604, 239.487 },
		BoundsRadius 233.49,
	}
	Anim "Stand Hit" {
		Interval { 66667, 67167 },
		NonLooping,
		MinimumExtent { -172.083, -141.673, -25.705 },
		MaximumExtent { 131.905, 140.932, 122.483 },
		BoundsRadius 216.574,
	}
	Anim "Dissipate" {
		Interval { 73333, 75333 },
		NonLooping,
		MinimumExtent { -154.372, -145.345, -66.6171 },
		MaximumExtent { 135.577, 175.079, 553.363 },
		BoundsRadius 324.988,
	}
	Anim "Walk" {
		Interval { 126667, 127433 },
		MoveSpeed 250,
		MinimumExtent { -152.235, -143.208, -31.0483 },
		MaximumExtent { 144.95, 142.467, 153.409 },
		BoundsRadius 214.518,
	}
}
Edit: Crap, it didnt worked but how how i changed its standing animation to Stand Ready?
 
Last edited:
Level 2
Joined
Dec 27, 2006
Messages
10
Sorry and thanks .. i dont quite understand you but to make sure is this how you do it?

Original:spell_breaker:
Code:
	Anim "Stand - 1" {
		Interval { 3333, 6667 },
		MinimumExtent { -154.372, -145.345, -41.5714 },
		MaximumExtent { 135.577, 144.604, 118.823 },
		BoundsRadius 207.343,
	}
	Anim "Stand Ready" {
		Interval { 30000, 31000 },
		MinimumExtent { -162.5, -143.208, -29.7471 },
		MaximumExtent { 133.44, 142.467, 104.669 },
		BoundsRadius 210.441,
	}
Swapped:spell_breaker:
Code:
	Anim "Stand - 1" {
		Interval { 30000, 31000 },
		MinimumExtent { -154.372, -145.345, -41.5714 },
		MaximumExtent { 135.577, 144.604, 118.823 },
		BoundsRadius 207.343,
	}
	Anim "Stand Ready" {
		Interval { 3333, 6667  },
		MinimumExtent { -162.5, -143.208, -29.7471 },
		MaximumExtent { 133.44, 142.467, 104.669 },
		BoundsRadius 210.441,
	}

Edit: Im confused.. which one?
 
Level 2
Joined
Dec 27, 2006
Messages
10
Thanks Werewulf, +Rep heheh :grin:
Anyways when will this Capacity Error fixed? its getting irritating

Edit: 7 Days :(
 
Last edited:
Status
Not open for further replies.
Top