Code:
Edit - very sorry for the double post, at the time my internet was messing up alot. I have read the bank screen thing. If I have indeed dloaded someone else's bank script. Please inform me on how to change it PROPERLY, lol, without further problems.. I'm still new to scar, but learning from every answer you guys give ;)
If this is what my whole bankscreen script has, what do I add, or remove.. considering there isn't a 185 anywhere. Once again I must thank you guys for your time and patience.
{************************************************* ******************************
function BankScreen: Boolean;
by: SRL Dev Team
Description: Finds Bankscreen. Returns true if Found.
************************************************** *****************************}
function BankScreen: Boolean;
var
x, y: Integer;
begin
if FindColor(x, y, 2070783, 22, 31, 473, 52) then
Result := IsTextAtEx(x, y - 2, 'The Bank of', 0, upchars, True, False, 0, 0,
2070783)
else if FindColorTolerance(x, y, 2070783, 22, 31, 473, 52, 30) then
Result := IsTextAtEx(x, y - 2, 'The Bank of', 30, upchars, True, False, 0, 0,
GetColor(x, y));
end;