Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › MultiPlayer Game Hacks & Cheats › Call of Duty Hacks & Cheats › External Rapid Fire (Any Game) & Source Code

External Rapid Fire (Any Game) & Source Code

Posts 1–11 of 11 · Page 1 of 1
[EPiC] Rev
[EPiC] Rev
External Rapid Fire (Any Game) & Source Code
Hey guys. EPiC REV here. I told you I'd be posting soon. I just completed a simple external rapid fire hack that works in any game. I don't really think it's anything special but I thought I would post it anyways as well as the source code (C++). Anyways, it's undetectable as of right now and I hope you guys enjoy.

Source Code:
Code:
// Rapid Fire.cpp : Defines the entry point for the console application.// Copyright 2013 @ EPiC REV


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


using namespace std;


int main()
{
    cout << "===============================================================================" << endl;
    cout << "External Rapid Fire by EPiC REV (Copyright 2013 @ EPiC REV). Works in any game!" << endl;
    cout << "===============================================================================" << endl;
    cout << "Press right-click in game to rapid fire." << endl;


    bool RapidFire = false;
    int AutoFireTimer = clock();
    int currentTime;
    bool MouseDown = false;
    while(true)
    {
        //Check for right mouse button to be down.
        if(GetAsyncKeyState(VK_RBUTTON) & 0x8000)RapidFire = true;
        else RapidFire = false;


        if(RapidFire)
        {
            //only go if so many milliseconds have passed.
            if(!MouseDown)
            {
                MouseDown = true;
                mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0); //
            }
            if(clock() - AutoFireTimer > 21)
            {
                MouseDown = false;
                mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0); //
                AutoFireTimer = clock();
            }
        }
    }

}

You can still fire normally (L-Mouse) but if you want to rapid fire you just press R-Mouse.
It runs in a console window so it's not injected.

Anyways, here's the download:

Virus Scan//
VirusTotal (1/45)
VirSCAN (1/37)

Rapid Fire_mpgh.net.zip
#1 · edited 13y ago · 13y ago
Hero
[MPGH]Hero
Looks fine, approved. Use at your own risk.
#2 · 13y ago
DE
devilaim
i hope if work

---------- Post added at 06:38 AM ---------- Previous post was at 06:25 AM ----------

error for me.....first error mscvp110d.dll then i fix it after that i have (0xc000007b)????
#3 · 13y ago
[EPiC] Rev
[EPiC] Rev
Error with .exe or source code? I will try to help.
#4 · 13y ago
Heterodon.
Heterodon.
nice work! @[EPiC] Rev is working on mw2?
#5 · 13y ago
mechaaa
mechaaa
great work
#6 · 13y ago
Chrome Boy
Chrome Boy
Thanks a lot very useful
#7 · 13y ago
eww555
eww555
Thanks man, good job
#8 · 13y ago
YO
yoda23456
thanks for the realese man ;D!
#9 · 13y ago
BA
bannerkid
thanks for posting! loving it!
#10 · 13y ago
AV
AVA_AVA
Nice code
Code:
// Rapid Fire.cpp : Defines the entry point for the console application.// Copyright 2013 @ EPiC REV


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


using namespace std;


int main()
{
    cout << "===============================================================================" << endl;
    cout << "External Rapid Fire by EPiC REV (Copyright 2013 @ EPiC REV). Works in any game!" << endl;
    cout << "===============================================================================" << endl;
    cout << "Press right-click in game to rapid fire." << endl;


    bool RapidFire = false;
    int AutoFireTimer = clock();
    int currentTime;
    bool MouseDown = false;
    while(true)
    {
        //Check for right mouse button to be down.
        if(GetAsyncKeyState(VK_RBUTTON) & 0x8000)RapidFire = true;
        else RapidFire = false;


        if(RapidFire)
        {
            //only go if so many milliseconds have passed.
            if(!MouseDown)
            {
                MouseDown = true;
                mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0); //
            }
            if(clock() - AutoFireTimer > 21)
            {
                MouseDown = false;
                mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0); //
                AutoFireTimer = clock();
            }
        }
    }

}
#11 · edited 13y ago · 13y ago
Posts 1–11 of 11 · Page 1 of 1

Post a Reply

Similar Threads

  • Any c# tuts, source codes, anything?!?!?!By t7ancients in C++/C Programming
    5Last post 17y ago
  • New Rapid Fire Script with Source CodeBy DahInternetz in Call of Duty Modern Warfare 2 Private Servers
    8Last post 15y ago
  • Makeing/Coding Hacks (for any game)By CloneTrooper in Programming Tutorial Requests
    6Last post 17y ago
  • edit gaming sites or any webpage with javascript code! :DBy manmark12 in Java
    6Last post 16y ago
  • Source code for any d3d/memory hackBy Ragehax in C++/C Programming
    6Last post 16y ago

Tags for this Thread

#any game#c++#rapid fire#rapid hack#rapidfire#sourcecode#tutorial