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 › Programming › C++/C Programming › My WarRock AutoMedic Hack - What's wrong?

My WarRock AutoMedic Hack - What's wrong?

Posts 1–13 of 13 · Page 1 of 1
DE
Denny101
My WarRock AutoMedic Hack - What's wrong?
I tried to create a hack and used the new addys.
This is my Code:

Code:
#include <windows.h>
#include <stdio.h>
#include <stdafx.h>

// Adress List //

#define Playerpointer 0x00CB11C8 
#define Serverpointer 0x00B39BE0
#define ADR_AUTOMEDIC 0x00690F60

DWORD *ingame= (DWORD*)Playerpointer;
DWORD *outgame= (DWORD*)Serverpointer;

void automedic()
{
if(GetAsyncKeyState(VK_NUMPAD7) &1)
{
DWORD dwProtect;
const BYTE nop[6] = {0x90,0x90,0x90,0x90,0x90,0x90};
VirtualProtect((void*)(ADR_AUTOMEDIC), 6, PAGE_EXECUTE_READWRITE, &dwProtect);
memcpy((void*)ADR_AUTOMEDIC, &nop, 6);
VirtualProtect((void*)(ADR_AUTOMEDIC), 6, dwProtect, NULL);
} 
}


void HackThread() 
{
for(;; ) 
{
if(*ingame) //check if we are ingame.. prevent crashs
{
automedic()
;}
Sleep(200); //prevent for overloading the cpu
}
}
What's wrong?

Thx

Denny101
#1 · 17y ago
Katie_Perry
Katie_Perry
I don't know, but try proof reading.
#2 · 17y ago
DE
Denny101
Thank You.
This hack can be createt, but it doesn't work
#3 · 17y ago
PowerPerry
PowerPerry
I think ur server/player pointers are wrong
#4 · 17y ago
why06
why06
theres no Dll main method? where u planning to inject this? Because I think u need a DLL Main.
#5 · 17y ago
Hell_Demon
Hell_Demon
if this is infact 'your' code(which I doubt) you should be smart enough to figure it out by yourself.

c+p pl0x
#6 · 17y ago
zhaoyun333
zhaoyun333
Code:
#include <windows.h>
#include <stdio.h>
#include <stdafx.h>

// Adress List //

#define Playerpointer 0x00CB11C8 
#define Serverpointer 0x00B39BE0
#define ADR_AUTOMEDIC 0x00690F60

DWORD *ingame;
DWORD *outgame;
void automedic()
{
if(GetAsyncKeyState(VK_NUMPAD7) &1)
{
DWORD dwProtect;
const BYTE nop[6] = {0x90,0x90,0x90,0x90,0x90,0x90};
VirtualProtect((void*)(ADR_AUTOMEDIC), 6, PAGE_EXECUTE_READWRITE, &dwProtect);
memcpy((void*)ADR_AUTOMEDIC, &nop, 6);
VirtualProtect((void*)(ADR_AUTOMEDIC), 6, dwProtect, NULL);
} 
}


void HackThread() 
{
while(1) 
{
ingame=(DWORD*)Playerpointer;
if(*ingame) //check if we are ingame.. prevent crashs
{
automedic()
;}
Sleep(200); //prevent for overloading the cpu
}
}
This should work but it will be detected since asm hacks are detected. Get am asm bypass.
#7 · 17y ago
DE
Denny101
Thx... How can I make a Menu Hack?

Denny
#8 · 17y ago
zhaoyun333
zhaoyun333
You'll need to learn some D3D
#9 · 17y ago
DE
Denny101
Can u give me a link to a Video tutorial or something? i only find english tuts, please post a german tutorial.
Thank You!
#10 · 17y ago
why06
why06
Wow that makes 3 or 4 ppl that speak german now. I think I am becoming a minority!!! D:
#11 · 17y ago
ZE
zeco
Quote Originally Posted by why06 View Post
Wow that makes 3 or 4 ppl that speak german now. I think I am becoming a minority!!! D:
I would think there are more than 4 people in this section....Try 8? xD.
Sad but true. I can kinda speak French =D.
#12 · 17y ago
killerld
killerld
Automedic need a off button because its a vip function so it will be detected... I think with the code you wirte it suppose to work BUT i'm not sure but you could add the end part of WR hack, you should


I'm french and from Canada,Quebec !! Oui Criss
#13 · 17y ago
Posts 1–13 of 13 · Page 1 of 1

Post a Reply

Similar Threads

  • no fall damage hack what is wrong??By 123456789987654321 in WarRock - International Hacks
    12Last post 19y ago
  • VB 2008 5th slot hack - What's Wrong?By Denny101 in C++/C Programming
    4Last post 16y ago
  • :)My fixed warrock finally(what went wrong):)By TryMe in WarRock - International Hacks
    20Last post 17y ago
  • Mpgh Warrock Public Hack 12-17-06By Dave84311 in WarRock - International Hacks
    17Last post 19y ago
  • WarRock Invincible Hack?By Associate in WarRock - International Hacks
    5Last post 20y ago

Tags for this Thread

#automedic#hack#warrock#wrong