• 🏆 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!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

[Trigger] Do you know why this happens?

Status
Not open for further replies.
  • Boots of Speed alliance
    • Events
      • Unit - A unit enters Alliance Boots <gen>
    • Conditions
      • Or - Any (Conditions) are true
        • Conditions
          • (Triggering unit) Equal to Paladin
          • (Triggering unit) Equal to Archmage
          • (Triggering unit) Equal to Mountain_King
          • (Triggering unit) Equal to Blood_Mage
          • (Triggering unit) Equal to Ranger
          • (Triggering unit) Equal to Wizard
    • Actions
      • Unit - Set (Triggering unit) movement speed to ((Current movement speed of (Triggering unit)) + 200.00)
      • Unit - Kill Boots of Speed 0038 <gen>
      • Trigger - Turn on turn off alliance <gen>
      • Trigger - Turn off (This trigger)
      • Wait 10.00 seconds
      • Unit - Set (Triggering unit) movement speed to ((Current movement speed of (Triggering unit)) - 200.00)
  • turn off alliance
    • Events
      • Time - Elapsed game time is 120.00 seconds
    • Conditions
    • Actions
      • Hero - Instantly revive Boots of Speed 0038 <gen> at (Center of Alliance Boots <gen>), Show revival graphics
      • Trigger - Turn on Boots of Speed alliance <gen>
      • Trigger - Turn off (This trigger)
The boots are supposed to appear after 120 secs pass... but they don't. However the speed increase stacks...
 
Level 19
Joined
Mar 18, 2012
Messages
1,716
I think you need a periodic timer or the Timer Expires Event.

It's also good to check if a trigger runs at all. You can achieve that with text messages.

  • Untitled Trigger 002
    • Events
      • Time - Every 120.00 seconds of game time
    • Conditions
    • Actions
      • Game - Display to (All players) the text: This trigger works.
 
Last edited:
Level 7
Joined
Jun 28, 2013
Messages
395
If u want it to come out 120 seconds after the item is out, use timer because periodic is the game time so maybe after u take, it instantly respawn because the game-time already reached 120 seconds.

It's not a hero? but why u hero-revive it when its not a hero? @_@
 
Level 22
Joined
Aug 27, 2013
Messages
3,973
The boots are supposed to appear after 120 secs pass... but they don't
if it's not a hero
you must use
  • Unit - Create 1 Boots for Player at Point facing Default building facing degrees
instead of revive hero (because it's a unit, it can't be revived)

the speed increase stacks...
this is because you're using wait
use periodical timer instead of that
 
Status
Not open for further replies.
Top