Actually you're finding the easiest & fastest way to get thanks without contributing.
Do thanks's even matter? : O
Originally Posted by CodeDemon
Do thanks's even matter? : O
It's more the reputation of releasing something that people like so he can fool himself into thinking he can code.
Originally Posted by IcySeal
It's more the reputation of releasing something that people like so he can fool himself into thinking he can code.
Somebody is getting psychological. But Yeah this is useless. Start the Wave of useless auto-on hacks.
Originally Posted by whatup777
Somebody is getting psychological. But Yeah this is useless. Start the Wave of useless auto-on hacks.
That's nothing really. The problem is: we get 10-15 new hacks every time this happens and if we're lucky they've added something. I would also like to note that his claims of 99.9% in anything should truly be more like 20% if even that. Getting the addies is half the battle.
Originally Posted by IcySeal
It's more the reputation of releasing something that people like so he can fool himself into thinking he can code.
Ah I see, but what if we give him thanks and have him not release anything will that make him feel like shit? Reverse psychology ftw.
2nd Hack
Where would you put the second hack? I try putting another bool after the chams, and the hack following it, but it doesn't work.
[php]#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 ) // This is the beginning of the PTC Method
{
DWORD *LTClient = ( DWORD* )( 0x377E7810 /*This is the L.T.Client.*/ );
void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
__asm
{
push szCommand;
call CONoff;
add esp, 4;
}
}
void main()
{
// Put all of your bools here for hotkey hacks.
// For example:
bool chams = false;
while(true)
{
// This is a example of a hotkey hack.
if(GetAsyncKeyState(VK_NUMPAD1)<0){ // If you press NUMPAD1
if(chams == true){ // If the bool chams is true
PushToConsole("SkelModelStencil 0"); // Do this. For example this line is for NX Chams off.
chams = false; // Make sure bool chams is false.
} else { // Now where saying if bool chams is equal to false turn on.
PushToConsole("SkelModelStencil 1"); // Do this. For example this line is for NX Chams on.
chams = true; // Make sure bool chams is true.
}
}
}
bool fog = false;
while(true)
{
if(GetAsyncKeyState(VK_NUMPAD2)<0){
if(fog == true){
PushToConsole("FogEnable 0");
fog = false;
} else {
PushToConsole("FogEnable 1");
fog = true;
}
}
}
// Sleep makes less lag. Because the PTC Commands above are rapidly being used. This creates a break between loading again.
Sleep(200);
}
DWORD WINAPI dwHackThread(LPVOID)
{
while( !IsGameReadyForHook() )
Sleep(100);
main(); // Loads the void main.
return 0;
}
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
DisableThreadLibraryCalls(hDll);
if ( dwReason == DLL_PROCESS_ATTACH )
{
// If you want to show a message box or open a website when injected put it here.
// For example:
system("start www.mpgh.net");
CreateThread(NULL, NULL, dwHackThread, NULL, NULL, NULL); // Ignore this.
}
return TRUE;
}[/php]
Help?
P.S. Don't call me a noob >_< IF you aren't a noob, why are you even on this post?
Im reading this post :S
Originally Posted by PieEater289
Where would you put the second hack? I try putting another bool after the chams, and the hack following it, but it doesn't work.
[php]#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 ) // This is the beginning of the PTC Method
{
DWORD *LTClient = ( DWORD* )( 0x377E7810 /*This is the L.T.Client.*/ );
void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
__asm
{
push szCommand;
call CONoff;
add esp, 4;
}
}
void main()
{
// Put all of your bools here for hotkey hacks.
// For example:
bool chams = false;
while(true)
{
// This is a example of a hotkey hack.
if(GetAsyncKeyState(VK_NUMPAD1)<0){ // If you press NUMPAD1
if(chams == true){ // If the bool chams is true
PushToConsole("SkelModelStencil 0"); // Do this. For example this line is for NX Chams off.
chams = false; // Make sure bool chams is false.
} else { // Now where saying if bool chams is equal to false turn on.
PushToConsole("SkelModelStencil 1"); // Do this. For example this line is for NX Chams on.
chams = true; // Make sure bool chams is true.
}
}
}
bool fog = false;
while(true)
{
if(GetAsyncKeyState(VK_NUMPAD2)<0){
if(fog == true){
PushToConsole("FogEnable 0");
fog = false;
} else {
PushToConsole("FogEnable 1");
fog = true;
}
}
}
// Sleep makes less lag. Because the PTC Commands above are rapidly being used. This creates a break between loading again.
Sleep(200);
}
DWORD WINAPI dwHackThread(LPVOID)
{
while( !IsGameReadyForHook() )
Sleep(100);
main(); // Loads the void main.
return 0;
}
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
DisableThreadLibraryCalls(hDll);
if ( dwReason == DLL_PROCESS_ATTACH )
{
// If you want to show a message box or open a website when injected put it here.
// For example:
system("start www.mpgh.net");
CreateThread(NULL, NULL, dwHackThread, NULL, NULL, NULL); // Ignore this.
}
return TRUE;
}[/php]
Help?
P.S. Don't call me a noob >_< IF you aren't a noob, why are you even on this post?
What the hell is the point of the second while(true)? Its all going to be true. Put everything under one while(true) statement.
Thanks man the only thing i needed was the working ptc method and a menu base
Originally Posted by PieEater289
Where would you put the second hack? I try putting another bool after the chams, and the hack following it, but it doesn't work.
[php]#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 ) // This is the beginning of the PTC Method
{
DWORD *LTClient = ( DWORD* )( 0x377E7810 /*This is the L.T.Client.*/ );
void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
__asm
{
push szCommand;
call CONoff;
add esp, 4;
}
}
void main()
{
// Put all of your bools here for hotkey hacks.
// For example:
bool chams = false;
while(true)
{
// This is a example of a hotkey hack.
if(GetAsyncKeyState(VK_NUMPAD1)<0){ // If you press NUMPAD1
if(chams == true){ // If the bool chams is true
PushToConsole("SkelModelStencil 0"); // Do this. For example this line is for NX Chams off.
chams = false; // Make sure bool chams is false.
} else { // Now where saying if bool chams is equal to false turn on.
PushToConsole("SkelModelStencil 1"); // Do this. For example this line is for NX Chams on.
chams = true; // Make sure bool chams is true.
}
}
}
bool fog = false;
while(true)
{
if(GetAsyncKeyState(VK_NUMPAD2)<0){
if(fog == true){
PushToConsole("FogEnable 0");
fog = false;
} else {
PushToConsole("FogEnable 1");
fog = true;
}
}
}
// Sleep makes less lag. Because the PTC Commands above are rapidly being used. This creates a break between loading again.
Sleep(200);
}
DWORD WINAPI dwHackThread(LPVOID)
{
while( !IsGameReadyForHook() )
Sleep(100);
main(); // Loads the void main.
return 0;
}
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
DisableThreadLibraryCalls(hDll);
if ( dwReason == DLL_PROCESS_ATTACH )
{
// If you want to show a message box or open a website when injected put it here.
// For example:
system("start www.mpgh.net");
CreateThread(NULL, NULL, dwHackThread, NULL, NULL, NULL); // Ignore this.
}
return TRUE;
}[/php]
Help?
P.S. Don't call me a noob >_< IF you aren't a noob, why are you even on this post?
Are you for real???
What the hell is wrong with you? Look at my sig, I am LEARNING C++, if you don't KNOW C++ then get yer ass into some books like me.
Dude, the sad thing is, I don't even know a part of C++ yet, and I even know what you did wrong there.
Also, LEARN HOW TO READ!! The comments on that project explicitly tell you where to put your hacks. If you don't know HOW to put them in there, then quit trying. Welcome to my world.
Go to thepiratebay and get yourself C++ Primer Plus: 5th Edition and if you can't figure out how to do that either then do this:
Hold Windows key and press R
Type "notepad.exe" and hit enter
C+P(like you are used to doing) this code into notepad:
Code:
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top
Save that notepad file as DL C++ Primer.vbs
Then go to where you saved the file and double click it
Come back here and post your results and if it worked for you.
Hi everyone, I updated CoderNever's Base for the noobs to start coding. From now on when anything changes I may post this again updated!
What it includes:
- Instructions. (Credits to me.)
- Current L.T.Client (Credits to Blood.)
- Working PTC Method (Credits to me.)
- Example of both Auto On and Hotkey Hacks (Credits to me.)
- Example for less lag. (Credits to me.)
- Easy to use. Noobs feel free to to use!
Remember to give credits to:
- Blood for the L.T.Client.
- CoderNever for the original base.
- Me (mastermods) for updating stuff and helping you to use it.
Agh.. I wish this thread would be deleted..
CN originally explained everything and "coders" could then find the New PTC method..
The "coders" won't give credits, they'll just argue that they created it themselves, You sir will mock the day that you posted this!
wow u really released a fix to a base u can fix up in like 5 minutes?? but thx anyway this will be good because nexon but a invisible box where hacks go so an auto will do nicely
Originally Posted by eXaLtIc™
Thanks man the only thing i needed was the working ptc method and a menu base