• 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.

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?
 
Level 6
Joined
Jun 16, 2007
Messages
235
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.
Top