mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-11 11:55:02 -05:00
ade23dff0d
git-svn-id: http://www.villavu.com/repositories/merlijn/mufasa@54 3f818213-9676-44b0-a9b4-5e4c4e03d09d
20 lines
638 B
PHP
20 lines
638 B
PHP
function findcolor(var x, y: integer; color, x1, y1, x2, y2: integer): boolean;
|
|
begin
|
|
Result := CurrThread.Client.MFinder.FindColor(x, y, color, x1, y1, x2, y2);
|
|
end;
|
|
|
|
function findcolortolerance(var x, y: integer; color, x1, y1, x2, y2, tol: integer): boolean;
|
|
begin
|
|
Result := CurrThread.Client.MFinder.FindColorTolerance(x, y, color, x1, y1, x2, y2, tol);
|
|
end;
|
|
|
|
procedure SetColorToleranceSpeed(cts: Integer);
|
|
begin
|
|
CurrThread.Client.MFinder.SetToleranceSpeed(cts);
|
|
end;
|
|
|
|
function SimilarColors(Col1,Col2,Tol : integer) : boolean;
|
|
begin;
|
|
Result := CurrThread.Client.MFinder.SimilarColors(Col1,Col2,Tol);
|
|
end;
|