Newbie Posted January 7, 2012 Share Posted January 7, 2012 Could someone explain what all the numbers in this mean. I have worked out that the x and y are location, but what are the other numbers for? MoveMouseSmoothEx(x, y, 1, 10, 100, 2, 2); Also what does this do. Click mouse ovbiously but what does the x and y refer to? ClickMouse(x, y, true); Quote Link to comment Share on other sites More sharing options...
rsutton Posted January 7, 2012 Share Posted January 7, 2012 HEY THERE sure thing. procedure MoveMouseSmoothEx(x, y: Integer; minsleeptime, maxsleeptime, maxdistance, gravity, forces: Integer); Simulates humanlike mouse movement with more customizable parameters. By default MinSleepTime = 1; MaxSleepTime = 3; MaxDistance = 45; Gravity = 20; Forces = 10. Minsleeptime and Maxsleeptime limit pause between mouse cursor jumps, MaxDistance is maximal allowed distance between mouse jumps, Gravity is how much mouse tends to reach destination, Forces are like random winds, hand shaking simulation. Quote Link to comment Share on other sites More sharing options...
Newbie Posted January 8, 2012 Author Share Posted January 8, 2012 Thanks that was what i needed. Could you also explain what the click mouse bit is about Quote Link to comment Share on other sites More sharing options...
fuzz357 Posted January 9, 2012 Share Posted January 9, 2012 The variables x and y are the coordinates of where you want SCAR to click. The last parameter (true or false) refers to which mouse button (left = true, false = right). Quote Link to comment Share on other sites More sharing options...