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 › HTG VIP HACK AND SRC CODE!!!!!!!!!

HTG VIP HACK AND SRC CODE!!!!!!!!!

Posts 1–15 of 56 · Page 1 of 4
GE
gellgell08
HTG VIP HACK AND SRC CODE!!!!!!!!!
He fucked with me now it's show time


1st Screen
User=public
Password=htg223
2nd Screen
User=vip
password=213rfe44
IF WE FIND OUT YOU LEAK WE WILL BAN YOU




/* * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * */
/* ****** Source Code */
/* */
/* Author : OneWhoSighs */
/* Version : 1.0 */
/* * * * * * * * * * * * * * * * * * * * * * * */
/* www.HackThisGame.Us.To */
/* * * * * * * * * * * * * * * * * * * * * * * */
/***********************************************/
/* * * * * * * * * * * * * * * * * * * * * * * */

#include <windows.h>

#define GetTwoKeys(keyone,keytwo) if(GetAsyncKeyState(keyone) &0x8000 && GetAsyncKeyState(keytwo) &0x8000)

DWORD* g_pJumpHeight = (DWORD*)0x01180400;
float* JumpHeight()
{
if(!g_pJumpHeight)
return NULL;
if(!*g_pJumpHeight)
return NULL;
return(float*)(*g_pJumpHeight + 0x178);

}

DWORD* g_pNoFallDmg = (DWORD*)0x01180400;
float* NoFallDamage()
{
if(!g_pNoFallDmg)
return NULL;
if(!*g_pNoFallDmg)
return NULL;
return(float*)(*g_pNoFallDmg + 0x26);
}

DWORD* g_pSwim = (DWORD*)0x01180400;
float* Swim()
{
if(!g_pSwim)
return NULL;
if(!*g_pSwim)
return NULL;
return(float*)(*g_pNoFallDmg + 0x16);
}

float* UnderWaterWalk()
{
return(float*)(0x0081935C);
}


float* InstantSpawn1()
{
return(float*)(0x00C19098);
}

float* InstantSpawn2()
{
return(float*)(0x00F22F74);
}

short* Scope()
{
return(short*)(0x009F9E62);
}

float* Stamina()
{
return(float*)(0x00818904);
}

short* NoSpread()
{
return(short*)(0x009F9EA7);
}

short* NoRecoil()
{
return(short*)(0x009F9EA1);
}

bool bStamina = false;
bool bScope = false;
bool bSpawn = false;
bool bRecoil = false;
bool bSpread = false;
bool bNoFallDmg = false;
bool bFloat = false;
bool bSwim = false;


void MainLoop(){
while(true){


//Scope
if(GetAsyncKeyState(0x31))
{
if(bScope == true)
bScope = false;
else
bScope = true;
Sleep(1000);
}

//Insta-Respawn
GetTwoKeys(0x12,'R')
{
if(bSpawn == true)
bSpawn = false;
else
bSpawn = true;
Sleep(1000);
}

//Stamina
GetTwoKeys(0x12,'S')
{
if(bStamina == true)
bStamina=false;
else
bStamina=true;
Sleep(1000);
}

//Spread
GetTwoKeys(0x12,'A')
{
if(bSpread == true)
bSpread=false;
else
bSpread=true;
Sleep(1000);
}

//Recoil
GetTwoKeys(0x12,'F')
{
if(bRecoil == true)
bRecoil=false;
else
bRecoil=true;
Sleep(1000);
}

//No Fall Damage
if(GetAsyncKeyState(0x60))
{
if(bNoFallDmg == true)
bNoFallDmg=false;
else
bNoFallDmg=true;
Sleep(1000);
}

// FloatHack
if(GetAsyncKeyState(0x61))
{
if(bFloat == true)
bFloat=false;
else
bFloat=true;
Sleep(1000);
}

//Super jump 5000
if(GetAsyncKeyState(0x62))
{
*JumpHeight() = 5000;
}


//Swim on air
if(GetAsyncKeyState(0x63))
{
if(bSwim == true)
bSwim=false;
else
bSwim=true;
Sleep(1000);
}


/* Bools */

float* dwMe = JumpHeight();

if(dwMe) // Make sure we are in game
{
//Swim
if(bSwim == true)
{
*Swim() = 276;
}
else
{
*Swim() = 282;
}
//Float
if(bFloat == true)
{
*JumpHeight() = 5000;
}

//NoFallDmg
if(bNoFallDmg == true)
{
*NoFallDamage() = -999;
}

//Spread
if(bSpread == true)
{
*NoSpread() = 0;
}

//Recoil
if(bRecoil == true)
{
*NoRecoil() = 0;
}

//Insta-Respawn
if(bSpawn == true)
{
*InstantSpawn1() = 0;
*InstantSpawn2() = 0;
}

//Stamina
if(bStamina == true)
{
*Stamina() = 5000;
}else
{
*Stamina() = 20;
}

//Scope
if(bScope == true)
{
*Scope() = 1;
}else
{
*Scope() = 0;
}


}


Sleep(10); // End of loop, without this = lag

}

}


//DLL entry point
bool APIENTRY DllMain(HMODULE hModule, DWORD dwReason, LPVOID lpvReserved){
if(dwReason == DLL_PROCESS_ATTACH){
DisableThreadLibraryCalls(hModule);

//Create main thread
CreateThread(NULL,0,(LPTHREAD_START_ROUTINE)MainLo op,NULL,0,NULL);

return true;
}
return true;
}
#1 · 18y ago
cjg333
cjg333
rofl,rofl,rofl,too bad i dont need any of this crap,lawl maybe some newbs will get use out of it.
#2 · 18y ago
g36gunner
g36gunner
nice job looks good i havnt tested it ill post virus scan in a sec im wonderin whos naruto1223???
#3 · 18y ago
GE
gellgell08
DONT MESS WITH PPL AND TALK SHIT OR THIS STUFF HAPPENZ
#4 · 18y ago
g36gunner
g36gunner
AhnLab-V3-
AntiVir-
Authentium-
Avast-
AVG-
BitDefender-
CAT-QuickHeal- (Suspicious) - DNAScan
ClamAV-
DrWeb-
eSafe-
eTrust-Vet-
Ewido-
FileAdvisor-
Fortinet-
F-Prot-
F-Secure-
Ikarus-
Kaspersky-McAfee-
Microsoft-
NOD32v2-
Norman-Panda-
Prevx1-
Rising-
Sophos-Sunbelt-
TheHacker-
VBA32-
VirusBuster-
Webwasher-Gateway-
#5 · 18y ago
ST
Str8Soulja
and i say again
PWNT
#6 · 18y ago
NE
NetNavi
Quote Originally Posted by Str8Soulja View Post
and i say again
PWNT
STFU

...stupid ******s
#7 · 18y ago
foxhound
foxhound
hope u BITCHES NO I PACKED THIS WITH KEYLOGGERS AND VIRUS'S NOW GELLIN ACC ON MPGH G0T H4X3D BY ME! AND P.S ITS NOT C++ NIGGAS
#8 · 18y ago
VE
vescovo
Quote Originally Posted by gellgell08 View Post
DONT MESS WITH PPL AND TALK SHIT OR THIS STUFF HAPPENZ
u stfu nobody did shit to u
go put a monkey in ur pants ur hoe cause thats all ur ever going to get
if u keep talking like that...

come on body try me
i no more about ur lil 1GB comp then ny1
#9 · 18y ago
GE
gellgell08
why don't you ask him what happened to his site, have you got one ill try it bitch
#10 · 18y ago
VE
vescovo
Quote Originally Posted by gellgell08 View Post
why don't you ask him what happened to his site, have you got one ill try it bitch
i dnt give a fuck wat happened to his site..
all i care about is if ur mom is going to bring the lube this time
#11 · 18y ago
GE
gellgell08
I could say this would be the worst day for you in the history of man kind, but that would be a lie, the worst day in the history of the world is when you came out of your mother's vagoo and fucked everyone's day up
#12 · 18y ago
cjg333
cjg333
Quote Originally Posted by Tom View Post
STFU

...stupid ******s
um....Im white........
#13 · 18y ago
NE
NetNavi
Quote Originally Posted by cjg333 View Post
um....Im white........
Wasn't quoting you
#14 · 18y ago
CH
chris092
thank you for the hax but how do you get to the 2nd screen where you can enter vip?
#15 · 18y ago
Posts 1–15 of 56 · Page 1 of 4

Post a Reply

Similar Threads

  • Trading VIP Hacks And Retail M60 Code For LVL 16+ Warrock ACCTBy xth0rx in Trade Accounts/Keys/Items
    12Last post 19y ago
  • [TRADE] All my VIP hacks and bypasses for a high lvl accountBy killajones427 in Trade Accounts/Keys/Items
    5Last post 19y ago
  • Trading all my VIP hacks and Bypasses for a lvl16+ wrr accBy BurakG in Trade Accounts/Keys/Items
    1Last post 19y ago
  • Stamina Hack and source code ?By Teh Sasuke in C++/C Programming
    0Last post 18y ago
  • Trading 4 Bp's, 1 UCE, 1 Vip Hack and 1 Normal Hack!By ltkort213 in Trade Accounts/Keys/Items
    5Last post 19y ago

Tags for this Thread

None