• Check out the results of the Techtree Contest #19!
  • Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.
  • Create a void inspired texture for Warcraft 3 and enter Hive's 34th Texturing Contest: Void! Click here to enter!
  • The Hive's 22nd Icon Contest: Creep Abilities is now concluded, time to vote for your favourite set of icons! Click here to vote!

Adding stand animation to tome effects.

Status
Not open for further replies.
Level 6
Joined
Jun 16, 2007
Messages
235
I want to make overhead buff effects from effects created by tomes of power.

  • Abilities\Spells\Items\AIsm\AIsmTarget.mdl // STR
  • Abilities\Spells\Items\AIam\AIamTarget.mdl // AGI
  • Abilities\Spells\Items\AIim\AIimTarget.mdl // INT

The problem is that they have no stand animation.
I have never done any modeling/animation but this seems like a copy-paste problem.
Is there a tutorial for something like this?
 
I got it!
When I found out mdl's are actually text files it was easy as cake.

Changed this:
JASS:
Sequences 1 {
	Anim "Birth" {
		Interval { 833, 1733 },
		NonLooping,
	}
}

To this:
JASS:
Sequences 2 {
	Anim "Birth" {
		Interval { 833, 1733 },
		NonLooping,
	}
	Anim "Stand" {
		Interval { 1732, 1733 },
	}	
}

And it just worked :D

whosyourdaddy :ogre_hurrhurr:
 
Status
Not open for further replies.
Back
Top