Thread: PTC Methods

Page 1 of 2 12 LastLast
Results 1 to 15 of 21
  1. #1
    fvestrgenrl's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Posts
    172
    Reputation
    9
    Thanks
    26

    PTC Methods

    This no longer works. Causes crash in 1-2 minutes.
    Code:
    void__cdecl PushToConsole( constchar* szCommand )
    {
    DWORD *LTClient = ( DWORD* )( 0x377ED910 ); 
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    __asm
    {
    push szCommand;
    call CONoff;
    add esp, -3-1+2+6;
    }
    }
    replace it with:
    Code:
    void __cdecl PushToConsole(char* szVal)
    {
        void* vSetVar = (void*)0x46F670;
        _asm
        {
            push szVal
            call vSetVar
            add esp, 4
        }
    }
    and your hacks will work.
    No more threads please
    Last edited by Disturbed; 10-18-2010 at 09:41 PM. Reason: change Push to PushToConsole
    Quote Originally Posted by fallon View Post
    hi i have make a hack and with hot keys but when i start it combat arms close down


    i use this code



    Code:
    PushToConsole("SkelModelStencil (V_F9)1");
    PushToConsole("ShowFps (V_INSERT");
    PushToConsole("ActivationDistance 999999(V_F6)" );
    PushToConsole("DisableCrosshair (V_NUMPAD 1" );
    PushToConsole("CrossHairR 255(V_NUMPAD 2) ");
    PushToConsole("ReloadSpeed 0.000000(V_F5) ");
    }
    Learning C++
    Pg 33/1225
    2.7%

  2. #2
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    You sure? I mean. Where did the credits go /

    this will give errors.

    If people use PushToConsole instead of just Push, It will give errors 'ya dmmy
    No I do not make game hacks anymore, please stop asking.

  3. #3
    UltimateX1's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    114
    Reputation
    10
    Thanks
    10
    My Mood
    Yeehaw
    Quote Originally Posted by flameswor10 View Post
    You sure? I mean. Where did the credits go /

    this will give errors.

    If people use PushToConsole instead of just Push, It will give errors 'ya dmmy
    they have to have common since to change all the words from

    "pushtoconsole"
    to
    "Push"

  4. #4
    shugeevan's Avatar
    Join Date
    Aug 2007
    Gender
    male
    Posts
    479
    Reputation
    9
    Thanks
    88
    Quote Originally Posted by UltimateX1 View Post
    they have to have common since to change all the words from

    "pushtoconsole"
    to
    "Push"
    Common Sense*
    /

    That is absouletly true. We cannot tell them every bit of detail Flame ): It's just how the world works nowadays, we cannot spoonfeed everything to "newbs"!

    /
    Even though I am one myself, that is a whole different story
    Buhh I'm like that (:

  5. The Following User Says Thank You to shugeevan For This Useful Post:

    [MPGH]Disturbed (10-18-2010)

  6. #5
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    Quote Originally Posted by shugeevan View Post
    Common Sense*
    /

    That is absouletly true. We cannot tell them every bit of detail Flame ): It's just how the world works nowadays, we cannot spoonfeed everything to "newbs"!

    /
    Even though I am one myself, that is a whole different story
    Buhh I'm like that (:
    I spoonfeed many "noobs". Idgaf. Both ways, at least try to fix small things that may give errors
    No I do not make game hacks anymore, please stop asking.

  7. #6
    koolwrench's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    California
    Posts
    173
    Reputation
    10
    Thanks
    48
    My Mood
    Amused
    Quote Originally Posted by fvestrgenrl View Post
    This no longer works. Causes crash in 1-2 minutes.
    Code:
    void__cdecl PushToConsole( constchar* szCommand )
    {
    DWORD *LTClient = ( DWORD* )( 0x377ED910 ); 
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    __asm
    {
    push szCommand;
    call CONoff;
    add esp, -3-1+2+6;
    }
    }
    replace it with:
    Code:
    void __cdecl Push(char* szVal)
    {
        void* vSetVar = (void*)0x46F670;
        _asm
        {
            push szVal
            call vSetVar
            add esp, 4
        }
    }
    and your hacks will work.
    No more threads please
    lol i think this has been posted like many time with the alt addie just added. your the one starting the threads lol /
    DONT FORGET TO PRESS THE THANKS BUTTON

    accomplishment list:
    post 5 times []
    post 10 times []
    post 50 times[]
    post 100 times[]
    begin to learn coding[]
    code first program []
    code second program[]
    code first hack []
    code a awsome hack[]
    become a member[]
    become a well known[]
    get a unbeliavable[]
    get an unbeliavble+[]
    get called a haxor without hacking[]
    hack without being called a hacker[]






    RESPECT LIST:
    [MPGH]Dave84311
    [Mpgh]Liz

  8. #7
    Disturbed's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    10,472
    Reputation
    1267
    Thanks
    2,587
    Someone test this and VM me if it doesn't work.


    And it would be easier just to keep it PushToConsole, and not change it to Push.

    *Edits post to change Push to PushToConsole*


  9. #8
    Eccentric's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    In The Sky.
    Posts
    1,419
    Reputation
    48
    Thanks
    84
    My Mood
    Breezy
    YEs, Crashes after a couple mins.
    [IMG]https://i1192.photobucke*****m/albums/aa331/Trevor_Borden/Untitled-1-13.png[/IMG]

    MSN: NexusLite@live.com
    ****** SSNYC@live.com
    Xbox: Courtliest

  10. #9
    @osma8's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    749
    Reputation
    26
    Thanks
    84
    Thanks alot this is what i was looking for to make my hack work tyvm.

  11. #10
    HL-SDK's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    56
    Reputation
    11
    Thanks
    26
    Quote Originally Posted by UltimateX1 View Post
    they have to have common since to change all the words from

    "pushtoconsole"
    to
    "Push"
    WRONG
    .........
    loksmith is a fucking moron

  12. #11
    Mr.Magicman's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Sitting in my cave full of thoughts learning Asembly
    Posts
    2,102
    Reputation
    16
    Thanks
    649
    My Mood
    Cold
    Why cant you people help instead of troll?? Do nothing instead of giving false shit.

  13. #12
    UGodly's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    https://www.mpgh.net/forum/members/645501-ugodly.html
    Posts
    1,234
    Reputation
    18
    Thanks
    160
    My Mood
    Yeehaw
    naw i think its a detected ptc method

  14. #13
    Mr.Magicman's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Sitting in my cave full of thoughts learning Asembly
    Posts
    2,102
    Reputation
    16
    Thanks
    649
    My Mood
    Cold
    I use the normal PTC method and nothing is detected for me.. you guys are doing something wrong.

  15. #14
    Gab's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,716
    Reputation
    1755
    Thanks
    1,543
    Does it really works? If yeah, you're awesome.

  16. #15
    budman821's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    356
    Reputation
    5
    Thanks
    83
    i tried this ptc mehtod and i still got d/ced. somebody please help me!

Page 1 of 2 12 LastLast

Similar Threads

  1. I believe the PTC method was patched
    By mistertex in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 19
    Last Post: 09-20-2010, 06:23 PM
  2. PTC Method
    By DBag4Life69 in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 13
    Last Post: 09-12-2010, 06:34 PM
  3. PTC Method
    By Crash in forum Combat Arms EU Hack Coding/Source Code
    Replies: 4
    Last Post: 08-21-2010, 12:32 AM
  4. ptc method
    By HaX4LiFe! in forum Combat Arms EU Hack Coding/Source Code
    Replies: 23
    Last Post: 08-20-2010, 07:27 AM
  5. PTC Methods?
    By ~Liberty~ in forum Combat Arms EU Help
    Replies: 3
    Last Post: 07-26-2010, 09:41 AM