Hello, I want to use this function in a Private Server if possible.
The text : http://screensnapr.com/v/BfFhvx.pngCode:program New;
{$i SRL/SRL.scar}
var x,y:Integer;
begin
SetupSRL;
MMouse(585, 259, 0, 0);
Wait(100);
Mouse(585, 259, 0, 0, False);
If FindText(x, y, 'Drop', 'Arial', 563, 237, 734, 494) then
WriteLn('Found!');
MMouse(x, y, 0, 0);
end.
It compiles fine, but doesn't work therefore Simba opens a new Tab and gives me this
And I have no clue how to get it to work, since I never used Bitmaps.Code:function CreateBitmapMaskFromText(txt,chars : string) : integer;
begin
result := BitmapFromText(txt,chars);
end;

