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 › Visual C++ Video Tutorial

Visual C++ Video Tutorial

Posts 1–11 of 11 · Page 1 of 1
YO
yogilek
Visual C++ Video Tutorial
Can SomeOne Make for me a Video Visual C++ warrock trainer... ? please... and add in youtube
#1 · 18y ago
TheRedEye
TheRedEye
Quote Originally Posted by yogilek View Post
Can SomeOne Make for me a Video Visual C++ warrock trainer... ? please... and add in youtube
ANYTHING ELSE?
LOL
#2 · 18y ago
juppeli
juppeli
Isnt it fun when your trying to learn c++, and when you learn something with one compiler you realize that everything you need is made with other compiler : F
#3 · 18y ago
YO
yogilek
ok or module ( detected ) for vb 2005 or 2008 ^.-- ?
#4 · 18y ago
juppeli
juppeli
I dont understand a shit about anything pointing to module, but it is like this?

Code:
void ReadInt(long addy, int &buffer)
{
	memory();
	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &buffer, sizeof(buffer),NULL);
}

void ReadFloat(long addy, float &buffer)
{
	memory();
	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &buffer, sizeof(buffer),NULL);
}

void ReadPointerInt(long addy, short offset,int &buffer)
{
	long faddy=NULL;
	long raddy=NULL;
	memory();
	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &faddy, sizeof(faddy),NULL);
	raddy = faddy + offset;
	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)raddy, &buffer, sizeof(buffer),NULL);
}

void ReadPointerFloat(long addy, short offset, float &buffer)
{
	long faddy=NULL;
	long raddy=NULL;
	memory();
	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &faddy, sizeof(faddy),NULL);
	raddy = faddy + offset;
	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)raddy, &buffer, sizeof(buffer),NULL);
}

void WriteInt(long addy, int value)
{
	memory();
	WriteProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &value, sizeof(value),NULL);
}

void WriteFloat(long addy, float value)
{
	memory();
	WriteProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &value, sizeof(value),NULL);
}

void WritePointerInt(long addy, short offset,int value)
{
	long faddy=NULL;
	long raddy=NULL;
	memory();
	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &faddy, sizeof(faddy),NULL);
	raddy = faddy + offset;
	WriteProcessMemory(hProcess,(LPVOID*)(DWORD)raddy, &value, sizeof(value),NULL);
}

void WritePointerFloat(long addy, short offset,float value)
{
	long faddy=NULL;
	long raddy=NULL;
	memory();
	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &faddy, sizeof(faddy),NULL);
	raddy = faddy + offset;
	WriteProcessMemory(hProcess,(LPVOID*)(DWORD)raddy, &value, sizeof(value),NULL);
}
and its made some yoni dont cry girls
#5 · 18y ago
YO
yogilek
Quote Originally Posted by juppeli View Post
I dont understand a shit about anything pointing to module, but it is like this?

Code:
void ReadInt(long addy, int &buffer)
{
	memory();
	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &buffer, sizeof(buffer),NULL);
}

void ReadFloat(long addy, float &buffer)
{
	memory();
	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &buffer, sizeof(buffer),NULL);
}

void ReadPointerInt(long addy, short offset,int &buffer)
{
	long faddy=NULL;
	long raddy=NULL;
	memory();
	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &faddy, sizeof(faddy),NULL);
	raddy = faddy + offset;
	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)raddy, &buffer, sizeof(buffer),NULL);
}

void ReadPointerFloat(long addy, short offset, float &buffer)
{
	long faddy=NULL;
	long raddy=NULL;
	memory();
	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &faddy, sizeof(faddy),NULL);
	raddy = faddy + offset;
	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)raddy, &buffer, sizeof(buffer),NULL);
}

void WriteInt(long addy, int value)
{
	memory();
	WriteProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &value, sizeof(value),NULL);
}

void WriteFloat(long addy, float value)
{
	memory();
	WriteProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &value, sizeof(value),NULL);
}

void WritePointerInt(long addy, short offset,int value)
{
	long faddy=NULL;
	long raddy=NULL;
	memory();
	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &faddy, sizeof(faddy),NULL);
	raddy = faddy + offset;
	WriteProcessMemory(hProcess,(LPVOID*)(DWORD)raddy, &value, sizeof(value),NULL);
}

void WritePointerFloat(long addy, short offset,float value)
{
	long faddy=NULL;
	long raddy=NULL;
	memory();
	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &faddy, sizeof(faddy),NULL);
	raddy = faddy + offset;
	WriteProcessMemory(hProcess,(LPVOID*)(DWORD)raddy, &value, sizeof(value),NULL);
}
and its made some yoni dont cry girls
edit: c++ ;s
#6 · 18y ago
juppeli
juppeli
Quote Originally Posted by yogilek View Post
its for what??
Its for -05 or what do you mean???+++++++

e: aight lol nvm
#7 · 18y ago
YO
yogilek
do u have for vb 2005 or 2008 ?
#8 · 18y ago
juppeli
juppeli
oh god you said vb, i tought you mean c++ :F i should really go to bed
Im not sure should i do anything but try this
http://www.vbforums.com/showthread.php?t=416020
#9 · 18y ago
YO
yogilek
but its not module...
#10 · 18y ago
juppeli
juppeli
I didnt actually try it but didnt it said that its some kind of trainer? So there should be module?
#11 · 18y ago
Posts 1–11 of 11 · Page 1 of 1

Post a Reply

Similar Threads

  • Video tutorial: Making WarRock hack in Visual BasicBy Darky in Visual Basic Programming
    5Last post 17y ago
  • [Video tutorial] Make your own css cheatsBy seren1ty in CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    6Last post 19y ago
  • Video Tutorial (GP and vista help)By gudsoldier in Combat Arms Hacks & Cheats
    49Last post 17y ago
  • [Video Tutorial] How to make an undetected module.By wr194t in Visual Basic Programming
    24Last post 18y ago
  • gudsoldier can you make a video tutorialBy azngamerboi9 in Combat Arms Hacks & Cheats
    8Last post 18y ago

Tags for this Thread

None