Mouse Problem
go so i have made a app that would simulate the mouse click 3 times for ingame firing the bug i have is when i press the left mouse button to fire it also counts that therfor having 4 shots. this means its getting buggy and also not working the right way.
iv tryed the keybd_event but this will not work ingame so my question is...
is there a way to disable the mouse click, send the key press then re enable it?
for example
Disable mouse click
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
mouse_event(MOUSEEVENTF_LEFTUP,0,0,0,0);
Enable mouse click
so it onley sends the mouse click "_
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
mouse_event(MOUSEEVENTF_LEFTUP,0,0,0,0);
"
thanks for reading and heelp