Hello,
Could someone revise this script and tell me what's wrong with it please?
It compiles but it does nothing 
Anyaways, here it is:
SCAR Code:
program New;
{.include SRL/SRL.scar}
var
x, y, font, mask: integer;
Green: string;
begin
font:=LoadCharsFromFont2('calibri', 11, true, false, false, false);
Mask:=CreateBitmapMaskFromText(Green, font)// Green text
If(FindBitmapMaskTolerance(Mask, x, y, 820, 282, 857, 297, 0, 10))then
begin
WriteLn('found');
FindColor(x, y, 974878,737,310,943,366)// Green Color
wait(100)
mouse(x,y,5,5, true);
end;
end.
Here is the botcheck it is associated with:
http://img153.imageshack.us/img153/7...uredonevx1.jpg
Thanks in advance,
Noobmaster