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?
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?