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 Discussions › Question about offsets

Question about offsets

Posts 1–5 of 5 · Page 1 of 1
cnttuchme
cnttuchme
Question about offsets
I recently started coding my own hacks witch will be realeased soon. Ive been using the *(float*) method witch has worked all the way threw it except for 2 hacks gold premium and opk. Through analysis i noticed that.


Code:
#define ADR_Spread 0x00B042B0
#define OFS_PREMIUM 0x00374
Spread has ADR_nospread as premuim has OFS...
Now just an educated guess that ADR = address and OFS = offset..how would i find the address of the offset if not how would i code he offset for gold prem.

Also here is how ive coded my nospread witch works perfectly
Code:
//No Spread
void Spread()
{
*(float*) ADR_Spread = 0;
}
#1 · 16y ago
BO
BooYa
This is from a tutorial, not sure if it works

Code:
void premium () //Gold Premium
{
DWORD dwPlayerPtr = *(DWORD*)Serverpointer;
if(dwPlayerPtr != 0)
{
*(long*)(dwPlayerPtr+Premium_OffSet) = 3, 10; // 1 = bronze  2 = silver 3 = gold
}
}
#2 · 16y ago
why06
why06
Yeh you would just add the offset to the base pointer, which in this case is the PlayerPointer, just like Booya said.
#3 · 16y ago
cnttuchme
cnttuchme
YES!!!
Quote Originally Posted by BooYa View Post
This is from a tutorial, not sure if it works

Code:
void premium () //Gold Premium
{
DWORD dwPlayerPtr = *(DWORD*)Serverpointer;
if(dwPlayerPtr != 0)
{
*(long*)(dwPlayerPtr+Premium_OffSet) = 3, 10; // 1 = bronze  2 = silver 3 = gold
}
}
Thank you so much !!!......i would love you to be added to my msn messenger or yahoo im
Yahoo: johnjohn51392@yahoo.com
msn:cnttuchme@hotmail.com

As a matter of fact anyone who codes can add me b/c im just starting to learn to code...
#4 · edited 16y ago · 16y ago
cnttuchme
cnttuchme
Code:
//STAMINA
void STAMINA()//unlimited stamina
{
DWORD dwplayerPtr = *(DWORD*)Serverpointer;
if(dwPlayerPtr != 0)
{
*(long*) (dwplayerPtr+OFS_STAMINA) = 5000, 5000;
}
}
undeclared identifier???
any suggestions...
Sorry for double post
#5 · 16y ago
Posts 1–5 of 5 · Page 1 of 1

Post a Reply

Similar Threads

  • question about zoomBy yocinfluence in WarRock - International Hacks
    4Last post 20y ago
  • Questions about making colored modelsBy zelda803 in WarRock - International Hacks
    2Last post 20y ago
  • Question About Invisible HackBy wafflele in WarRock - International Hacks
    14Last post 20y ago
  • A question about NFV2By vomer in WarRock - International Hacks
    19Last post 20y ago
  • Questions about Torrents.By SadisticGrin in Hardware & Software Support
    19Last post 19y ago

Tags for this Thread

None