
Originally Posted by
gunman82
tyvm mate

Np 
Simba Code:
program MilkEmpty;
{$DEFINE SMART}
{$I SRL/SRL.simba}
const
BucketsToEmpty = 5000;
var
BucketsDone: Integer;
procedure DeclarePlayers;
begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
with Players[0] do
begin
Name := ''; //login in name
Pass := ''; //Password
Pin := ''; // Leave blank if you don't have one
Active := True;
Member := false;
end;
end;
function EmptyBuckets: Boolean;
var
Time, x, y, BucketDtm: Integer;
box: Tbox;
begin
MarkTime(Time);
Keydown(31);
box := InvBox(28);
BucketDtm := DTMFromString('mQwAAAHicY2ZgYJjJzMAwHYhnAXEkIwODLxAHAHF1shmDp4UYGHMB1cEwIxIGAgDsrgUz');
repeat
wait(200);
if FindDtm(BucketDtm, x, y, box.x1, box.y1, box.x2, box.y2) then
Result := True;
until (TimeFromMark(Time) > 10000) or (Result = True);
if IsKeyDown(31) then KeyUp(31);
FreeDtm(BucketDtm);
end;
procedure Proggy;
var
BucketsHour, Timeran: Integer;
begin
TimeRan := (GetTimeRunning / 1000);
BucketsHour := (3600 * (BucketsDone)) / ((TimeRan));
Writeln('The Killers Milk Milk!');
Writeln('Buckets Done: ' + IntToStr(BucketsDone));
Writeln('Buckets per hour: ' + IntToStr(BucketsHour));
Writeln('Time running: ' + TimeRunning);
end;
begin
ClearDebug;
SRL_SixHourFix := True;
SMART_FixSpeed := True;
SetupSRL;
DeclarePlayers;
LoginPlayer;
Wait(2000);
FindNormalRandoms;
ClickNorth(0);
OpenBankFast('veb');
Wait(500 + Random(250));
DepositAll;
Withdraw(0, 0, 0);
Closebank;
Wait(500 + Random(250));
AddItemToActionBar(1, 1);
EmptyBuckets;
BucketsDone := BucketsDone + 28;
repeat
If not LoggedIn then LoginPlayer;
Proggy;
OpenBankFast('veb');
Wait(500 + Random(250));
DepositAll;
Withdraw(0, 0, 0);
Closebank;
Wait(500 + Random(250));
AddItemToActionBar(1, 1);
EmptyBuckets;
BucketsDone := BucketsDone + 28;
until (BucketsDone + 28) > BucketsToEmpty;
end.
Try that, havn't tested it myself, Put the buckets in the first spot.
Always happy to help! 
Happy botting,
~The Killer
Edit: Thought it was pots! oppsy, I'll remake the dtm and fix it now...
Edit2: Done. also added 6 hour support if u ever get enough buckets :P