SCAR Code:
DTM := DTMFromString('78DA632C61626008654001FFFFFF67F80FA41' +
'921ECFF8C79403589A86ADEBE65609083AA0101C6024C357FFE30' +
'A1AA01D99540404D05504D127E3500A4E91464');
Edit: if u wnana test it use this
SCAR Code:
program New;
{.include srl\srl.scar}
var
DTM : integer;
function ToDBank : boolean;
var c : tpoint;
i : integer;
begin
if not LoggedIn then Exit;
i := 0;
repeat
wait(200);
i := i + 1;
if i > 20 then
begin
LogOut;
WriteLn('ERROR: Could not find bank, Logging off.');
result := False;
Exit;
end;
if DTMRotated(DTM, c.x, c.y, MMX1, MMY1, MMX2, MMY2) then
begin
i := 21;
end else if FindSymbol(c.x, c.y, 'bank') then
begin
i := 21;
end;
until i > 20
Mouse(c.x, c.y, 0, 0, true);
fflag(0);
end;
begin
setupSRL;
DTM := DTMFromString('78DA632C61626008654001FFFFFF67F80FA41' +
'921ECFF8C79403589A86ADEBE65609083AA0101C6024C357FFE30' +
'A1AA01D99540404D05504D127E3500A4E91464');
repeat
toDBank;
until false;
end.
no you can't have that, it's mine.
EditEdit: to make it so that you search in bottom half of the minimap just do this
SCAR Code:
DTMRotated(DTM, c.x, c.y, MMX1, MMY1, MMX2, MMY2) //instead of this do this
DTMRotated(DTM, c.x, c.y, MMX1, {replace with y value to search below}, MMX2, MMY2)