Derek-
08-21-2007, 07:24 AM
There's no way to NOT click in the new mousebox huh...
(well without messing with the procedure)
because well the procedure is..
procedure MouseBox(xs, ys, xe, ye: Integer; click: Boolean);
var
a, b: Integer;
begin
a := Max(xs, xe) - Min(xs, xe);
b := Max(ys, ye) - Min(ys, ye);
a := Random(a);
b := Random(b);
MMouse(xs + a, ys + b, 0, 0);
case click of
True: Mouse(xs + a, ys + b, 0, 0, True);
False: Mouse(xs + a, ys + b, 0, 0, False);
else Exit;
end;
end;
so for 'click' you can only input true or false but true leftclicks and false rightclicks...
EDIT : Thx to iloveit8's page i found the way around this for now lol thx iloveit you saved me a lot of time =]
heres the page if you're having the same problem
http://www.villavu.com/forum/showthread.php?t=15403
(well without messing with the procedure)
because well the procedure is..
procedure MouseBox(xs, ys, xe, ye: Integer; click: Boolean);
var
a, b: Integer;
begin
a := Max(xs, xe) - Min(xs, xe);
b := Max(ys, ye) - Min(ys, ye);
a := Random(a);
b := Random(b);
MMouse(xs + a, ys + b, 0, 0);
case click of
True: Mouse(xs + a, ys + b, 0, 0, True);
False: Mouse(xs + a, ys + b, 0, 0, False);
else Exit;
end;
end;
so for 'click' you can only input true or false but true leftclicks and false rightclicks...
EDIT : Thx to iloveit8's page i found the way around this for now lol thx iloveit you saved me a lot of time =]
heres the page if you're having the same problem
http://www.villavu.com/forum/showthread.php?t=15403