
Untitled
By: a guest on
Jul 9th, 2011 | syntax:
None | size: 0.64 KB | hits: 63 | expires: Never
program Autominer;
{.include SRL\SRL.scar}
var
x, y, tx, ty: integer;
procedure Minethis;
begin
repeat
if(FindColor(x, y, 7564869, 0, 0, 416, 203))then
MoveMouse(x, y);
wait(500);
ClickMouse(x, y, true);
wait(26000+random(2000));
until(invfull=true)
end;
procedure Bankthis;
begin
if(invfull=true)then
if(Findcolor(tx, ty, 210511, 0, 0 449,236))then
MoveMouse(tx,ty);
wait(500);
ClickMouse(tx,ty,false);
wait(500);
if(FindObjMultiText(tx, ty, 'se-', 'ckly', 'qui', 210511, 10)then
MoveMouse(tx, ty)
wait(500)
ClickMouse(tx, ty, true)
end;
begin
SetupSRL;
repeat
Minerr;
Bankthis;
until(invfull=true);
end.