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

Order to clear production?

Status
Not open for further replies.
Level 5
Joined
Nov 30, 2012
Messages
200
If you want all the units cleared out, you could just replace the unit via triggers. Otherwise, it's impossible.
 
Level 28
Joined
Jan 26, 2007
Messages
4,789
Hmh, you can order buildings (and units) to "cancel". This effectively removes 1 unit from the production queue.
That means that if you do it 7 times, the queue will be completely cleared.
  • Custom script: call IssueImmediateOrderById( udg_unit, 851976 )
"udg_unit" is a unit-variable (called "unit"), you can use these if that's easier:

Triggering Unit: GetTriggerUnit()
Picked unit: GetEnumUnit()
Selling Unit: GetSellingUnit()

There are more obviously, but for a building that should suffice.
 
Status
Not open for further replies.
Top