• 🏆 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!

"Smart" order during cyclone

Level 4
Joined
Feb 1, 2024
Messages
36
When my unit is cycloned, I can still right click ground so I want to trigger some event as I right click during cyclone, but the problem is right click on ground does not count as move or smart when a unit is cycloned. So this trigger will not run:

  • Events
    • Unit - A unit Is issued an order targeting a point
  • Conditions
    • (Issued order) Equal to (Order(move))
    • (Issued order) Equal to (Order(smart))
  • Actions
    • Game - Display to (All players) the text: move
Is there a way to make right click during cyclone counted as move/smart as usual? Thanks in advance!
 
Level 4
Joined
Feb 1, 2024
Messages
36
Actually I found out a work around way:

  • Events
    • Player - (Owner of Unit) issues Mouse Down event
  • Conditions
    • (Trigger Mouse Button) Equal to Right Mouse Button
  • Actions
    • Game - Display to (All players) the text: move
In Warcraft 3 ability insight they say units will continuously perform stun order. That's why I can right click but cannot issue move order.
 
Last edited:
Top