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

[JASS] return not working

Status
Not open for further replies.
Level 28
Joined
Jan 26, 2007
Messages
4,789
I'm going to assume you shortened the code for us (because that would throw in an error and there's some obsolete stuff).

If you right-click harvest, then it's a "smart" order and not a "harvest" one. Keep that in mind (I believe it should return true if you specifically click "gather" and then click the tree).
 
Level 4
Joined
Jan 27, 2010
Messages
133
Well, all you can do is to check the unit and the return from GetUnitCurrentOrder. Either that function doesn't work like you think it does, or the unit is null...

JASS:
function IsDestructableTree takes destructable d returns boolean
    call BJDebugMsg("Unit: "+GetUnitName(udg_ISD_dummy))
    call BJDebugMsg("Order: "+I2S(GetUnitCurrentOrder(udg_ISD_dummy)))
    return GetUnitCurrentOrder(udg_ISD_dummy) == 852018
endfunction

But... if you want to check if a destructable is a tree, I think you can just use (with a unit that has eat-tree, on a copy of the targeted object).

JASS:
if IssueTargetOrder(dummy, "eattreeorwhatev", destructible) then
   // Is tree
endif
 
Status
Not open for further replies.
Top