• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece! 🔗 Click here to enter!

Is it possible...

Status
Not open for further replies.
Level 13
Joined
Apr 15, 2008
Messages
854
... to play only a unit's Stand - 1 animation?

Cuz I don't need that the unit is looking arround.
Example: I don't want what the raccoon does, he's walking arround in a stand animation.

Please, Help Meh!

P.S. If you need moar info why I need this, I'll post it.
 
Level 16
Joined
Jul 21, 2008
Messages
1,121
I think that you can disable it only with periodic trigger or modeling.

  • Animation Fix
    • Events
      • Time - Every 3.33 seconds of game time
      • -------- Note that raccoon's stand animation lasts 3.334 seconds --------
    • Conditions
    • Actions
      • Set TempGroup = (Units in (Playable map area))
      • Unit Group - Pick every unit in TempGroup and do (Actions)
        • Loop - Actions
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • (Unit-type of (Picked unit)) Equal to <Raccoon>
            • Then - Actions
              • Animation - Play (Picked unit)'s stand animation, using only Common animations
            • Else - Actions
      • Custom script: call DestroyGroup(udg_TempGroup)
Works fine for me.
 
Status
Not open for further replies.
Top