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 Help › help

help

Posts 1–3 of 3 · Page 1 of 1
ZE
zerooww
help
Code:
#include <windows.h>
#include <stdio.h>

#define ADR_Playerpointer 0x00A903E
#define ADR_Serverpointer 0x00A8F39
#define ADR_WeaponGlobal1 0x00AAE498
#define ADR_WeaponGlobal2 0x00B024E0

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

class CWeaponInformations
{
public:
     char padd1[132];            <-------------------- how to get that?
     DWORD dwDamage; // 0x84  
     DWORD dwDefence; //0x88
     DWORD dwRange; // 0x8C   
     DWORD dwAmmoNum; //0x90   
     DWORD dwMagazineNum; //0x94 
     DWORD dwEffectRange; //0x98  
     DWORD dwParabola; // 0x9C
	 char padd2[12];
     DWORD dwShotSpeed; //0xAC 
     DWORD dwWeight; //0xB0
};


CWeaponInformations* getWeaponInfo(int index, DWORD ptr)
{
    DWORD dwPtrToWeapons = *(DWORD *)(ptr + 0x40);
    if(!dwPtrToWeapons)   
        return 0;       

    DWORD dwPtrToDesiredWeapon = *(DWORD *)(dwPtrToWeapons + index);
    
    if(!dwPtrToDesiredWeapon)
        return 0;    
    
    return (CWeaponInformations*)(dwPtrToDesiredWeapon);
}


// Initialize Class
CWeaponInformations* weaponInformations = getWeaponInfo(66, ADR_WeaponGlobal1);
CWeaponInformations* weaponInformations2 = getWeaponInfo(66, ADR_WeaponGlobal2);

// How To Use

void AMMO()
{
	weaponInformations->dwAmmoNum = 9;
        weaponInformations->dwRange = 9000000;
        weaponInformations->dwEffectRange = 90000;
}


void HackThread()
{
for(;; )
{
if(*ingame)
{
AMMO();
}
if(*outgame)
{
}
Sleep(200);
}
}
BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
{
if(dwReason == DLL_PROCESS_ATTACH)
{
MessageBoxA(NULL, "Testing Lang xD", "Made by: ME", MB_OK);
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread , 0, 0, 0);
}
return TRUE;
}
#1 · edited 11y ago · 11y ago
Mayion
[MPGH]Mayion
@ @zerooww What do you need help with?
#2 · 11y ago
Kevin
Kevin
Enough time has passed without another user response, considered solved/closed
#3 · 10y ago
Posts 1–3 of 3 · Page 1 of 1

Post a Reply

Similar Threads

  • Help my!By Windowns7 in Combat Arms BR Coding Help
    2Last post 15y ago
  • Ajuda / HelpBy - Battery' in Combat Arms BR Coding Help
    3Last post 15y ago
  • Combat arms Vid helpBy djw111 in Combat Arms Help
    4Last post 14y ago
  • AFK Bot [help]By fet in Combat Arms Help
    7Last post 15y ago
  • Injector Admin helpBy asdfgas in Combat Arms Help
    4Last post 15y ago

Tags for this Thread

None