Thread Rating:
  • 5 Vote(s) - 3.8 Average
  • 1
  • 2
  • 3
  • 4
  • 5
fish task white-list bug report
#1
Line 173 and 189
Code:
for mustkeep in StringSplit(whitelistHQ,",") do
    if (mustkeep == lastCatch) then
        reutrn false
    else
        return true
    end
end

Code:
for mustkeep in StringSplit(whitelist,",") do
    if (mustkeep == lastCatch) then
        reutrn false
    else
        return true
    end
end

This logic will release the fish if it's the 2nd or 3rd in white-list.
return true after for loop.
Reply
#2
This would work better:

Just replace those lines with these and it should do the trick.

Code:
local IsInWhitelist = false
for mustkeep in StringSplit(whitelist,",") do
  if (mustkeep == lastCatch) then
    IsInWhitelist = true
  end
end
return IsInWhitelist
Reply
 


Forum Jump:


Users browsing this thread: 1 Guest(s)

We help you win the game.

FFXIV Bot and More.

 

Products