Thread: My new PTC Idea

Results 1 to 11 of 11
  1. #1
    topblast's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Far from around you Programmer: C++ | VB | C# | JAVA
    Posts
    3,607
    Reputation
    149
    Thanks
    5,052
    My Mood
    Cool
    So, while i was going to take a leak. I was thinking about Combat Arms and the string detection problems and i got this create idea. Instead of making adding string in the hack or encrypting. You can use Memory to get the commands to push, they are some commands that will not be in CShell by default. What i mean by this is inside cshell this is ShowFPS 0 and also ShowFPS 1, but for some others they is just the name of the command and no value and then they are others who may have a value but not the one you will like, for those just edit the string which I think is hard for most of you since you all just dive into C++ and skipping the important thing but I can be wrong. You will have to prove me wrong.



    So you will not need to put "ShowFPS 1" in your hack you can just grab it from the memory
    [highlight=C++]
    char ShowFPS[] = {0x53, 0x68, 0x6f, 0x77,0x46, 0x50,0x53,0x20,0x31};
    int _tmain(int argc, _TCHAR* argv[])
    {
    DWORD Address = 0x417000; // thats the address to showfps
    char* wow = (char*)Address;
    printf(wow);
    while (true)
    Sleep(1);
    return 0;
    }[/highlight]
    Or learn ASCII and make encrypted byte arrays for all your strings and convert them to chars in code ....


    the byte array thing is the best, you will not have to learn to create some ASM to get the strings nor will you have to learn to edit the strings.

    [highlight=C++]
    BYTE ShowFPS[] = {0x54, 0x69, 0x70, 0x78,0x47, 0x51,0x54,0x21,0x32};
    int _tmain(int argc, _TCHAR* argv[])
    {
    //Decrypting the Encrypted bytes
    int i = 0;
    for (;
    {
    char cur = ShowFPS[i];
    ShowFPS[i]--;
    i++;
    if (cur=='\n')
    break;
    }
    //converting back to chars
    char* wow = (char*) ShowFPS;
    printf(wow);
    while (true)
    Sleep(1);
    return 0;
    }
    [/highlight]
    Last edited by topblast; 04-05-2011 at 01:06 PM.
    I just like programming, that is all.

    Current Stuff:

    • GPU Programmer (Cuda)
    • Client/Server (Cloud Server)
    • Mobile App Development

  2. The Following User Says Thank You to topblast For This Useful Post:

    Departure (04-05-2011)

  3. #2
    DeadLinez's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    https://mpgh.net Sexy Points: 989,576,420
    Posts
    465
    Reputation
    11
    Thanks
    500
    My Mood
    Psychedelic
    id make a function with ASM, but i cant use olly on my new computer...fml
    fuck x64 windows 7

  4. #3
    PashaAmd's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    1,008
    Reputation
    58
    Thanks
    224
    works for me..... on x64 :s

  5. #4
    DeadLinez's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    https://mpgh.net Sexy Points: 989,576,420
    Posts
    465
    Reputation
    11
    Thanks
    500
    My Mood
    Psychedelic
    Quote Originally Posted by PashaAmd View Post
    works for me..... on x64 :s
    :O Rly? i wanna seee, howd u get it to work?

  6. #5
    PashaAmd's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    1,008
    Reputation
    58
    Thanks
    224
    i downloaded it?? what is the problem that you have?

  7. #6
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    Or pack it.

  8. #7
    SoWhat's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    1,268
    Reputation
    15
    Thanks
    59
    My Mood
    In Love
    Download it and it should work ;O

  9. #8
    topblast's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Far from around you Programmer: C++ | VB | C# | JAVA
    Posts
    3,607
    Reputation
    149
    Thanks
    5,052
    My Mood
    Cool
    Quote Originally Posted by DeadLinez View Post
    id make a function with ASM, but i cant use olly on my new computer...fml
    fuck x64 windows 7
    download IDA pro
    I just like programming, that is all.

    Current Stuff:

    • GPU Programmer (Cuda)
    • Client/Server (Cloud Server)
    • Mobile App Development

  10. #9
    Departure's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    805
    Reputation
    125
    Thanks
    1,794
    My Mood
    Doh
    what can I say... exactly the point I was trying too put across..

  11. #10
    GameArena's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    107
    Reputation
    9
    Thanks
    44
    This actually sounds like a great idea... i'd rather "make encrypted byte arrays for all the strings and convert them to chars in code ...."

  12. #11
    topblast's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Far from around you Programmer: C++ | VB | C# | JAVA
    Posts
    3,607
    Reputation
    149
    Thanks
    5,052
    My Mood
    Cool
    Quote Originally Posted by GameArena View Post
    This actually sounds like a great idea... i'd rather "make encrypted byte arrays for all the strings and convert them to chars in code ...."
    it took me long just to type out that byte array. maybe because the ASCII table was complex and hard to read.
    I just like programming, that is all.

    Current Stuff:

    • GPU Programmer (Cuda)
    • Client/Server (Cloud Server)
    • Mobile App Development