QuestionCPLUSPLUSCreate DLL For Beginner

Posts 18 of 8 · Page 1 of 1
Create DLL For Beginner
> Download [ Visual Studio 2015 ] , Search Google , U Can Search VS 2012 Too
[ RECOMMENDED ]
> Install It Fully
> Once Done , Run Visual Studio [ If Dont Know , Search At Taskbar ]

Here The Vid :


Code:
#include <Windows.h>

void HACK()
{
	while (1)
	{
		*(BYTE*)0x0042E646 = 0xEB; // Memory is modified. BlackShot SEA
		Sleep(50);
	}
}

BOOL WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
{
	if (dwReason == DLL_PROCESS_ATTACH)//Process Attach
	{
		CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)HACK, NULL, NULL, NULL);
		MessageBoxA(0, "Put Your Credits", "Put Your Title", MB_YESNO);// MessageBox
	}
	return TRUE;
}
Thanks
Nice.. but how to create no recoil and no spread for all weapons?
Quote Originally Posted by sohs02 View Post
Nice.. but how to create no recoil and no spread for all weapons?
Find Address on Cheat Engine 6.5.1 , while running BlackShot SEA

The Method are same , but address are diff , just change the address to ur address etc = Norecoil or NoSpread .
Just To Loop All Weps . i Cant Share at here , not this time

like this =
#include <windows.h>

void HACK()
{
while (1)
{
*(BYTE*)0xAddressOfNorecoil = 0x65; // Norecoil
*(BYTE*)0xAddressOfNoSpred = 0xValue // NoSpread
}
Sleep(50);
}
Ok so actually i've been looking for a injection method for 32bit. i've actually tried this basic method of injection but wont work. (i guess.. or maybe i did something wrong).. im not sure about the hooking method coz my level of programming is still low to do that method. Any suggestions on how to inject on 32bit?
Quote Originally Posted by meerunmaltoo View Post
Ok so actually i've been looking for a injection method for 32bit. i've actually tried this basic method of injection but wont work. (i guess.. or maybe i did something wrong).. im not sure about the hooking method coz my level of programming is still low to do that method. Any suggestions on how to inject on 32bit?
Yes there is But not now ..
thank u very much but the vid don't work :/
can you send video back on because he can not be viewed
Quote Originally Posted by gmpopo View Post
can you send video back on because he can not be viewed
many tutorials on youtube you can watch how to make a dll in c ++
Posts 18 of 8 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?