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

Help me Please!

Status
Not open for further replies.
Level 24
Joined
May 9, 2007
Messages
3,563
The base order Id's are most likely the same. To solve this base them off separate abilities (such as Build Tiny Castle/Build Tiny Barracks).

Alternatively base them off of the spell Channel (hero).

Here you can change the Base Order Id (what it is does not matter) to something else.
This will allow you to cast it without randomly selecting one.

To base it of channel you would have a trigger like this

  • Your Trigger
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Equal to Animate Dead
    • Actions
      • Set TempPoint = (Target point of ability being cast)
      • Unit - Create 1 Footman for (Owner of (Triggering unit)) at TempPoint facing Default building facing degrees
      • Custom script: call RemoveLocation(udg_TempPoint)
 
Status
Not open for further replies.
Top