Thread: Internal

Page 1 of 2 12 LastLast
Results 1 to 15 of 18
  1. #1
    jjjamer's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    115
    Reputation
    10
    Thanks
    421

    Internal

    Hello,
    I can't find some good tutorial on how to make internal hack.

    So if you know some please tell me.

    -- Of topic --

    Packet tuts would be nice too.
    I would walk five hundreds miles.


  2. #2
    sup h0wl's Avatar
    Join Date
    Oct 2014
    Gender
    male
    Location
    the arctic
    Posts
    624
    Reputation
    10
    Thanks
    1,945
    My Mood
    Sad
    i tried making a dll out of my cheat but you may have problems with your memory class, just make a new project, then choose Windows Application and click next then choose dll and empty project. i dont REALLY know but thats how to make the dll

  3. #3
    I'M GONNA HAVE TO EAT EVERY F--KING CHICKEN
    MPGH Member
    Chris's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    1,086
    Reputation
    29
    Thanks
    2,780
    My Mood
    Psychedelic
    An internal hack is synchronized with the games code usually through a hook of some kind.
    Most people create Dll's that are injected into the game.
    Once injected you are within the same memory space as the executing game code and you can directly read/write from/to the game.
    There is no need for an API like ReadProcessMemory/WriteProcessMemory.

    Where externally you might do something like this:
    Code:
    uintptr_t dwLocalPlayer = uintptr_t();
    ReadProcessMemory(hProcess, reinterpret_cast<LPCVOID>(clientDll + m_dwLocalPlayer), &dwLocalPlayer, sizeof(uintptr_t), NULL);
    Internally you could do this:
    Code:
    uintptr_t dwLocalPlayer = *(uintptr_t*)(clientDll + m_dwLocalPlayer);
    // Edit: might release a simple internal source so you see how one works
    Last edited by Chris; 08-12-2015 at 07:33 PM.
    Vouch Thread
    Thank or +rep me if I helped you ★


  4. #4
    jjjamer's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    115
    Reputation
    10
    Thanks
    421
    Thanks guys.
    I would walk five hundreds miles.


  5. #5
    Aethi's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Location
    Memeville
    Posts
    23
    Reputation
    10
    Thanks
    17
    My Mood
    Sleepy
    Quote Originally Posted by Chris View Post

    Internally you could do this:
    Code:
    uintptr_t dwLocalPlayer = *(uintptr_t*)(clientDll + m_dwLocalPlayer);
    i hope youre not serious

    edit: after reading other posts which happen to have you in them im assuming youre completely serious and also SERIOUSLY CLUELESS
    Last edited by Aethi; 08-12-2015 at 07:55 PM. Reason: yes

  6. #6
    I'M GONNA HAVE TO EAT EVERY F--KING CHICKEN
    MPGH Member
    Chris's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    1,086
    Reputation
    29
    Thanks
    2,780
    My Mood
    Psychedelic
    Quote Originally Posted by Aethi View Post
    i hope youre not serious

    edit: after reading other posts which happen to have you in them im assuming youre completely serious and also SERIOUSLY CLUELESS
    You think OP is capable of using an SDK? lmao
    Vouch Thread
    Thank or +rep me if I helped you ★


  7. #7
    Requiii's Avatar
    Join Date
    Mar 2014
    Gender
    male
    Location
    Germany
    Posts
    141
    Reputation
    10
    Thanks
    2,170
    My Mood
    Yeehaw
    Quote Originally Posted by Chris View Post

    You think OP is capable of using an SDK? lmao
    OP can't even do shit. Doesn't even matter if he uses an SDk or just simple internal shit or simple external shit. I doesn't matter at all.

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

    Chris (08-13-2015)

  9. #8
    Yemiez's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    Sweden
    Posts
    2,566
    Reputation
    731
    Thanks
    16,280
    My Mood
    Devilish
    If you just learned C++ you wouldn't need tutorials

  10. #9
    jjjamer's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    115
    Reputation
    10
    Thanks
    421
    Quote Originally Posted by Requiii View Post
    OP can't even do shit. Doesn't even matter if he uses an SDk or just simple internal shit or simple external shit. I doesn't matter at all.
    OP can't even do shit ? Please this community suppose to help each other not facking insult another just cause they ask for something.

    - - - Updated - - -

    Quote Originally Posted by Dolphin View Post
    If you just learned C++ you wouldn't need tutorials
    Find me a book that explains everything I need to make internal hack and you are my man.
    I would walk five hundreds miles.


  11. #10
    I'M GONNA HAVE TO EAT EVERY F--KING CHICKEN
    MPGH Member
    Chris's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    1,086
    Reputation
    29
    Thanks
    2,780
    My Mood
    Psychedelic
    Quote Originally Posted by jjjamer View Post
    OP can't even do shit ? Please this community suppose to help each other not facking insult another just cause they ask for something.

    - - - Updated - - -



    Find me a book that explains everything I need to make internal hack and you are my man.
    Books won't teach you that, you need to learn the basics so you can understand more "advanced" things.
    Vouch Thread
    Thank or +rep me if I helped you ★


  12. #11
    jjjamer's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    115
    Reputation
    10
    Thanks
    421
    Quote Originally Posted by Chris View Post

    Books won't teach you that, you need to learn the basics so you can understand more "advanced" things.
    Well I know basics of cpp.
    I would walk five hundreds miles.


  13. #12
    Orinion77's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    140
    Reputation
    10
    Thanks
    47
    My Mood
    Relaxed

  14. #13
    gtaplayer2's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Location
    Dancing with my kawaii friend
    Posts
    588
    Reputation
    22
    Thanks
    1,984
    Quote Originally Posted by Orinion77 View Post
    That's an okay tutoiral, except for that stressy motherfucking music. Like jeez, I almost pee myself when I code with this kind of music.

    Also please never put source code in a header file, keep source code to source files and defintions/classes to header files.

  15. #14
    jjjamer's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    115
    Reputation
    10
    Thanks
    421
    Quote Originally Posted by Orinion77 View Post
    Thanks //2short
    I would walk five hundreds miles.


  16. #15
    stumail's Avatar
    Join Date
    May 2014
    Gender
    male
    Posts
    22
    Reputation
    10
    Thanks
    0
    With just using the SDK he has what parts will get me VAC banned?

Page 1 of 2 12 LastLast

Similar Threads

  1. Warrock international Pre-Release
    By Saprk in forum WarRock - International Hacks
    Replies: 47
    Last Post: 07-21-2007, 02:32 AM
  2. [BYPASS] International Verison
    By quin123 in forum WarRock - International Hacks
    Replies: 34
    Last Post: 02-24-2007, 01:13 PM
  3. ??? WarRock International
    By poulet28 in forum WarRock - International Hacks
    Replies: 4
    Last Post: 08-06-2006, 09:55 AM
  4. Helbreath International Hack/GM Hack tut
    By xxaznrjaexx in forum Hack Requests
    Replies: 1
    Last Post: 01-27-2006, 02:42 AM
  5. Helbreath International
    By Mortifix in forum General Game Hacking
    Replies: 0
    Last Post: 01-09-2006, 08:24 PM