MMOMinion

Full Version: Assist mode issue
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
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