06-21-2015, 09:27 AM
More on the Level Sync Problem: It only fails to Sync when you are EXACTLY 4 lvls above fate. Once i hit 54 it synced fine. Also if you cant be botherd with one level of not syncing, here is the Fix:
local plevel = Player.level
if (fate.level < plevel - 5) then
return false
end
[change to]
local plevel = Player.level
if (fate.level < plevel - 4) then
return false
end
OR here is the update lua file: ffxi_task_fate.lua
https://www.dropbox.com/s/5rmnoatqugnky6...e.lua?dl=0
I believe it used to be 5 levels or higer to sync now its 4 i dont think it has to do with the cap after all. I just want to help, because you have helped me so much by making the best ffxiv bot that ever will exist.
local plevel = Player.level
if (fate.level < plevel - 5) then
return false
end
[change to]
local plevel = Player.level
if (fate.level < plevel - 4) then
return false
end
OR here is the update lua file: ffxi_task_fate.lua
https://www.dropbox.com/s/5rmnoatqugnky6...e.lua?dl=0
I believe it used to be 5 levels or higer to sync now its 4 i dont think it has to do with the cap after all. I just want to help, because you have helped me so much by making the best ffxiv bot that ever will exist.