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 Hack Source Code › Why does this dont work?

Why does this dont work?

Posts 1–11 of 11 · Page 1 of 1
skulhead
skulhead
Why does this dont work?
Code:
if(GetAsyncKeyState(VK_NUMPAD1) &1)
{
	if(dwPlayerPtr != 0)
	{
*(float*)(dwPlayerPtr + NoRecoil1) = 0;
*(float*)(dwPlayerPtr + NoRecoil2) = 0;
*(float*)(dwPlayerPtr + NoRecoil3) = 0;
*(float*)(dwPlayerPtr + NoSpread) = 0;
	}
}
But when I pres Numpad1, nothing happens...
#1 · 15y ago
xflick13
xflick13
Quote Originally Posted by skulhead View Post
Code:
if(GetAsyncKeyState(VK_NUMPAD1) &1)
{
	if(dwPlayerPtr != 0)
	{
*(float*)(dwPlayerPtr + NoRecoil1) = 0;
*(float*)(dwPlayerPtr + NoRecoil2) = 0;
*(float*)(dwPlayerPtr + NoRecoil3) = 0;
*(float*)(dwPlayerPtr + NoSpread) = 0;
	}
}
But when I pres Numpad1, nothing happens...
void NS_vs_NR()
{
DWORD dwPlayerPtr = *(DWORD*)Addr_Playerpointer;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+NoRecoil1) = 0;
*(float*)(dwPlayerPtr+NoRecoil2) = 0;
*(float*)(dwPlayerPtr+NoRecoil3) = 0;
*(float*)(dwPlayerPtr+NoSpread) = 0;
}
}
}
Its auto..
if you want hotkey try this one.

void NS_vs_NR()
{
if(GetAsyncKeyState(VK_NUMPAD1)&1) //Hotkey NUmpad7
{
DWORD dwPlayerPtr = *(DWORD*)Addr_Playerpointer;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+NoRecoil1) = 0;
*(float*)(dwPlayerPtr+NoRecoil2) = 0;
*(float*)(dwPlayerPtr+NoRecoil3) = 0;
*(float*)(dwPlayerPtr+NoSpread) = 0;
}
}
}
try it now..
#2 · edited 15y ago · 15y ago
skulhead
skulhead
It is the same...
#3 · 15y ago
xflick13
xflick13
Quote Originally Posted by skulhead View Post
It is the same...
no no..its not the same you didnt DWORD the Playerpointer.
watch your code and mine.
#4 · edited 15y ago · 15y ago
MI
mihec161
do you have new addies?
#5 · 15y ago
xflick13
xflick13
Quote Originally Posted by mihec161 View Post
do you have new addies?
Dont have..!
#6 · 15y ago
skulhead
skulhead
No, I did that above in my code...
#7 · 15y ago
IC
icebox346
xflick obviously don't know exactly what he's doing..Go to stickied post and you will find useful post that will solve your problem. If you are lazy then go here: http://www.mpgh.net/forum/262-warroc...-snippets.html

Happy copy and pasting codes....
#8 · 15y ago
skulhead
skulhead
No I want to learn it, nobody can explain?
#9 · 15y ago
ZE
zerohead
@icebox346 Don't flame
@xflick13 code is wrong
NoSpread en NoRecoil will automaticcaly restore themselves, if you won't repeat changing them. That's why you gotta do it with a variable, like this:

int SpreadRecoil; // put this on top, under your #defines


//Ajax nospread code
DWORD dwPlayerPointer = *(DWORD*)ADR_PlayerPointer
if(dwPlayerPointer)
{
if(GetAsyncKeyState(VK_NUMPAD1))//Numpad 1 = on
{
SpreadRecoil = 1;
}
if(GetAsyncKeyState(VK_NUMPAD2))//Numpad 2 = off
{
SpreadRecoil = 0;
}


if(SpreadRecoil)
{
*(float*)(dwPlayerPointer+NoRecoil1) = 0;
*(float*)(dwPlayerPointer+NoRecoil2) = 0;
*(float*)(dwPlayerPointer+NoRecoil3) = 0;
*(float*)NoSpread = 0;
}
}
//End nospread code for Ajax


Enjoy it
#10 · edited 15y ago · 15y ago
skulhead
skulhead
Ty Dankjewel
#11 · 15y ago
Posts 1–11 of 11 · Page 1 of 1

Post a Reply

Tags for this Thread

None