
Originally Posted by
Yobesti
doesn't miss any herbs at 60 for me.. this script is faster than any of the old java bot scripts i used before -> respect ! too bad prices will be nerfed soon probably..
what you should fix in script: if you're already logged in & start the script, it types my username & password in public chat (password gets censored though)
It shouldn't do that because:
Code:
DeclarePlayers;
if not(LoggedIn) then
LogInPlayer;
I don't suggest running it too fast, you should use human-like speed, but then again, you have a setting there so everyone could set up their own timer there! 
What happens when you run out of herbs? I didn't find a failsafe for that? It keeps opening and closing the bank and hovering mouse over items? You should do something like:
Code:
if(IsUpTextMultiCustom(['rimy', 'imy'])) then
begin
GetMousePos(x,y);
Mouse(x,y,0,0,false);
WaitOptionMulti(['Withdraw-All', 'All'], 200);
sleep(500+random(100));
end else
begin
CloseBank;
Writeln('Out of herbs.');
LogOut; //Not sure if it's called like that.
Terminatescript;
end;
I would love to see more failsafes anyway. Nevertheless, it is a neat start! Keep up the good work! 
~Eerik.