• 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.
  • 💡 We're thrilled to announce that our upcoming texturing contest is in the works, and we're eager to hear your suggestions! Please take this opportunity to share your ideas in this theme discussion thread for the Texturing Contest #34!
  • 🏆 Hive's 7th HD Modeling Contest: Icecrown Creature is now open! The frozen wastes of Icecrown are home to some of Azeroth’s most terrifying and resilient creatures. For this contest, your challenge is to design and model a HD 3D monster that embodies the cold, undead, and sinister essence of Icecrown! 📅 Submissions close on April 13, 2025. Don't miss this opportunity to let your creativity shine! Enter now and show us your frozen masterpiece! 🔗 Click here to enter!

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