I am looking to create an overlay to a strategy game called Dune 2000. It is annoying that to create 10 soldiers, you have to click the icon everytime one is completed. There is no queue.
So without interfering in how the game works, i would like to listen to the mouse movements, and when a click at position XY is made, i would like that to repeat for example ten times, with the right time inbetween. Is there any libary that allows me to do that?
I am looking to create an overlay to a strategy game called Dune 2000.
Share
Below is a Autoclicker code for the right mousebutton. For the left mouse button use
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);andmouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);.