01-02-2016, 06:33 PM
(This post was last modified: 01-02-2016, 06:35 PM by alphalolwtf.)
So, I figured a fix for the invalid target issue. Skill Manager is not actually reading the value you choose on the drop-down in the Macro Table Menu.
Insert these lines below line 2356 in \LuaMods\ffxivminion\ffxiv_skillmgr.lua
I'm sure this is quite a dirty fix since its my first time looking at this bot's code and LUA altogether but it got the job done on my end.
Insert these lines below line 2356 in \LuaMods\ffxivminion\ffxiv_skillmgr.lua
Code:
local mtargetfunc = 0
local targetstring = skill["m"..tostring(i).."actiontarget"] or ""
if (targetstring == "Target") then
mtargetfunc = SkillMgr.CurrentTarget.id
end
I'm sure this is quite a dirty fix since its my first time looking at this bot's code and LUA altogether but it got the job done on my end.