Log in

View Full Version : Map Walking error



fearlesskiller
01-19-2012, 12:59 PM
Since i cannot use radialwalking because it doesnt work for me, i tried using findcolortolerence, though it gives me a compile error. Here's my procedure:


procedure GetInTheBoat;
var x, y:integer;
begin
FindNormalRandoms;
if FindObj(x, y, 'ross', 3958665, 5) then
begin
Mouse(x, y, 0, 0, true);
ChooseOption('ross');
repeat
wait(3000+random(25)) until
FindColorTolerance(x, y, 2381413, MMX1, MMY1, MMX2, MMY2, 10) then
Mouse(x, y, 0, 0, True);
end;
end;

Chris
01-19-2012, 01:32 PM
FindColorTolerance(x, y, 2381413, MMX1, MMY1, MMX2, MMY2, 10) then
Delete the "then" :p

Jhangir
01-19-2012, 02:04 PM
Also for

Mouse(x, y, 0, 0, true);

Use

Mouse(x, y, 2, 2, true);

You need to randomize the clicks a little bit or it will be obivous that you are botting.

John
01-20-2012, 06:46 AM
very nice, making a PC script i see...

fearlesskiller
01-20-2012, 12:45 PM
Yeah i am, but it just stay in the middle protecting the void guy, since its my first script