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 MMORPG Hacks › Vindictus Hacks & Cheats › Vindictus Tutorials › Making your own god mode (Working 02/10/2012)

Making your own god mode (Working 02/10/2012)

Posts 1–13 of 13 · Page 1 of 1
GR
grandao
Making your own god mode (Working 02/10/2012)
Making your own god mode (Working 02/10/2012)

It isn't Nico's god. It's just a simple god and doesn't work with some ranged Attacks.

To make your god, you must hook IVEngineClient::ClientCmd function.
When Vindctus call this function with a string like "force_damage_player(...)" you just return from your HookFunction without doing anything.



Code:
(...)

DWORD OriFunc_ptr, *AddrToHook, PageProtection;

AddrToHook = (unsigned int *)((*(unsigned int*) MyIVEngineClient_ptr) + 0x1C);
OriFunc_ptr = *AddrToHook;

VirtualProtect( (LPVOID) AddrToHook, 4, PAGE_EXECUTE_READWRITE, &PageProtection );

*AddrToHook = (DWORD) MyHookFunction;

(...)

void __declspec(naked) MyHookFunction()
{
	_asm
	{
		push [esp+4]	// cmd
		call TestDmg
		cmp al, 1
		jz  RETURN
		pop eax
		mov eax, OriFunc_ptr
		jmp eax
RETURN:
		pop eax
		retn 4
		
	}
}



bool __cdecl TestDmg( char *vinCmd )
{
	char tmp[128];
	memset( tmp, 0, 128);
	memcpy( tmp, cmd, strlen( cmd ));
	tmp[19] = 0;
	if( strcmp( "force_damage_player", tmp) == 0 )
	{
		return true;
	}

	return false;
}
#1 · 14y ago
NI
Nico
Nice idea tho.
#2 · 14y ago
KA
kakkola_ch
actually how do you compile it, what program do you use, if you can give more help i thank u ^^
#3 · 14y ago
Noomy
Noomy
what difference does it make? use Notepad++ and M$ visual
#4 · 14y ago
NI
Nico
Quote Originally Posted by kakkola_ch View Post
actually how do you compile it, what program do you use, if you can give more help i thank u ^^
Visual Studio. Learn C++ first.
#5 · 14y ago
MA
massacremam
I use C# can you help me transcribe this thing?
#6 · 14y ago
Sylphia
Sylphia
Quote Originally Posted by massacremam View Post
I use C# can you help me transcribe this thing?
Nope, C# cannot do this。
Try learn C++ and asm yourself。
#7 · 14y ago
reallybanana
reallybanana
Quote Originally Posted by Nico View Post


Visual Studio. Learn C++ first.
When I have more time I would like to pick up C++ on my own. Any place where I should start? Looking at some source code here looks daunting.
#8 · 14y ago
NI
Nico
Quote Originally Posted by reallybanana View Post
When I have more time I would like to pick up C++ on my own. Any place where I should start? Looking at some source code here looks daunting.
Well, I started using a book back then. But there are a lot of tutorials in the internet.
#9 · 14y ago
DanK
DanK
Quote Originally Posted by reallybanana View Post
When I have more time I would like to pick up C++ on my own. Any place where I should start? Looking at some source code here looks daunting.
Well I just started c++ by following HD's tut and asking for help from nico and HD when I didn't understand things... Using MSDN and just testing things until I understood it, but I also have a background in programming in other languages.
#10 · 14y ago
reallybanana
reallybanana
Quote Originally Posted by DanK View Post


Well I just started c++ by following HD's tut and asking for help from nico and HD when I didn't understand things... Using MSDN and just testing things until I understood it, but I also have a background in programming in other languages.
I have very limited programming experience, namely in python (but mostly basic stuff). It doesn't help that I'm a busy grad student so picking up a programming language doesn't fit so easily into my schedule....
#11 · 14y ago
TI
TimEdits
What do i save it as, when i'm done ?
#12 · 14y ago
NI
Nico
Quote Originally Posted by TimEdits View Post
What do i save it as, when i'm done ?
Doesn't work anymore. And your questions kinda shows that you might want to learn C++ first
#13 · 14y ago
Posts 1–13 of 13 · Page 1 of 1

Post a Reply

Similar Threads

  • Making your own working spammerBy Arthur Ace in CrossFire Tutorials
    10Last post 15y ago
  • Making your own console (Working 02/09/2012 NA Version)By grandao in Vindictus Tutorials
    38Last post 14y ago
  • How to make your own radiostation?By nasir91 in General
    3Last post 19y ago
  • Make your own Warrock Cross hairs!!By llvengancell in WarRock - International Hacks
    3Last post 19y ago
  • Make Your own Cross hairsBy llvengancell in WarRock - International Hacks
    6Last post 19y ago

Tags for this Thread

None