
Originally Posted by
Dan's The Man
Wouldn't it appear straight away when you move the mouse to the location though?
this is what you usually do:
SCAR Code:
MMouse(x, y, 3, 3);
wait(300+random(50));
GetMousePos(x, y);
if IsUpText('lol') then
Mouse(x, y, 0, 0, true);
this is what you'd do now:
SCAR Code:
MMouse(x, y, 3, 3);
if WaitUpText('lol', 300) then
begin
wait(Random(50));
GetMousePos(x,y);
Mouse(x, y, 0, 0);
end;
the Difference is that instead of waiting 300 ms to check for uptext, you wait in cycles, meaning that as soon as it is up you mvoe on.
~RM