Here is the guide to create an undetected dll for anygame
First, you need Visual Studio, can download it on microsoft.com
Open VS, create new project win32, empty dll
How to use code?
Need include library, we have 2 major libraries
#include <windows.h>
#include <stdio.h>
Now start:
Put your function like writeprocessmemory, readprocessmemry, faster use DWORD, BYTE, FLOAT
Make a void function
Void YourThread()
{
while(1)
{
Sleep(10);
}
}
In that, you need put a while to access memory.
while(1)
{
Sleep(10);
}
A sleep can make your game not lag
Last Step Create dll main
BOOL APIENTRY DllMain(HINSTANCE hinstDLL, DWORD dwReason, LPVOID lpvReserved)
{
DisableThreadLibraryCalls(hinstDLL);
if(dwReason == DLL_PROCESS_ATTACH)
{
//CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE) YourThread, 0, NULL, NULL);
}
return true;
}
Congratulation on creating tool :D
You can use VB6 to make a injector
How to create an undetected dll
Johny
10:08 PM
Related Posts:
Preview Midfunction hookHello, today we will learn how to make an midfunction hooking For all beginner, you should test it with d3d9 cause d3d9.dll have the same address for… Read More
CrossFire Alpha appearence editorNow, i will show you how to show a ghost in a crossfire We still need C++ and know how to make an undetected dll, you can look in my post. First, wh… Read More
How to create an undetected dllHere is the guide to create an undetected dll for anygame First, you need Visual Studio, can download it on microsoft.com Open VS, create new projec… Read More
TIP for crossfireDo you love playing crossfire? You are feeling bored with playing cheat normally, dont worries, you can use our tool It 's working good in NA, RU,BR,… Read More
Global hookGlobal hook is injected your code to all process and all executable are working in your system How to work? There are 2 types in this we have 15 sm… Read More
0 comments:
Post a Comment