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

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