Hermpie asked for some help so i thought id post here

That is how my Dtm editor looked for the room and all the points apart from the main one had a tolerance of 25, itll need tweaking im sure but should work..
if anyone else has any suggestions for getting into the hider other than FindSymbol because the symbols move around alot and get covered etc... then post
Test Script
SCAR Code:
program ByMatDeB;
{.include srl/srl.scar}
procedure FindRoom;
var x,y,Room:integer;
var WhichAngle:extended;
begin
Room := DTMFromString('78DA63CC676260D0654001137B1319FE03694' +
'620FE0F048C39403539A86A1A7CCD1924A16A40803109A8C618D3' +
'1C14353540352604D4B402D55812503301A8261DBF1A003605127' +
'E');
if(FindDTMRotated(Room,x,y,MMX1,MMY1,MMX2,MMY2,-pi*2,pi*2,0.2,WhichAngle))then
begin
if not(FindSymbolIn(x,y,'bank',x-25,y-25,x+25,y+25))then
begin
Mouse(x,y-10,2,12,True);
Writeln('Found');
end;
end;
end;
begin
SetupSRL;
ActivateClient;
PerfectNorth;
FindRoom;
end.