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 › Hell_Demons mini console

Hell_Demons mini console

Posts 1–9 of 9 · Page 1 of 1
Hell_Demon
Hell_Demon
Hell_Demons mini console
Code:
#include <windows.h>

/*
  _____            _     _                  _   _                      ___  
 |  __ \          | |   | |                | \ | |                    |__ \ 
 | |__) |_ __ ___ | |__ | | ___ _ __ ___   |  \| | _____  __ ___  _ __   ) |
 |  ___/| '__/ _ \| '_ \| |/ _ \ '_ ` _ \  | . ` |/ _ \ \/ // _ \| '_ \ / / 
 | |    | | | (_) | |_) | |  __/ | | | | | | |\  |  __/>  <| (_) | | | |_|  
 |_|    |_|  \___/|_.__/|_|\___|_| |_| |_| |_| \_|\___/_/\_\\___/|_| |_(_)  
                                                                            
*/

HWND myDialog;
HWND editBox;

void SendConsoleCommand(char *pCommand)
{
	__asm
	{
		PUSH pCommand;
		MOV ECX,DWORD PTR DS:[38979524h];
		MOV EDX,DWORD PTR DS:[ECX];
		MOV EAX,DWORD PTR DS:[EDX+1Ch];
		CALL EAX;
	}
}

void conHandler(void)
{
	MSG msg;

	while(!GetModuleHandle("engine.dll"))
	{
		Sleep(100);
	}
	Sleep(1000);

	DWORD dwOld;
	VirtualProtect((void*)0x4204B452, 1, PAGE_EXECUTE_READWRITE, &dwOld);
	*(char*)0x4204B452 = '\x75';
	myDialog = CreateWindowEx(0, WC_DIALOG,"Problem Nexon?",WS_OVERLAPPEDWINDOW | WS_VISIBLE,	400,100,600,60,NULL,NULL,NULL,NULL	);

	editBox = CreateWindow( "edit", "",
		WS_VISIBLE|WS_CHILD,
		0, 0, 580, 20, myDialog, (HMENU)158, 0, NULL);

	while(1)
	{
		if(PeekMessage(&msg,NULL,0,0,PM_REMOVE))
		{
			if(msg.hwnd == editBox && msg.message == WM_KEYDOWN && msg.wParam == VK_RETURN)
			{
				int len = GetWindowTextLength(editBox);
				char *tmp = new char[len+1];
				GetWindowText(editBox, tmp, len+1);
				SendConsoleCommand(tmp);
				SetWindowText(editBox, "");
				delete tmp;
			}
			TranslateMessage(&msg); 
			DispatchMessage(&msg);
		}
		Sleep(1);
	}
}

BOOL APIENTRY DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
{
	switch(dwReason)
	{
	case DLL_PROCESS_ATTACH:
		CreateThread(0, 0, (LPTHREAD_START_ROUTINE)conHandler, 0, 0, 0);
		break;
	}
	return TRUE;
}
#1 · 14y ago
DanK
DanK
lol nice.. Good work.
#2 · 14y ago
xzone
xzone
Thanks bro~!
Are you sure it's a good idea to put:
* Execute commands anywhere
* No need to be the host of the boat :/
#3 · 14y ago
VA
vandsapia
Oh.. thank you.
#4 · 14y ago
hakcenter
hakcenter
Wow. After looking in IDA for a bit and tracing.. I find it almost like /facepalm how simple the adjustment was... i can't believe i didn't notice it

the other one.. is just gigantic blatant.
#5 · 14y ago
NI
Nico
Quote Originally Posted by xzone View Post
Thanks bro~!
Are you sure it's a good idea to put:
* Execute commands anywhere
* No need to be the host of the boat :/
Not really good. But HD doesnt care about anyone here anyways.
#6 · 14y ago
XX
XxDeathxXx
hehe thx hell
#7 · 14y ago
DR
dream90
May i ask if i were to use it for a different vers ion, which part would i have to change?
#8 · 14y ago
NI
Nico
Quote Originally Posted by dream90 View Post
May i ask if i were to use it for a different vers ion, which part would i have to change?
The offsets.
#9 · 14y ago
Posts 1–9 of 9 · Page 1 of 1

Post a Reply

Similar Threads

  • Command List GUI for Hell_Demon's ConsoleBy kmagna in Vindictus Discussions
    5Last post 15y ago
  • hell_demon the console does not workBy abcmaliang12 in Vindictus Discussions
    13Last post 15y ago
  • Re-Release Hell_Demon's Console (Working as of 07/18/2011)By Dracconus in Vindictus Hacks & Cheats
    29Last post 15y ago
  • Console by Hell_DemonBy psychicboy in Vindictus Discussions
    2Last post 15y ago
  • Hell_Demon Console ProblemBy saintx18 in Vindictus Discussions
    2Last post 15y ago

Tags for this Thread

None