The problem is with symbols is because im walking out of falador and their are two yew symbols that go in the opposite direction my characters can get lost, i was thinking maybe geting a color out of the symbol and use that.
I havent investigated into the doorprofiles yet but i will.
What about using the below for finding a bank booth?
SCAR Code:
{======================================================================
Finds and Opens the Bank
Modified verison of openbankglass by wizzup?
=======================================================================}
procedure OpenAccount;
var BB :TPoint;
begin
if FindColorTolerance(BB.x, BB.y, 10594993, MSX1, MSY1, MSX2, MSY2, 4) then
begin
MMouse(BB.x, BB.y, 4, 4);
if IsUpTextMulti('ank', 'booth', 'ooth') then
begin
Mouse(BB.x, BB.y, 0, 0, False);
Wait(100);
ChooseOption(BB.x, BB.y, 'uickly');
FFlag(0);
Wait(2000 + Random(500));
BankHides;
end;
end
else
begin
if FindObj(BB.x, BB.y, 'ank', 10594993, 14) then
begin
Mouse(BB.x, BB.y, 0, 0, False);
Wait(50);
ChooseOption(BB.x, BB.y, 'uickly');
FFlag(0);
Wait(2000 + Random(500));
BankHides;
end;
end;
end;