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 › Other Semi-Popular First Person Shooter Hacks › WarRock - International Hacks › WarRock Philippines Hacks › WarRock Philippines Help & Discussions › Need Help For my First Hack !.... Please !...

ExclamationNeed Help For my First Hack !.... Please !...

Posts 1–3 of 3 · Page 1 of 1
LO
login215
Need Help For my First Hack !.... Please !...
needhelp poh.. please... i build says 1 field ?...
1>2dnd.dll - 1 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

Please.. Please.. Please... Help.. Help.. Help...




#include <stdafx.h>
#include <windows.h>
#include <CPatch.h>





#define ADR_PlayerPointer 0x00A86B88
#define ADR_ServerPointer 0x00A85B30
#define ADR_GlassWall 0x00A84CC4
#define OFS_NoDelay 0x0010410


BYTE NOP[8] = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };






cPatch cNodelay(ADR_NoDelay, NOP, 2);






DWORD *ingame = (DWORD*)ADR_PlayerPointer;
DWORD *outgame = (DWORD*)ADR_Serverpointer;




//Player Hacks
void PlayerHacks()
{
DWORD dwPlayerPtr = *(DWORD*)ADR_PlayerPointer;
if(dwPlayerPtr != 0)
{
}
}

void GlassWalls()
{
if(GetKeyState(VK_MBUTTON))
*(int*)ADR_GlassWalls = 1;

else
{
*(int**)ADR_GlassWalls = 0;
}
}

void NoDelay()
{
if (GetAsyncKeyState(VK_LBUTTON))
{

cNodelay.Patch();
}
else
{
cNodelay.Restore();
}
}






void HackThread()
{
for (;;)
{
if (*ingame)
{
NoDelay()
Wallhacks()
PlayerHacks()

}
if (*outgame)
{
}
Sleep(200);
}
}


BOOL __stdcall DllMain(HINSTANCE hDll, DWORD dwReason, LPVOID)
{
if (dwReason == DLL_PROCESS_ATTACH)
{
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread, 0, 0, 0);
MessageBoxA(NULL, " baludoy ", "success", MB_OK);
}
return TRUE;
}
#1 · edited 11y ago · 11y ago
TR
trialsg
Here:
Code:
#include <Windows.h>
#include <stdio.h>

#define ADR_PlayerPointer 0x00A86B88
#define ADR_ServerPointer 0x00A85B30
#define ADR_GlassWalls 0x00A84CC4
#define OFS_NoDelay 0x0010410

DWORD *ingame = (DWORD*)ADR_PlayerPointer;
DWORD *outgame = (DWORD*)ADR_ServerPointer;


void GlassWalls()
{
	if(GetKeyState(VK_MBUTTON))
	*(int*)ADR_GlassWalls = 4;
else
	{
		*(int**)ADR_GlassWalls = 0;
	}
}

void NoDelay()
{
	DWORD dwPlayerPtr = *(DWORD*)ADR_PlayerPointer;	
	if(dwPlayerPtr != 0)
	{
		if(GetAsyncKeyState(VK_LBUTTON))
		{
			*(DWORD*)(dwPlayerPtr+OFS_NoDelay) = -1;
		}
	}
}

void HackThread()
{
	for (;;)
	{
		if (*ingame)
		{
			NoDelay();
			GlassWalls();
		}
		if (*outgame)
		{
		}
	Sleep(200);
	}
}


BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved) {
if(dwReason == DLL_PROCESS_ATTACH)
{
	MessageBoxA(NULL, "Message", "Message", (MB_ICONASTERISK));
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread, 0, 0, 0);

}
return TRUE;
}
NOTE: You need update addys, else, it will not work...
By the way, you are too lazy...
Don't just copy paste codes without analyzing...
#2 · 11y ago
Mayion
[MPGH]Mayion
Answered, Closed.
#3 · 11y ago
Posts 1–3 of 3 · Page 1 of 1

Post a Reply

Similar Threads

  • [SOLVED] Need help for my first hackBy prompen in Call of Duty Modern Warfare 2 Help
    5Last post 15y ago
  • Need Help Making my first Hack!!By Gam3r007 in Call of Duty Modern Warfare 3 Coding, Programming & Source Code
    5Last post 14y ago
  • Help for my first hackBy SuckMyDicks in Combat Arms Hack Coding / Programming / Source Code
    30Last post 15y ago
  • [Help how?]Need help making a WR hack please look.By mikelmao11 in WarRock - International Hacks
    1Last post 18y ago
  • Need Help for Exteel Credit hacksBy johanpisters in General
    5Last post 17y ago

Tags for this Thread

#aeroman d3d hook#fl1ck#jhem#znoen#[mpgh]myion