10-23-2015, 01:23 PM
(This post was last modified: 10-23-2015, 02:24 PM by Underwhelp.)
Quote:Thanks for the response, I figured you could add the collectibility to the profile directly. Which would be a great feature btw, hint hint. I like running around and collecting all the scrip fish throughout the day and hang on to them for turn ins at a later time. Also would help with Aetherial Reduction fishing cause all those fish are on timers as well.
As a temp fix if you copy the code below into ffxiv_task_fisk.lua around line 630. Goes into the "function c_collectibleaddonfish:evaluate()"
This will set all Red Scrip, Ill. Perch, and Reducible fish to always be collectible. Still need to have collectors glove manually turned on. Then run your profile as normal. Of course if you re update ffxiv_task_fish.lua you will need to copy back in this chunk of code.
Code:
--**********************
if (info.itemid == 12825 and info.collectability >= 1526) then
validCollectible = true
elseif (info.itemid == 12830 and info.collectability >= 2441) then
validCollectible = true
elseif (info.itemid == 12837 and info.collectability >= 89) then
validCollectible = true
elseif (info.itemid == 12828 and info.collectability >= 813) then
validCollectible = true
elseif (info.itemid == 12774 and info.collectability >= 320) then
validCollectible = true
elseif (info.itemid == 12804 and info.collectability >= 826) then
validCollectible = true
elseif (info.itemid == 12831 and info.collectability >= 1) then
validCollectible = true
elseif (info.itemid == 12833 and info.collectability >= 1) then
validCollectible = true
elseif (info.itemid == 12821 and info.collectability >= 1) then
validCollectible = true
elseif (info.itemid == 12802 and info.collectability >= 1) then
validCollectible = true
elseif (info.itemid == 12784 and info.collectability >= 1) then
validCollectible = true
elseif (info.itemid == 12761 and info.collectability >= 1) then
validCollectible = true
end
--******************