• 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.
  • The Hive's 22nd Icon Contest: Creep Abilities is now concluded, time to vote for your favourite set of icons! Click here to vote!
  • ✅ The POLL for Hive's Texturing Contest #34 is OPEN! Vote for the TOP 3 SKINS! 🔗Click here to cast your vote!
  • ✅ The POLL for Hive's Techtree Contest #20 is OPEN! Vote for the TOP 3 FACTIONS! 🔗Click here to cast your vote!

Jass script...

Status
Not open for further replies.

Ovg

O

Ovg

Could somebody write a script which would change units animations to "work" according to this:
Work = Crossbow Attack

Just use this script to add an animation tag:
call AddUnitAnimationProperties(unit,"Alternate",true)
What do I need to do? In return +rep and credits.
 
Could somebody write a script which would change units animations to "work" according to this:

What do I need to do? In return +rep and credits.

1. Create a global unit variable and name it myunit
2. Add the unit to the variable
3. Create a custom script. You can find it in the GUI list menu.
and add copy this text to it:
JASS:
call AddUnitAnimationProperties(udg_myunit,"Work",true)
 
  • Like
Reactions: Ovg
Status
Not open for further replies.
Back
Top