Hello guys welcome to lesson 2 on how to make
a RapidFire [no byte address]

Here the Fullcode :
 
Full Code

//-------------------------------------------------------------//
// Made By Maroon5.
// (c) copyright 2012-2013 Maroon5.
//MPGH Developer
//------------------------------------------------------------//

#include <iostream>
#include <Windows.h>
#include <time.h>


using namespace std;


int main()
{
cout << "################################################# #" << endl;
cout << "[+]RapidFire Hack Works On Any Game(c)2012-2013 Maroon5.[+] " << endl;
cout << "################################################# #" << endl;
cout << "[+]Hotkeys [Shift][+]." << endl;


bool RapidFire = false;
int AutoFireTimer = clock();
int currentTime;
bool MaroonMove = false;
while(true)
{

if(GetAsyncKeyState(VK_SHIFT) & 0x8000)RapidFire = true;
else RapidFire = false;


if(RapidFire)
{

if(!MaroonMove)
{
MaroonMove = true;
mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
}
if(clock() - AutoFireTimer > 21)
{
MaroonMove = false;
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
AutoFireTimer = clock();
}
}
}

}


Here I'll Explain it :

 
Top Includes

//-------------------------------------------------------------//
// Made By Maroon5.
// (c) copyright 2012-2013 Maroon5.
//MPGH Developer
//------------------------------------------------------------//

#include <iostream>
#include <Windows.h>
#include <time.h>


↑ it's a Includes . [Hook]

 
Mid Func

using namespace std;


int main()
{
cout << "################################################# #" << endl;
cout << "[+]RapidFire Hack Works On Any Game(c)2012-2013 Maroon5.[+] " << endl;
cout << "################################################# #" << endl;
cout << "[+]Hotkeys [Shift][+]." << endl;


↑ It's a Message pop-up After inject
.
 
Hotkeys
if(GetAsyncKeyState(VK_SHIFT) & 0x8000)RapidFire = true;
else RapidFire = false;

↑ Hotkeys

Done ! No more Long TuT

Credits :
@Maroon5.
Fleep [Youtube]

Compile it Using C++

Note :
If you get error make sure you change The
"Capital letter code"
To Small letter
Pic :