So dass ist das Problem eines Freundes, ich konnte nich tnachhelfen, komischerweise xD , wo liegt das Problem?
Quote:
hi erstmal^^
also wie du mitbekommen hast startet mein eigener hack nicht^^
es läuft so ab ich starte injektor als admin dann starte ich warrock
es heisst sucsessfuly to inject aber dann startet warrock einfach nicht..
an was kann das liegen?
ist der quellcode falsch??
#include <Windows.h>
#include <stdio.h>
#define ADR_PLAYERPOINTER 0xA71030
#define OFS_Z 0x000102D8
#define ADR_NFD 0x000103A4
void Superjump ()
{
if(GetAsyncKeyState(VK_CONTROL) )
{
DWORD PIP = *(DWORD*)ADR_PLAYERPOINTER;
if(PIP != 0)
{
*(float*) (PIP+OFS_Z) = 1500;
}
}
}
void NFD()
{
DWORD dwPIP = *(DWORD*)
ADR_PLAYERPOINTER;
if(dwPIP != 0)
{
*(float*)(dwPIP+ADR_NFD) = -25000;
}
}
void TheHacks()
{
for(;;)
{
Superjump();
NFD();
Sleep(30);
}
}
BOOL WINAPI DllMain(HINSTANCE mod, DWORD
DWORD_GRUND, LPVOID res)
{
switch(DWORD_GRUND)
{
case 1:
//-->
CreateThread(0,0, (LPTHREAD_START_ROUTINE)TheHacks , 0,0,0);
break;
case 2:
break;
}
return TRUE;
}