I had my action bar keys Letters and Not numbers. Now when I put the custom keys to numbers, it WILL drop salmon, but NOT trout. Hope this helps find the problem?
I tried setting at diff keys but doesnt help, it just does the above.

Originally Posted by
BMWxi
You could try mine until Flight updates this

Yeah im looking. I want to finish fishing so badly.
EDIT: Wow i fixed it.... o.o o.o thats so surprising
TO fix the above problem, replace your action keys to numbers and not letters then.
Go to LINE 1039
Code:
Function DropFish: Boolean;
var
tC,sC,i: Integer;
begin
ClickContinue(True,True);
tC := CountItems('dtm', DTM_Trout, []);
if tC > 0 then //<------ ADD LINE HERE
for i:=1 to tC do
SendKeys(tSlot,RandomRange(180,230),RandomRange(180,230));
sC := CountItems('dtm', DTM_Salmon, []);
if sC > 0 then
for i:=1 to sC do
SendKeys(sSlot,RandomRange(180,230),RandomRange(180,230));
add
if tC > 0 then
I figured this was the only line that the salmon thing had which made it drop, so I added the same line but changed sC to tC and it started dropping both fish
EDIT2 or 3:
Still having problem with it logging out after saying it doesnt have enough feathers, even though i still have like 20k of them. So hmm, trying to figure out why.