To anyone who wishes to help:
I need help on finding an NPC. I dont know wheather to use FindColorTolerance and then Mouse, or wheather to use FindObj, or just use a bitmap. I am currently using something like the following: (note there will probably be errors because I am typing this on the spot, not looking at my script.)
SCAR Code:
Function Find*****:Boolean;
var
x : Integer;
y : Integer;
begin
if(FindColorTolerance(x,y,*****,MCX1,MCY1,MCX2,MCY2,10)) then
begin
MMouse(x,y,3,3);
If (IsUpTextMulti('alk','***','tal')) then
Mouse(x,y,1,1,False);
ChooseOption('rade');
Result := True;
Exit;
end;
Result := False;
Writeln('Could Not Find *****');
end;
All Help Would be Greatly Appreciated.
~JNCR