Hello,
If You wana MAke A menu HAck First Make A Hotkey HAck!
THis is Relly BAsic.
But You Need to Write it by youre self.
becouse if you Copy+ Past You are not a coder...
So First download "C++" i use C++ 2008!
Now We Gona make a new empty RPoject!
add a new cpp File named "main"
Now Click alt+F7 Configurtion properties>general
chance configuration type to .dll!
Now Go to youre file "main.cpp"
en type the next code!
Code:
#include <windows.h>
#include <stdio.h>
void CPush(const char* cmd)
{
_asm
{
PUSH cmd
MOV EAX, ADR_engine
CALL EAX
ADD ESP, 0x4
}
}
void Treat()
{
if (GetAsyncKeyState(VK_CONTROL))
{
CPush("SkelModelStencil -1");
}
}
void inject()
{
for(;;){Treat();}
}
BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
{
if(dwReason == DLL_PROCESS_ATTACH)
{
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)inject, 0, 0, 0);
}
return TRUE;
}
now save it end pres f7
if you now inject te .dll file in combat arms end HIT IN Game 'control' Yoiu get a kind of chams!