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 › [Tuturial] Create A D3D hack for warrock

Talking[Tuturial] Create A D3D hack for warrock

Posts 1–8 of 8 · Page 1 of 1
TI
timtag1190
[Tuturial] Create A D3D hack for warrock
Adding Addies
now i gonna explain how u add a'n addie.
go to : ///////////////////////////////////////////////// Addies Here!
u will see a'n example :


Code:

#define yourhack_Addie 0x000000

Lets add No Respawn wait :


Code:

#define yourhack_Addie 0x259182D
#define yourhack_Addie 0x12D8FAC

now go to the bool system.
Lets bool spawn :


Code:

bool spawn = false;

now below the bool system u will see highlight[2] = {1,0}
if you add a string you will need to change the [2] to [3] and the {1,0,0} to {1,0,0}

Lets add a spawnstring :


Code:

char spawnstring[20] = {NULL};


were done at this part. take your scrollbutton to the middle.
you will see this in the CH_menu:


Code:

sprintf(chamsstring, "Chams %s",(CH_chams ? "ON" : "OFF"));


just copy it and edit the chamsstring to your spawnstring and the CH_chams to your bool ( spawn ).
Example :

Code:

sprintf(Spawnstring, "Spawn %s",(spawn ? "ON" : "OFF"));


now below the sprintf's u see :


Code:

if(highlight[1]==1)
m_pFont_INFO->DrawText(15.0f, 30.0f, textRed, chamsstring);
else
m_pFont_INFO->DrawText(15.0f,30.0f, textPurple, chamsstring);


Just copy it and paste it again , change the [1] to [2] and the 2x 30's to 40.
Example :


Code:

if(highlight[2]==1)
m_pFont_INFO->DrawText(15.0f, 40.0f, textRed, spawnstring);
else
m_pFont_INFO->DrawText(15.0f,40.0f, textPurple, spawnstring);


scroll a bit down and you will see :


Code:

if(GetAsyncKeyState(VK_UP)&1)
{
for(int i=0; i < 2; i++) /////add +1 to menu here ,change the 2
{
if (highlight[i] == 1)
{
int a = i-1;

if(a < 0)
break;

else
{
highlight[a]=1;
highlight[i]=0;
break;
}
}
}
}

if(GetAsyncKeyState(VK_DOWN)&1)
{
for(int i=0; i < 2; i++) //////same here change the 3 to +1 of menu
{
if (highlight[i] == 1)
{
int a = i+1;

if(a > 1) ////amount in the menu goes here ,change the 2
break;

else
{
highlight[a]=1;
highlight[i]=0;
break;
}
}
}
}


Everytime you add a cheat you need to change the :

Code:

for(int i=0; i < 2; i++)
to
for(int i=0; i < 3; i++)

you need to do this twice!

and :

Code:

if(a > 1)
to
if(a > 2)



now scroll down untill u see Activate hacks on/off here.

copy :

Code:

if(highlight[1] == 1 && (GetAsyncKeyState(VK_RIGHT)&1))
CH_Chams = !CH_Chams;


and paste it again + change the CH_chams to your bool ( spawn ) + change the [1] to [2]
Example :


Code:

if(highlight[2] == 1 && (GetAsyncKeyState(VK_RIGHT)&1))
Spawn = !Spawn;


Your menu is done now!, now add the code to make the cheat working
Scroll down untill u see Make the cheat working!

Add :

Code:

;if (tSpawn);
{
long t=0;
unsigned long Protection;
VirtualProtect((void*)Spawn_Addie1, sizeof(t), PAGE_READWRITE, &Protection);
memcpy((void*)Spawn_Addie1, &t , sizeof(t));
VirtualProtect((void*)Spawn_Addie1, sizeof(t), Protection, 0);

VirtualProtect((void*)Spawn_Addie2, sizeof(t), PAGE_READWRITE, &Protection);
memcpy((void*)Spawn_Addie2, &t , sizeof(t));
VirtualProtect((void*)Spawn_Addie2, sizeof(t), Protection, 0);
}


long = WriteAlong ( memory )
t=0; = the value
#1 · 17y ago
TI
timtag1190
i cant add the attachment to the download thing u need cause it says to long of a file and invalid file
#2 · 17y ago
Czar
Czar
Shouldn't this go in the hacking parts of the forums?
>___>
and didn't somebody put one of these out before?

And compress it to rar or zip, if its too big though idk.

Also virus scans if its a download
#3 · edited 17y ago · 17y ago
TI
timtag1190
it is a download it just to big of a download rar.
#4 · 17y ago
Czar
Czar
Zip= 47.68 MB max
Rar=4.77 MB max

Yours is bigger then that for that little tutorial O____o?
#5 · 17y ago
TI
timtag1190
well i dont know what u mean how do i put it on .rar or .zip??
#6 · 17y ago
Czar
Czar
Quote Originally Posted by timtag1190 View Post
well i dont know what u mean how do i put it on .rar or .zip??
right click the files you want compressed [if you don't have Winrar or something like it forget .rar]
and hit send to > compressed zipped folder
or Compress to rar
#7 · 17y ago
TI
timtag1190
still dont know what u mean srry just close this topic
#8 · 17y ago
Posts 1–8 of 8 · Page 1 of 1

Post a Reply

Similar Threads

  • New D3d hack for warrockBy killakk626 in WarRock - International Hacks
    36Last post 17y ago
  • Speed Hack for WarRockBy ypg_gamer in Hack Requests
    9Last post 14y ago
  • In-Game kicking hack for WarrockBy Zededarian in Game Hacking Tutorials
    1Last post 14y ago
  • Hacks for WarrockBy Phoris in WarRock - International Hacks
    3Last post 20y ago
  • Hacks for Warrock (Aimbot, Wallhack)By Clarity in WarRock - International Hacks
    32Last post 20y ago

Tags for this Thread

#d3d#hacks#tutorial#warrock#working