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 › Game Hack & Cheat Development › General Game Hacking › Help with simple game hack

QuestionHelp with simple game hack

Posts 1–2 of 2 · Page 1 of 1
turdsammiches
turdsammiches
Help with simple game hack
ok, so i'm trying to make a hack for a game, just some simple point cheat. so here's the code i have written following a tutorial.

Code:
#include <windows.h>


using namespace std;

DWORD WINAPI LoopFunction( LPVOID lpParam )
{

    BYTE pointsON[] = {0x83, 0x05, 0xE8, 0x26, 0x4C, 0x00, 0x80};
    BYTE pointsOFF[] = {0x83, 0x05, 0xE8, 0x26, 0x4C, 0x00, 0x19};

    bool pointCheat = false;

    HANDLE Game = GetCurrentProcess();

    while(1) {
        if (GetAsyncKeyState(VK_F1)&0x80000) {
            if (pointCheat == true) {
                WriteProcessMemory(Game, (LPVOID*)0x44B62D, &pointsOFF, 7, 0);
                pointCheat = false;

            }
            else if( pointCheat == false) {
                WriteProcessMemory(Game, (LPVOID*)0x44B62D, &pointsON, 7, 0);
                pointCheat = true;
            }

        }
    }
//some CPU relief
    Sleep(200);
    return 0;
}

BOOL WINAPI DllMain (HINSTANCE hModule, DWORD dwAttached, LPVOID lpvReserved)
{
    if (dwAttached == DLL_PROCESS_ATTACH) {
        CreateThread(NULL,0,&LoopFunction,NULL,0,NULL);
    }
    return 1;
}
whenever i compile and inject this dll, it does nothing in the game, i press f1 but the points i get stay the same...any help?
#1 · 14y ago
turdsammiches
turdsammiches
any help?
#2 · 14y ago
Posts 1–2 of 2 · Page 1 of 1

Post a Reply

Similar Threads

  • I NEED HELP WITH MOD AND HACK IN A GAMEBy Nick086 in Suggestions, Requests & General Help
    2Last post 15y ago
  • Need help with G-force hackBy neonstar in CrossFire Help
    6Last post 15y ago
  • Help with Itom Shop Hack??By Cataldo in WarRock Korea Hacks
    1Last post 19y ago
  • need help with cheat engine hacks for u to tell me including amazing bypasserBy george567 in WarRock - International Hacks
    5Last post 19y ago
  • Need help with my warrock hack codeBy dikketr0l in Visual Basic Programming
    6Last post 19y ago

Tags for this Thread

None