Results 1 to 6 of 6
  1. #1
    britguy420's Avatar
    Join Date
    Sep 2016
    Gender
    male
    Posts
    41
    Reputation
    10
    Thanks
    5
    My Mood
    Yeehaw

    1/ HackProcess? 2/ Enemy team?

    Hey! I have 2 question.
    1/ How can i make my own HackProcess? is there any tutorial or smth? I know all hack process what is public detected...

    2/ How can i get the enemy team? I mean.. I get me own like this :
    ReadProcessMemory(fProcess.__HandleProcess, (PBYTE)(PlayerBase + team), &mtem, sizeof(int), 0);

    I tried that to find enemy team :
    ReadProcessMemory(fProcess.__HandleProcess, (PBYTE)(id + team), &etem, sizeof(int), 0);
    id = ReadProcessMemory(fProcess.__HandleProcess, (PBYTE)(PlayerBase + Crosshair), &id, sizeof(int), 0);
    But its doesnt work...

    Thank you for help!

    PS : Its all for an external multi.

  2. #2
    PhY'z's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Posts
    518
    Reputation
    58
    Thanks
    1,310
    My Mood
    Angelic
    Oh this time is legit needed.

    learncpp.com
    Some logic classes are welcome too.

    Don't even continue what you are trying to do, you are clueless, and probably 99% of users/devs/whatever will help you.
    Contact with me in any question...


    Hi (:

  3. The Following User Says Thank You to PhY'z For This Useful Post:

    britguy420 (07-20-2017)

  4. #3
    affe2626's Avatar
    Join Date
    Apr 2015
    Gender
    male
    Location
    Sweden
    Posts
    552
    Reputation
    146
    Thanks
    151
    My Mood
    Angelic
    Quote Originally Posted by britguy420 View Post
    ReadProcessMemory(fProcess.__HandleProcess, (PBYTE)(id + team), &etem, sizeof(int), 0);
    id = ReadProcessMemory(fProcess.__HandleProcess, (PBYTE)(PlayerBase + Crosshair), &id, sizeof(int), 0);
    Search up "entitylist" in a source code, try to learn from that. What you're trying to do is CrosshairID(somewhere around 0 - 32) + m_CrossHairID which is 0xAA40.
    Let's say the ID is 5 then you're reading the memory from address 0xAA45 (hex), that's not even CS:GO's memory and you'll get a memory access warning/crash.

    Read what HackProcess does and make your own. I don't think it's detected. Like a writememory function could look like this:

    Code:
    template <typename T> T CMemoryClass::Read(uintptr_t nAddress)
    {
    T thingy;
    ReadProcessMemory(Handle, (PBYTE)(nAddress), &thingy, sizeof(T), 0); 
    return thingy;
    }
    That code may not even work as I made rn in like 1 minute but you get the point probably.
    Last edited by affe2626; 07-19-2017 at 08:07 PM.

    Always PM me when trading, I've been hacked on my Skype previously
    [img]https://**********.com/addskype/affe2626.png[/img]

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

    britguy420 (07-20-2017)

  6. #4
    britguy420's Avatar
    Join Date
    Sep 2016
    Gender
    male
    Posts
    41
    Reputation
    10
    Thanks
    5
    My Mood
    Yeehaw
    Quote Originally Posted by affe2626 View Post
    Search up "entitylist" in a source code, try to learn from that. What you're trying to do is CrosshairID(somewhere around 0 - 32) + m_CrossHairID which is 0xAA40.
    Let's say the ID is 5 then you're reading the memory from address 0xAA45 (hex), that's not even CS:GO's memory and you'll get a memory access warning/crash.

    Read what HackProcess does and make your own. I don't think it's detected. Like a writememory function could look like this:

    Code:
    template <typename T> T CMemoryClass::Read(uintptr_t nAddress)
    {
    T thingy;
    ReadProcessMemory(Handle, (PBYTE)(nAddress), &thingy, sizeof(T), 0); 
    return thingy;
    }
    That code may not even work as I made rn in like 1 minute but you get the point probably.
    thank you for the help.

  7. #5
    KMWTW's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Location
    www.learncpp.com
    Posts
    2,466
    Reputation
    321
    Thanks
    14,450
    My Mood
    Blah
    team

    !team

    logic ,....

  8. #6
    SPITZE's Avatar
    Join Date
    Jul 2017
    Gender
    male
    Posts
    31
    Reputation
    10
    Thanks
    58
    To begin with it is necessary to begin to learn language C ++. The best advice is to teach him through lectures, it is from them that you will be able to learn about the language of many important subtleties. Well then public hackprocess not detected. But if you want to write your own, you will not get anything original, the code will be very similar to what is on the Internet, if you certainly will use the standard functions provided for windows.

Similar Threads

  1. [Help] Glow ESP for only enemy team
    By JimL in forum Counter-Strike 2 Coding & Resources
    Replies: 4
    Last Post: 09-28-2015, 10:33 AM
  2. [Help] Glow ESP for only enemy team
    By sup h0wl in forum Counter-Strike 2 Coding & Resources
    Replies: 5
    Last Post: 08-20-2015, 05:08 PM
  3. [Discussion] What Do You Do When You Face Another Hacker (or more hackers) In The Enemy Team ?
    By bbcmodz in forum Counter-Strike 2 Discussions
    Replies: 2
    Last Post: 06-07-2015, 01:31 PM
  4. Most important Information about enemy team?
    By The Danger Boy in forum League of Legends Discussions
    Replies: 20
    Last Post: 12-08-2013, 02:41 AM
  5. Mat hack with only enemy team colored
    By zzod0000 in forum Team Fortress 2 Hacks
    Replies: 1
    Last Post: 07-20-2012, 01:18 PM