[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