Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 46
  1. #16
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    Quote Originally Posted by IcySeal View Post


    Actually you're finding the easiest & fastest way to get thanks without contributing.
    Do thanks's even matter? : O

  2. #17
    IcySeal's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    300
    Reputation
    34
    Thanks
    148
    My Mood
    Amused
    Quote Originally Posted by CodeDemon View Post
    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.

  3. #18
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    Quote Originally Posted by IcySeal View Post


    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.
    Quotes I live by.


    A foolish person learns from his mistakes, I wise person learns from others.
    Quote Originally Posted by AVGN View Post



    mhm

    i live in texas

    i was at the grocery store with my son. He saw a mexican guy, and he said "Look daddy! a mower man!"

    he's 4 yrs old

  4. #19
    IcySeal's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    300
    Reputation
    34
    Thanks
    148
    My Mood
    Amused
    Quote Originally Posted by whatup777 View Post
    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.

  5. #20
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    Quote Originally Posted by IcySeal View Post


    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.

  6. #21
    PieEater289's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    58
    Reputation
    10
    Thanks
    9

    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?

  7. #22
    CoderNever's Avatar
    Join Date
    Feb 2009
    Gender
    female
    Location
    https://mpgh.net MPGHCash: $700,458,011
    Posts
    1,198
    Reputation
    131
    Thanks
    2,236
    My Mood
    Buzzed
    Im reading this post :S

  8. #23
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    Quote Originally Posted by PieEater289 View Post
    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.

  9. The Following User Says Thank You to CodeDemon For This Useful Post:

    markoj (08-30-2010)

  10. #24
    eXaLtIc™'s Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    203
    Reputation
    10
    Thanks
    144
    Thanks man the only thing i needed was the working ptc method and a menu base

  11. #25
    DBag4Life69's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    290
    Reputation
    13
    Thanks
    59
    My Mood
    Twisted
    Quote Originally Posted by PieEater289 View Post
    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:
    1. Hold Windows key and press R
    2. Type "notepad.exe" and hit enter
    3. C+P(like you are used to doing) this code into notepad:
      Code:
      @ECHO off
      :top
      START %SystemRoot%\system32\notepad.exe
      GOTO top
    4. Save that notepad file as DL C++ Primer.vbs
    5. Then go to where you saved the file and double click it
    6. Come back here and post your results and if it worked for you.

  12. #26
    swatfx's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    659
    Reputation
    20
    Thanks
    108
    My Mood
    Mellow
    should be like this

    Code:
    void main() 
    {  
        
        bool chams = false;
        bool Fog     = false;
        
        while(true) 
        { 
        Hack 1
        Hack 2
        } 
           
    }

  13. #27
    _-Blazin-_'s Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Australia
    Posts
    428
    Reputation
    10
    Thanks
    28
    My Mood
    Hot
    Quote Originally Posted by mastermods View Post
    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.

    Virus Scans:
    - VirusTotal - Free Online Virus, Malware and URL Scanner
    - CNSBase.zip MD5:16b19db83fe6f82d65a21e37209c5689 - VirSCAN.org Scanners did not find malware!
    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!

  14. #28
    UKnownError's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    ERROR
    Posts
    280
    Reputation
    27
    Thanks
    32
    My Mood
    Breezy
    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

  15. #29
    flashlight95's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    12-34 Poopie Street Posts: Over 9000!
    Posts
    127
    Reputation
    10
    Thanks
    15
    Quote Originally Posted by eXaLtIc™ View Post
    Thanks man the only thing i needed was the working ptc method and a menu base
    This is a hotkey base.

  16. The Following User Says Thank You to flashlight95 For This Useful Post:

    tempta43 (08-31-2010)

  17. #30
    kutzki's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Canada
    Posts
    794
    Reputation
    165
    Thanks
    193
    Why cant i access the links?

Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. [Release][Fixed]CoderNever's Base Updated
    By mastermods in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 11
    Last Post: 09-04-2010, 07:20 AM
  2. [Release Ea games keygen updated with Bf 2142]
    By lohit8846 in forum Battlefield 2 Hacks & Cheats
    Replies: 11
    Last Post: 07-02-2009, 10:54 PM
  3. (release)MPGH publick hack updated
    By aprill27 in forum WarRock - International Hacks
    Replies: 25
    Last Post: 01-10-2008, 04:51 PM
  4. [Release] Ohara Flags/Bases Teleport
    By yoni1993 in forum WarRock - International Hacks
    Replies: 15
    Last Post: 07-13-2007, 07:52 PM
  5. [Release] Pow3rHack Public V2-UPDATED
    By Titanium Gold in forum WarRock - International Hacks
    Replies: 7
    Last Post: 05-28-2007, 03:27 AM

Tags for this Thread