PostHelp Please

Posts 18 of 8 · Page 1 of 1
Help Please
Well Im A noob Coder Not even coder Lol Im trying To learn Using CN Base But It dosnt Work i updated Lt.Client And addies and nothing/

I just want to learn please dont Flame


Code:
#include <windows.h>
bool IsGameReadyForHook()
{
if( GetModuleHandleA( "d3d9.dll"     ) != NULL 
&& GetModuleHandleA( "ClientFX.fxd" ) != NULL 
&& GetModuleHandleA( "CShell.dll"   ) != NULL )
return true;
return false;
}
void __cdecl PushToConsole( const char* szCommand )
{
DWORD *LTClient = ( DWORD* )( 0x3778BFB0 );
void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
__asm
{
push szCommand;
call CONoff;
add esp, 4;
}
}	
void main()
{
while(true)
{
PushToConsole("SkelModelStencil 1");
}
}
DWORD WINAPI dwHackThread(LPVOID)
{
while( !IsGameReadyForHook() )
Sleep(100);
main();
return 0;
}
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
DisableThreadLibraryCalls(hDll);
if ( dwReason == DLL_PROCESS_ATTACH )
{
CreateThread(NULL, NULL, dwHackThread, NULL, NULL, NULL);
}
return TRUE;
}
Stop fuking C+Ping and learn C++ and it will work.
Dude im fucking saying that i dont know C++ and im trying to learn Fucking read Im trying to understand.
If you provide the error that you are getting it will make helping you 100x easier.
Got it Code thank you anyways I was Using debugger -.-
naw just too laggy Im trying to add some addies and stuff
make a "removers" feature

or change the sleep time
Posts 18 of 8 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?