View previous topic :: View next topic |
Author |
Message |
Negima I post too much Reputation: 5
Joined: 22 May 2007 Posts: 2220
|
Posted: Mon Dec 10, 2012 3:56 pm Post subject: [Release] Master Click V1 |
|
|
So I just got back into coding C++ and wanted to finish a auto clicker I had started some time ago. I know I still have a lot to learn and all but this was a pretty big accomplishment for me figuring out how to set a hotkey in a console app, theres also a lot of flexibility choosing your clicking speed. To toggle the AC use left ctrl and to change the click speed press left shift.
http://rapidshare.com/files/900764090/Master%20Click.exe
|
|
Back to top |
|
|
clash of clans hacks Master Cheater Reputation: 63
Joined: 18 Jul 2007 Posts: 368 Location: Remember when we all used to put funny lines here?
|
Posted: Fri Jan 11, 2013 9:02 am Post subject: |
|
|
Whoa, I just realized your name is Major Shake, not Master Shake.
|
|
Back to top |
|
|
Negima I post too much Reputation: 5
Joined: 22 May 2007 Posts: 2220
|
Posted: Fri Jan 11, 2013 1:11 pm Post subject: |
|
|
Adnihil wrote: | Whoa, I just realized your name is Major Shake, not Master Shake. | I do my best. Anyway, here's the source:
Code: | #include <iostream>
#include <Windows.h>
#include <winuser.h>
int x=0;
int main()
{
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),0x17C);
std::cout << "Master Click V1.0\n";
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),0x0C);
std::cout << "By Major Shake of CEF\n\n";
loop1:
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),0x0A);
std::cout << "\nControls:\n" "1. Left Ctrl=Start/Stop AC\n" "2. Left Shift=Change AC Rate";
unsigned short ClicksPerSecond;
unsigned short LoopSleep;
std::cout << "\n\nEnter Clicking Speed\n";
std::cout << "(Clicks Per Second/cps)\n";
std::cin >> ClicksPerSecond;
LoopSleep=1000/ClicksPerSecond;
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),0xA);
std::cout << "Auto Clicker Set To " << ClicksPerSecond << "cps\n";
std::cout << "Press Left Control To Togle Autoclicker\n";
for(;;)
{
if(x>=15)
{
x=x-15;
}
if(GetAsyncKeyState(VK_LSHIFT) && 1)
{
goto loop1;
}
if(GetKeyState(VK_CONTROL) && 1)
{
x++;
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),x);
std::cout<< "Clicking! Press Control to toggle on and off\n";
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
Sleep(LoopSleep);
}
}
} |
|
|
Back to top |
|
|
starqb_hungstud How do I cheat? Reputation: 0
Joined: 28 Oct 2013 Posts: 4
|
Posted: Tue Oct 29, 2013 9:42 pm Post subject: file not found |
|
|
any chance of a new download
|
|
Back to top |
|
|
DELETED_USER Newbie cheater Reputation: 1
Joined: 02 Oct 2013 Posts: 24 Location: Venezuela
|
Posted: Wed Oct 30, 2013 12:17 am Post subject: Re: file not found |
|
|
starqb_hungstud wrote: | any chance of a new download |
Why? there's the source code. Just compile it.
|
|
Back to top |
|
|
|