Log in

View Full Version : is this detectable?



Lance
05-07-2009, 08:10 AM
ok so i always wondered why scar would kinda shake your mouse around alittle before clicking, is this why?

MMouse(x, y, 3, 3);
if IsUpText('ew') then
begin
Mouse(x, y, 3, 3, True);
end;

does the fact that the randomness is set to 3 make it so before it clicks it finds a new position random(3) pixles away, causing that little jitter in the mouse? if so, should there be a bit of random movement when you click? or should i set those values to 0?

Sandstorm
05-07-2009, 08:12 AM
I normally set it to zero, as it stops that "jitter". I don't know if it's detectable or not though. Generally it's personal preference I believe.

~Sandstorm

senrath
05-07-2009, 08:13 AM
Use this:

MMouse(x, y, 3, 3);
if IsUpText('ew') then
begin
GetMousePos(x, y);
Mouse(x, y, 0, 0, True);
end;

Lance
05-07-2009, 08:15 AM
wait.. why the GetMousePos(x, y);?

senrath
05-07-2009, 08:19 AM
Because otherwise it won't click the exact same spot. Without the GetMousePos, Mouse(x, y, 0, 0, True) would click the original point defined by x and y, not the point with the randomness added that your mouse is over.

Lance
05-07-2009, 08:22 AM
ohh ok thanks