Need Help

Posts 115 of 18 · Page 1 of 2
Need Help
Everything compiles great but when i trying injecting it dc before anything loads.

btw credits :
NeoIII - PTC
^Gozzila^ -Addy

Code:
#include <windows.h>
#define dwpLTClient 0x3718B820

bool IsGameReadyForHook()
{
if( GetModuleHandleA( "d3d9.dll"     ) != NULL 
&& GetModuleHandleA( "ClientFX.fxd" ) != NULL 
&& GetModuleHandleA( "CShell.dll"   ) != NULL )
return true;
return false;
}

void Hack(char* szCommand)
{
    typedef int (__cdecl* RunConsoleCommand_t)(char* cmd);
    RunConsoleCommand_t RCC = (RunConsoleCommand_t)dwpLTClient;
    RCC(szCommand);
}
void main()
{

Hack("ShowFps 1");

        Sleep(200);
	}
BOOL APIENTRY DllMain( HMODULE hModule,
                       DWORD  ul_reason_for_call,
                       LPVOID lpReserved
                     )
{
    switch (ul_reason_for_call)
    {
    case DLL_PROCESS_ATTACH:
        CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)&main, NULL, 0,NULL);
        break;
    case DLL_THREAD_ATTACH:
    case DLL_THREAD_DETACH:
    case DLL_PROCESS_DETACH:
        break;
	}
    return TRUE;

}
This method suppose to work? lol cause it doesn't for me too..
This Metod dont Work!
it doesnt for me either it was posted on hack source and i tried it out, so its not just i that it's failing for?
It's just not working, so the problem isn't you. lol
lol i know im not sure why im nearly getting flamed in the other thread.
isnt everyone trying to get hacks going after this last patch? why is nobody really helping.
Because this community is filled with kids, and selfish people. Don't even be surprise if they flame.
Quote Originally Posted by anaestheist View Post
Because this community is filled with kids, and selfish people. Don't even be surprise if they flame.
Correct!
you need a bypass

use this

Code:
//===============================================
//==========Define is Ingame=====================
//===============================================

typedef bool (*IsConnected_t)(void);

//===============================================
//==============Return the InGameStatus==========
//===============================================

bool IsIngame()
{
    DWORD* LTBase = (DWORD*)CSHELL_LTC;
    IsConnected_t pConnected = *(IsConnected_t*)(*LTBase + 0x8C);

    return pConnected();
}
credits to creator
Quote Originally Posted by UltimateX1 View Post
you need a bypass

use this

Code:
//===============================================
//==========Define is Ingame=====================
//===============================================

typedef bool (*IsConnected_t)(void);

//===============================================
//==============Return the InGameStatus==========
//===============================================

bool IsIngame()
{
    DWORD* LTBase = (DWORD*)CSHELL_LTC;
    IsConnected_t pConnected = *(IsConnected_t*)(*LTBase + 0x8C);

    return pConnected();
}
credits to creator
This is the first part m8, keep working on it, your nearly there...
Quote Originally Posted by UltimateX1 View Post
you need a bypass

use this

Code:
//===============================================
//==========Define is Ingame=====================
//===============================================

typedef bool (*IsConnected_t)(void);

//===============================================
//==============Return the InGameStatus==========
//===============================================

bool IsIngame()
{
    DWORD* LTBase = (DWORD*)CSHELL_LTC;
    IsConnected_t pConnected = *(IsConnected_t*)(*LTBase + 0x8C);

    return pConnected();
}
credits to creator
its not a bypass... its just an ingame check
and between its 1:1 copied by my post...
Quote Originally Posted by kotentopf View Post
its not a bypass... its just an ingame check
and between its 1:1 copied by my post...
i gave you credits bitch
Here, I think I fixed, it. I'll test then pm it to you



EDIT_________________________________

It doesn't work even with the bypass.
Quote Originally Posted by Dieorwin View Post
Here, I think I fixed, it. I'll test then pm it to you



EDIT_________________________________

It doesn't work even with the bypass.
use alt ltc

change while()

to

while(pIsConnected = 1) // may give you error but its simply fixed
Quote Originally Posted by UltimateX1 View Post
use alt ltc

change while()

to

while(pIsConnected = 1) // may give you error but its simply fixed
What while() are you talking about?
Posts 115 of 18 · Page 1 of 2

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?