Search found 2 matches

by Zero
Tue Dec 20, 2011 2:02 pm
Forum: MicroMacro general & support
Topic: Few Questions: Attach, Mouse
Replies: 3
Views: 4408

Re: Few Questions: Attach, Mouse

Few more if you don't mind:

1) mouseMove doesn't appear to work correctly, it has some error when moving.
Example:
function main()
mouseSet(0,200);
for x=0,50 do
mouseMove(1,0);
rest(10);
xx,yy=mouseGetPos();
print(x..": "..xx..","..yy);
end
end
startMacro(main);

Returns something like
1: 0 ...
by Zero
Mon Dec 19, 2011 3:51 pm
Forum: MicroMacro general & support
Topic: Few Questions: Attach, Mouse
Replies: 3
Views: 4408

Few Questions: Attach, Mouse

I've been developing a script for a recent sci-fi mmo; I haven't programmed with mm/lua in a few years (since rombot was first released), so my memory is foggy on a few things:

1) Is there any lag between the script and issuing the command to an attached window? Ie. If you loop 1000 times and each ...