TalkingHow To Make Dll With Source [EASY]

Posts 1–15 of 90 · Page 1 of 6
How To Make Dll With Source [EASY]
My Second Stickey
Here You All Go A New Source For Your Hacks With More Features, If You Have Visual Studio Or Any Other Compiler And Dont No How To Make Them To Dll's Here You Go :

First Go On Your Compiler And Click New Project,
There Should Be A Side Bar Which Says Installed Templates,
Click Visual C++ After That Click Win32 Console Application,
After Clicking That Think Of A Hack Name For Your Hack,
Then Click Ok,


You Most Probably See A Window Like This Pop-up Click Next.



After Clicking Next You Will See This, Click Dll And Empty Project As So...Then Click Finish.



Then Go To Project (On The Menu Near File , Edit And View ..Ect) And
Click And New Item Or CTRL+shift+A , Then Click Cpp File And Name It Anything
You Want Click Ok And Copy And Paste Any Base Like This Below


Code:
#include <windows.h>
#include <iostream>

using namespace std;

void __cdecl PushToConsole(char* szVal ) {
	DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
	if( dwCShell != NULL )
	{
		DWORD *LTClient = ( DWORD* )( (dwCShell + 0x2AAE80) );
		void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x1F8 );
		_asm
		{
			push szVal;
			call CONoff;
			add esp, 4;
		}
	}
}
DWORD WINAPI Main(LPVOID) {
	while(GetModuleHandleA("CShell.dll") == NULL ) {
	Sleep(150);
}

	bool PlayerGlow = true; 
	bool FogEnable = false;
	bool Nosmoke = true;
        bool Whitewalls = false;


for(;;) {
	__asm pushad;
			if(GetAsyncKeyState(VK_F2)&1) {
				PlayerGlow = !PlayerGlow;
			}
			if(GetAsyncKeyState(VK_F3)&1)	{
				FogEnable = !FogEnable;
			}
			if(GetAsyncKeyState(VK_F4)&1)	{
				Nosmoke = !Nosmoke;
			}
                        if(GetAsyncKeyState(VK_F9)&1)	{
				Whitewalls = !Whitewalls;
			}

			if (Nosmoke) {
				PushToConsole("DrawParticles 1");
			} 
			else {
		                PushToConsole("DrawParticles 0");
			}

			if (FogEnable) {
				PushToConsole("FogEnable 1");
			} 
			else {
				PushToConsole("FogEnable 0");
			}
			if  (PlayerGlow) {
				PushToConsole("ScreenGlowEnable 1");

			}
			else {
				PushToConsole("ScreenGlowEnable 0");

			}
                        if (Whitewalls) {
                                PushToConsole("DrawFlat 1");
                        } 
                        else {
                                PushToConsole("DrawFlat 0");
                        }
			Sleep(100);
			__asm popad;
	}
}
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
	DisableThreadLibraryCalls(hDll);
	if ( dwReason == DLL_PROCESS_ATTACH )
	{
		MessageBoxA(0, "The Creators Name Here ", "Successfully Injected", 0);
                system("start http://www.mpgh.net");
		CreateThread(NULL, NULL,Main, NULL, NULL, NULL);
	}
	return TRUE;
}
Edit The The Creators Name Here, Bit To Your Name And http://w.ww.mpgh.net, Bit To Your MPGH Profile Like Myn Is
MPGH - MultiPlayer Game Hacking - View Profile: [Banned]mark0108

After All Of This Click The Little Button What Looks Like A Play Button It Is Called The Debug Button,
Once Click It Will Debug And Build Your Cpp To A Dll You Will Get Messages Like This Click Yes On This One,



And On This One Click Ok,



There Should Be No Error's If Followed Correctly Your Nearly Finished
Go To Your Documents And Go To Your Compilers Projects There Should Be A Folder Called
Debugged And In there Is Your Dll Inject With Any Injector (Which Works ) And Play Have Fun Or Release Your Hack

Ow Yh Your Hotkeys For This Source Are
Code:
F2 Player Glow
F3 Fog Enable
F4 No Smoke
F9 White Walls



If You Need The Compiler Which Im Using Click Here



THIS IS NOT LEECHED
AND NOT TO BE LEECHED
CLICK THANKS
Please Dont Close This Thread I Can Update LT When The LT Address IS PATCHED Ill Pu It As Comment
Helpful for anyone that doesn't already have basic knowledge of visual studios...haha.
Good tutorial.

~~Stickied~~
REAALLLY REAALY GOOD JOB TY

Now i can actually use the aimbot code i found
Quote Originally Posted by volodya8 View Post
REAALLLY REAALY GOOD JOB TY

Now i can actually use the aimbot code i found
Nice Hope It Works
Nice tutorial, this will help alot guys who start coding gj
nice this will help alot of people in coding (beginners mostly i think) like me.
Quote Originally Posted by xx claws xx View Post
nice this will help alot of people in coding (beginners mostly i think) like me.
CLICK THANKS THEN
Yeah but some people just copy and paste then make it .dll lol
so they don't learn much. but yeah my hack is now detected

Still good job!
Nice...I will add u on credits if this work
Thanks, it's a beautiful tut ^^
how to make an hack?
Quote Originally Posted by cfhack..er View Post
how to make an hack?
This si not how to make a hack
its how to compile one
nice tut
Posts 1–15 of 90 · Page 1 of 6
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?