10-24-2015, 06:12 PM
(This post was last modified: 10-24-2015, 06:17 PM by Underwhelp.)
(10-24-2015, 01:51 PM)Jessix Wrote: Thanks for these profiles, they work and it's nice to have an example of how to edit them to add weather conditions.
The only change I made was the location for Thunderbolt Eels. It was a bit too close to the enemy "Dragonfly Tracer" and would pull aggro if it was close to me before stealthing and I changed the bait to Bladed Steel Jig and no mooch, as that is what I prefer.
Actually I am bit confused as to why it isn't collecting Thunderbolt Eels as collectibles? I don't see anywhere in the profile to add it? Or do I just have to select the fish from the collectible drop down like you would normally?
Here is my edited Red Scrip profile, for those of you that want to idle in Tailfeather and use Bladed Steel Jig for Eels instead.
Actually it idles in Anyx Trine for some reason, anyone know how to specify which aetheryte it uses?
Sigh, I wish Legendary Fisher was still updated, it was so much better than this profile thing :(
You need to select the collectible you wish to use via the drop down box, or edit ffxiv_task_fish.lua, I just edit the ffxiv_task_fish.lua file to force collection of all Red Scrip, illuminiti Perch, and reducible fish.
To edit ffxiv_task_fish.lua copy this code into the function
c_collectibleaddonfish:evaluate()
around line 630.
Just a nested elseif statement. Manually turn on collection buff, and start up profile. It will collect the fish I mentioned automatically.
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
--*******************************************************************