10-10-2013, 09:15 PM
This data doesn't seem accessible at the moment, currently you have to do something like
modified in ffxiv_task_gather.lua
and even then it will spam the skills still as you cannot check gp.
Thanks.
Code:
for i, item in pairs(list) do
if item.chance > 50 then
if Player.job == FFXIV.JOBS.MINER then
local ca = ActionList:Get(295)
if (ca.isready and not ca.iscasting) then
ActionList:Cast(295,0)
end
ca = ActionList:Get(230)
if (ca.isready and not ca.iscasting) then
ActionList:Cast(230,0)
end
end
Player:Gather(item.index)
ml_task_hub:CurrentTask().gatherTimer = os.time()
return
end
end
and even then it will spam the skills still as you cannot check gp.
Thanks.