/* Fires semi-automatic weapons at increased rate of fire. Works best with pistols. Out of pistols works best with the Terrorist Dual Elites. Works on 1.6 and Source, technically it would work on any fps game. Just run this program when ever you want this ability enabled. It will run in background waiting for the middle mouse button to be clicked. I did not take time to format code. Many magic numbers embedded in loops haha. Oh yea and this really isn't C or C++ seeing as though all I included was Windows.h lol. <3 LogicKills */ #include void click(void); int main() { while(1){ Sleep(1); if(GetAsyncKeyState(VK_MBUTTON)){click();}; } } void click() { for(int i = 1; i < 45; ++i){ Sleep(35); mouse_event(MOUSEEVENTF_LEFTDOWN, 500, 500, 0, 0); Sleep(50); mouse_event(MOUSEEVENTF_LEFTUP,500,500,0,0);} }