MMOMinion
Assist mode issue - 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: Assist mode issue (/showthread.php?tid=9306)



Assist mode issue - iDownload - 09-23-2014

Bot seems to not consider mobs such as Kraken arms/tentacles (Hullbreaker Isle) and the Demon Wall (AK) as enemies since it doesnt do its rotation


RE: Assist mode issue - dNh301 - 09-23-2014

Yeah its some sort of issue with LOS. Can't attack striking dummies in residential areas either. I did this below to get my assist functions back.

(09-20-2014, 04:05 PM)dNh301 Wrote:  Seems it has something to do with "target.los" in the ffxiv_task_assist.lua

Not working on striking dummy:
Code:
if     ( target and target.alive and target.los and (target.attackable or target.chartype==2 or target.chartype==5 or target.chartype==4) and target.distance <= 30 ) then
        SkillMgr.Cast( target )
    end

Working:
Code:
if     ( target and target.alive and (target.attackable or target.chartype==2 or target.chartype==5 or target.chartype==4) and target.distance <= 30 ) then
        SkillMgr.Cast( target )
    end