Thread: My PTC Method!

Page 3 of 5 FirstFirst 12345 LastLast
Results 31 to 45 of 72
  1. #31
    seeplusplus's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Massachusetts
    Posts
    329
    Reputation
    8
    Thanks
    85
    Quote Originally Posted by markoj View Post
    That doesn't fully help them so allow me to be the bigger dick
    Code:
        __asm
        {
            push Command;
            call Control;
            add esp, 4;
        }
    xD that would just get rid of "Value."
    The format is now:
    CPush("Command Value","This doesn't do anything");
    You will still need to add something for this to not crash...
    Goals:
    Green = Done
    Blue = Getting Somewhere
    Red = Not Done
    • Mouse Grid
    • PTC Method
    • Trigger Bot

    I'm trying to think of more stuff!

  2. #32
    seaplusplus's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    106
    Reputation
    4
    Thanks
    51
    My Mood
    Drunk
    Quote Originally Posted by Alessandro10 View Post
    Just Use MHS or Make / Use Address Logger
    You would need to make MHS undetected and have a bypass that isolates Engine.exe... Like GodHack2's bypass.

  3. #33
    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
    Quote Originally Posted by seaplusplus View Post
    You would need to make MHS undetected and have a bypass that isolates Engine.exe... Like GodHack2's bypass.
    Which i havent seen an update on.

  4. #34
    GodHack2's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    644
    Reputation
    38
    Thanks
    762
    My Mood
    Amused
    Quote Originally Posted by Mr.Magicman View Post


    Which i havent seen an update on.
    it still works (unpatchable)





    beat this bitches ^^^^^^^

    Current Stats : Bored :/


    Respect list :
    Crash !
    Gordon'
    Markoj

  5. #35
    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
    Quote Originally Posted by GodHack2 View Post
    it still works (unpatchable)
    Not for EU...

  6. #36
    NOOBJr's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in NOOB
    Posts
    1,423
    Reputation
    112
    Thanks
    693
    There is an easier way!You can make a ptc method kinda like the old days if you know how to code

  7. #37
    ken53406's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    In your moms slop hole :D
    Posts
    151
    Reputation
    9
    Thanks
    97
    My Mood
    Aggressive
    Or you could be like seaplushomo and leech D:
    Ive started to get into making my own, goin real slow, but im learning along the way which is the best way to learn, also tryin to make a d3d menu base, its gettin there, just needa focus on coding other than sleeping /RAGE
    troll says: FUK YO COUCH NIGGA!
    V
    [img]https://www.******************/forums/images/smilies/troll_run.gif[/img]


    My goals list:
    Legend:

    Complete - Incomplete -

    30 Posts: [] | 50 Posts: []
    70 Posts: [] | 100 Posts: []
    500 Posts: [] | 1,000 Posts: []
    Release a CA NA pub: [] | Release a CFNA Pub: []
    Pro C++ Coder: [] | Pro VB Coder: []
    [IMG]https://images.encyclopediadramatic*****m/images/5/57/Pedobear_a.gif[/IMG]

    Don't forget:

  8. The Following User Says Thank You to ken53406 For This Useful Post:

    markoj (01-04-2011)

  9. #38
    Dead 4 Real's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Canada
    Posts
    336
    Reputation
    11
    Thanks
    83
    My Mood
    Relaxed
    is this patched yet, and also would it go like this just asking.

    Code:
    void __cdecl CPush(char *Command, char *Value)
    {
        char *PCommand = new char[256]; //Define PCommand
        sprintf(PCommand, "%s %s", Command, Value); //Define PCommand as "Command(Space)Value"
        DWORD LTC = 0x485E10; //Define the LTC (Gordon's LTC)
        void *Control = (void*)LTC; //Define Control method as the LTC
        __asm
        {
            push Command;
            call Control;
            add esp, 4;
        }
    	CPush("ShowFPS", "1");
    }

  10. #39
    MrSkafighter's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    410
    Reputation
    23
    Thanks
    2,238
    My Mood
    Cool
    Quote Originally Posted by Dead 4 Real View Post
    is this patched yet, and also would it go like this just asking.

    Code:
    void __cdecl CPush(char *Command, char *Value)
    {
        char *PCommand = new char[256]; //Define PCommand
        sprintf(PCommand, "%s %s", Command, Value); //Define PCommand as "Command(Space)Value"
        DWORD LTC = 0x485E10; //Define the LTC (Gordon's LTC)
        void *Control = (void*)LTC; //Define Control method as the LTC
        __asm
        {
            push Command;
            call Control;
            add esp, 4;
        }
        CPush("ShowFPS", "1");
    }
    Nope not yet. You just need to fix to get it undetect its very easy for real coders just like what seeplusplus said. But i'm not real yet i just figure out lol.

  11. #40
    Gordon`'s Avatar
    Join Date
    Dec 2007
    Gender
    male
    Posts
    283
    Reputation
    24
    Thanks
    325
    Code:
    char *PCommand = new char[256];
    wow, this will create a big memory leak.
    to fix this add

    Code:
    delete [] PCommand;
    after the assembly code.


    Code:
    void *Control = (void*)LTC;
    Pretty useless. call LTC also works. if not store it in a register and call it
    Code:
    call LTC
    ; or 
    mov eax, LTC
    call eax
    Last edited by Gordon`; 01-10-2011 at 10:28 PM.


  12. #41
    Velocity's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Usa
    Posts
    4,375
    Reputation
    106
    Thanks
    773
    Quote Originally Posted by Gordon` View Post
    Code:
    char *PCommand = new char[256];
    wow, this will create a big memory leak.
    to fix this add

    Code:
    delete [] PCommand;
    after the assembly code.


    Code:
    void *Control = (void*)LTC;
    Pretty useless. call LTC also works. if not store it in a register and call it
    Code:
    call LTC
    ; or 
    mov eax, LTC
    call eax
    u arent seriously gordon?

  13. #42
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    I'm wondering why you called your function CPush...

    Quote Originally Posted by UnknownCoder View Post


    Lol cause people dont call there hacks in present.
    You don't need to |:

    Quote Originally Posted by GodHack2 View Post
    it still works (unpatchable)
    Nothing is unpatchable.

    Quote Originally Posted by Gunnez360 View Post


    u arent seriously gordon?
    He is.
    Last edited by freedompeace; 01-11-2011 at 02:41 AM. Reason: ++posts;

  14. #43
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Quote Originally Posted by Gunnez360 View Post


    u arent seriously gordon?
    Yup thats really him
    And he actually contributes to mpgh

  15. #44
    Velocity's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Usa
    Posts
    4,375
    Reputation
    106
    Thanks
    773
    does anyone think i should learn c++?

  16. #45
    seaplusplus's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    106
    Reputation
    4
    Thanks
    51
    My Mood
    Drunk
    Quote Originally Posted by Gordon` View Post
    Code:
    char *PCommand = new char[256];
    wow, this will create a big memory leak.
    to fix this add

    Code:
    delete [] PCommand;
    after the assembly code.


    Code:
    void *Control = (void*)LTC;
    Pretty useless. call LTC also works. if not store it in a register and call it
    Code:
    call LTC
    ; or 
    mov eax, LTC
    call eax
    That could have been a noob-proof problem...

Page 3 of 5 FirstFirst 12345 LastLast