Athemos Posted August 9, 2016 Share Posted August 9, 2016 Hello, I was wondering if it's possible to do such thing I have a color follow Script for a game but its using my main cursor is it possible to make it silent mouse klick? Script im running is here and it works fine but I just need it not to use my main cursor thanks! Program FindColorClickColor; Const Color = 65280; // color you wish to click Procedure FindClick; Var X,Y,W,H: Integer; begin GetClientDimensions(W,H); If FindColorTolerance(X,Y,Color,0,0,W,H, 4) then Begin MoveWindMouse(X,Y,0,0); ClickMouse(X,Y,True); end; end; begin Repeat // Repeats for ever.. or until program is stopped. FindClick; Wait(150); Until False; end. Quote Link to comment Share on other sites More sharing options...
BryceTheCoder Posted August 17, 2016 Share Posted August 17, 2016 MoveWindMouse function should move your actual mouse. What do you need help with exactly? Quote Link to comment Share on other sites More sharing options...
Wanted Posted August 22, 2016 Share Posted August 22, 2016 Search up APPA by Nielsie95 http://forums.scar-divi.com/showthread.php?t=1261 Quote Link to comment Share on other sites More sharing options...