HackThread
Hey, I have some problems with the HackThread, WR just aborts when I launch my NoMenu, addies are correct and such so idk what's wrong:
BOOL WINAPI DllMain(HINSTANCE mod, DWORD DWORD_GRUND, LPVOID res)
{
switch(DWORD_GRUND)
{
case 1:
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread , 0, 0, 0);
break;
}
return TRUE;
}
try:
BOOL WINAPI DllMain(HINSTANCE hDll,DWORD Fix,LPVOID lpvR)
{
if(Fix == DLL_PROCESS_ATTACH)
{
CreateThread(0,0,(LPTHREAD_START_ROUTINE)HackThrea d,0,0,0);
}
return TRUE;
}
delete the space between HackThrea and d and you're good.
Always expect AeroMan to help, he is hack GOD