HOW TO FIX THE SCRIPT
Lines may vary due to different amount of players
Goto line 493
Delete it
Maybe you wont have to do the next couple steps but i did
Go to line 554
Code:
WhirlPools := Whirlpools + 1;
Delete
Go to line 1079
Delete
Now things that you will definantly have to do
Goto line 1367
Code:
Smartsetup(SmartPrefix, true, true, false);
Change it to
Code:
SmartsetupEx([worldnumber without the brackets], true, true, false);
At the top where it says smart prefix at script setup, just put the number of the world you want IE '91' instead of 'World91'
Now change line 1353 and 1361 to
Now go to
Code:
{
<----------------------------------------------------------------->
Function FindFeather: Boolean;
Description:
If Feather is not found, then logs out.
Made By: Wizzup?
<----------------------------------------------------------------->
}
Function FindFeather: Boolean;
Begin
If Not LoggedIn Then Exit;
Result := True;
If Not IsFeather Then
Begin
Result := False;
NoFeather := True;
Exit;
End;
End;
{
<----------------------------------------------------------------->
Function FindRod: Boolean;
Description:
If Rod is not found, then tries to retreive it.
Made By: Wizzup?
<----------------------------------------------------------------->
}
Function FindRod: Boolean;
Var
x, y, i: Integer;
Begin
If Not LoggedIn Then Exit;
Result := True;
If Not IsFishRod Then
Begin
NoRod := True;
Result := False;
Wait(4000+Random(1000));
MakeCompass('W');
Wait(500);
WriteLn('Lost Rod, retreiving it.');
For I := 0 To High(FishRodColors) Do
Begin
If FindObj(x, y, 'rod', FishRodColors[I], 0) Then
Begin
Wait(40);
Mouse(x, y, 0, 0, True);
Wait(100);
FFlag(0);
Wait(500);
MakeCompass('N');
If IsFishRod Then
Begin
WriteLn('Found rod: ' +IntToStr(I));
Result := True;
Rods := Rods + 1;
ReportVars[2] := ReportVars[2] + 1;
NoRod := False;
Exit;
End;
End Else WriteLn('Did not find the Rod: '+IntToStr(I));
End;
End;
End;
Delete it all
Now search for anything saying findrod or findfeather, and delete
Now its fixed, in the future, learn some scripting for yourself 

+rep if this helped PLZ