Log in

View Full Version : need a autoaimer



madmike
01-20-2009, 02:13 AM
can someone make me an auto aimer for a game i play the games battlefield i can test it and all i just need the script whre to put the colors and a little help after that

benjaa
01-20-2009, 02:49 AM
so you want it to click a color??

program Shooter;

const
EnemyColor = 000000; //input color


procedure ClickThatFool;
var
x, y : integer;
begin
if(FindColorTolerance(x, y, EnemyColor, <x1>, <y1>, <x2>, <y2>, 10))then
begin
Mouse(x, y, 0, 0, True); //left clicks
//Wait(5000); // i dont know if you want this or not
end;
end;

begin
ActivateClient;
ClickThatFool;
end;

that will find the color, and click it once

i have NO idea what you'd put for x1, x2, y1, y2 in this though...