MMOMinion
gather mode might not wait for min gp - Printable Version

+- MMOMinion (https://www.mmominion.com)
+-- Forum: FFXIVMinion (https://www.mmominion.com/forumdisplay.php?fid=87)
+--- Forum: Support - English, Deutsch, 中文 (https://www.mmominion.com/forumdisplay.php?fid=92)
+---- Forum: English Support & Questions (https://www.mmominion.com/forumdisplay.php?fid=93)
+---- Thread: gather mode might not wait for min gp (/showthread.php?tid=14110)



gather mode might not wait for min gp - mike0804 - 10-13-2015

[Image: JuAMAre.png]

The problem happens when minion gets you to a place way too near to the node (d<3.15) to wait for gp, which cause line 206 decides interacting with the node even though you do not have enough gp.

This should only happen to some node which space around are very limited.

line 206
Code:
if (gatherable.distance > 3.15) then
    return true
else
    Player:SetTarget(gatherable.id)
    Player:SetFacing(gpos.x,gpos.y,gpos.z)
    Player:Interact(gatherable.id)
    ml_task_hub:CurrentTask():SetDelay(1000)
    return true
end



RE: gather mode might not wait for min gp - masterdetteiu - 10-13-2015

yes I have same problem too
when bot stands near tower (sylph daily quest), bot won't wait for mingp
other 2 Silkworm Cocoon nodes are fine though


RE: gather mode might not wait for min gp - Ace - 10-13-2015

This was changed yesterday sometime.


RE: gather mode might not wait for min gp - masterdetteiu - 10-13-2015

Thank you!
everything seems to work fine
we won't waste cordial anymore :D


RE: gather mode might not wait for min gp - mike0804 - 10-14-2015

Thank for swift fix.