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!
I believe you have the wrong animation names. You can use a tool like Retera's Model Studio to open up the model and view its animation names and indices (or you can also view the names in the world editor side bar):
In your case, you can use "Death Open" (to open the gate) or "Death Close" (to close the gate). If you don't want the animation of the doors swinging, then you can use "Opened" (for the opened version) or "Stand 1" (for the closed version).
If those names still aren't recognized, you can try using the animation indices listed in parentheses next to the animation name, e.g.
JASS:
call SetUnitAnimationByIndex(gate, 2) // this will play the animation: (2) Death Open
call SetUnitAnimationByIndex(gate, 5) // this will play the animation: (5) Death Close
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.