Results 1 to 15 of 116

Hybrid View

  1. #1
    gerherhtherherdhher's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    171
    Reputation
    26
    Thanks
    900
    My Mood
    Sad
    Quote Originally Posted by toxxicomanie View Post
    @__Xen0

    what should this code do ?
    Code:
    *reinterpret_cast<int*>(0x0085CCC0) = 1;
    you mean resetting stats enables you to find lobbys after vacban or host after vacban? sorry im confused about to who you are responding
    That code will set your nat type to open but as mentioned earlier, I doubt that it has any actual effect. As far as I am concerned, not finding lobbies doesn't have anything to do with being VAC banned. That's the stats issue. The only limitation of the VAC bypass is that you can't "create" a new, valid lobby (id?), unless taking one over from the host via host migration.

    Quote Originally Posted by vladimirkm View Post
    it would be great to have some simple undetcted wallhack in mw2
    so if anyone can give me this i would be greatful
    In Progress, will be done this weekend.

    Quote Originally Posted by XxMCxNUGGETxX View Post
    If you have the time to make a new aimbot/walls/esp that would be dope all the ones ive been using are like 2 years old and kinda poo poo and i haven't seen a good one in a hot min. also im vac so i dont matter if detectable or nah. thanks in advance my dude your doing gods work
    Same, will be done this weekend.

    Quote Originally Posted by DevinFSP View Post
    Hey man, I think what you are doing here is great! I just have one possible cheat to ask for.

    I recently got VAC banned, and I have been using a VAC-unban hack but it doesn't work that well. It's supposed to put me back into the pool of regular players but it's still taking forever (5's of minutes most of the time) to find a lobby. Are you able to make a new hack for this (if it is possible)?

    Also, as a side note (if you're up for it), how would you recommend getting into modding MW2 and stuff. I just took a university course for C programming, and understand that we must find offsets for certain variables in the game and such to switch certain aspects on/off, but what is needed to delve deeper into the hacking-MW2-world?
    Hey DevinFSP,

    my VAC bypass is only slightly different and it boils down to the same thing as what the other guy did. But I can make a dll for you (and others) that can be injected alongside the VAC bypass and it should take care of that stat issue I was talking about earlier. Before adding this to my hack I couldn't find a single lobby, after that I could always find something between 10 and 15.

    A C-Background is perfect for getting into making hacks. Often people ask me for help with a Java background and they often have these weird ideas about how the stack works, how strings are stored and how structs/classes look like in memory. When I started learning C++ I was always interested in how the language itself works, I couldn't just accept how these "magical things" like for example polymorphism work. I disassembled my own programs and read a lot about how the language works internally. This helped me a lot when I started reversing call of duty games. Another thing that makes reversing call of duty are the leaked pdb's of other call of duties that you can find online. All call of duties are very similar so you can sort of cross reference the pdb of an older call of duty with MW2. What I always recommend to people who have some C/C++ background and who want to get started on making hacks for cod is to find dvar addresses and reverse engineer the dvar structure. That's pretty straight forward and can be done in a hex editor. All you need is a good understanding of structs and an idea of what a dvar is. You can look at the quake 3 sdk to get an idea of what a dvar looks like (or in the case of quake cvar_t).

    -- Xen0

    PS: Didn't test the dll, but it should work and it is undetected. If anyone using it gets banned it's most likely because of the injector. Let me know if it helps you at all. Also all my dll's will be made in VS 2017, so make sure to have the corresponding C++redistributable.

    <b>Downloadable Files</b> Downloadable Files
    Last edited by gerherhtherherdhher; 05-19-2017 at 08:26 PM.

  2. The Following 5 Users Say Thank You to gerherhtherherdhher For This Useful Post:

    bobdaboist (05-20-2017),CrypticMods (05-19-2017),DevinFSP (05-20-2017),qwermtrk (09-30-2017),Sarmae (09-24-2017)

  3. #2
    DevinFSP's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by __Xen0 View Post
    Hey DevinFSP,

    my VAC bypass is only slightly different and it boils down to the same thing as what the other guy did. But I can make a dll for you (and others) that can be injected alongside the VAC bypass and it should take care of that stat issue I was talking about earlier. Before adding this to my hack I couldn't find a single lobby, after that I could always find something between 10 and 15.

    A C-Background is perfect for getting into making hacks. Often people ask me for help with a Java background and they often have these weird ideas about how the stack works, how strings are stored and how structs/classes look like in memory. When I started learning C++ I was always interested in how the language itself works, I couldn't just accept how these "magical things" like for example polymorphism work. I disassembled my own programs and read a lot about how the language works internally. This helped me a lot when I started reversing call of duty games. Another thing that makes reversing call of duty are the leaked pdb's of other call of duties that you can find online. All call of duties are very similar so you can sort of cross reference the pdb of an older call of duty with MW2. What I always recommend to people who have some C/C++ background and who want to get started on making hacks for cod is to find dvar addresses and reverse engineer the dvar structure. That's pretty straight forward and can be done in a hex editor. All you need is a good understanding of structs and an idea of what a dvar is. You can look at the quake 3 sdk to get an idea of what a dvar looks like (or in the case of quake cvar_t).

    -- Xen0

    PS: Didn't test the dll, but it should work and it is undetected. If anyone using it gets banned it's most likely because of the injector. Let me know if it helps you at all. Also all my dll's will be made in VS 2017, so make sure to have the corresponding C++redistributable.

    EDIT: By the way! The link you provided in your reply to me sent me to an invalid attachment error by mpgh... :/

    Thank you so much for the quick reply man! I was also one of those kids with a Java background looking to hack games, but had no idea what structs/pointers/offsets truly meant. Now, I have a nice solid background in the mechanics behind everything and I look forward to starting. Thank you so much also for the DLL, I'll give it a try right now!
    Last edited by DevinFSP; 05-20-2017 at 10:37 AM.

  4. #3
    gerherhtherherdhher's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    171
    Reputation
    26
    Thanks
    900
    My Mood
    Sad
    Quote Originally Posted by DevinFSP View Post
    EDIT: By the way! The link you provided in your reply to me sent me to an invalid attachment error by mpgh... :/

    Thank you so much for the quick reply man! I was also one of those kids with a Java background looking to hack games, but had no idea what structs/pointers/offsets truly meant. Now, I have a nice solid background in the mechanics behind everything and I look forward to starting. Thank you so much also for the DLL, I'll give it a try right now!
    It's not invalid, it just hasn't been approved yet. A moderator has to approve it before people can download it!

Similar Threads

  1. Request Ghosts Hacks/Trainers/Addresses
    By Lovroman in forum Call of Duty 10 - Ghosts Hacks & Cheats
    Replies: 226
    Last Post: 06-14-2023, 07:29 AM
  2. [Request] Requesting Hack Coding Services
    By PhantoPlasm in forum C++/C Programming
    Replies: 2
    Last Post: 04-16-2012, 03:20 AM
  3. (request) ava hack souce code
    By shadow310 in forum Alliance of Valiant Arms (AVA) Hacks & Cheats
    Replies: 6
    Last Post: 06-08-2010, 01:14 AM
  4. [Request] C++ Hack Code
    By HardCoreSmasher in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 1
    Last Post: 04-03-2010, 11:18 PM
  5. requesting any warrock hack codes c++
    By samysam1 in forum Programming Tutorial Requests
    Replies: 9
    Last Post: 04-20-2008, 01:04 AM