Hello, I am just trying to edit your script a little for my own use, Im new to programming and would like some feedback. What I am trying to do is, fish a inventory of salmon (therefore dropping the trout) before I bank.
Would this work:
Code:
procedure DropTrout;
var
Trout: TReflectInvItem;
begin
repeat
Trout.Find('Trout');
Trout.Drop();
until(Trout.Find('Trout')=False);
end;
if I inserted it^ into the correct location? I'm not really sure if .Drop() would even work, I've been trying to get it to work, ill continue to try 
Or use something along the lines of
Code:
mouseBox(tB, mouse_right);
Reflect.Text.ChooseOption('Drop', 2500);
Im trying to work out how you did it in your script but holy heck its complex, this must have taken you some brainpower to write!
Also, how would I go about randomising the walking path a little? It seems very botlike when I play (I have high ping so I pause between walks) 
Thanks for the great script!