In a game I wish to move the mouse 1 pixel to the right all the time.
First problem is that it doesnt seem to move 1 pixel but more like 50 pixels. I tried turning the mouse sensitivity ingame all the way down but didnt help much.
2)
second problem is after each movement it goes instantly back to the starting possion. Instead I want it to move another x coordinate to the right everytime the loop has run.
like it goes from 400, 400 to 401, 400. then instantly back to 400, 400 then to 401, 400 etc. instead i want it to go 400, 400 to 401, 400 to 402, 400 etc.
CoordMode, Mouse, Screen
loop
{
MouseMove, 1, 0, 100, R
sleep 200
}




