Results 1 to 12 of 12
  1. #1
    jajarem64's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Sarasota, FL - USA
    Posts
    318
    Reputation
    -13
    Thanks
    17
    My Mood
    Relaxed

    Lightbulb Possible ideas without having to use detours.

    As we all know Nexon patched some detours (Keep in mind most bases were constructed on these former patched detours.) on last patch, just thought I would get this kind of discussion public so we're more likely to get a solution faster (maybe), so this discussion should be stickied. This thread is open to any new ideas we can come up with. So post what you think. I myself was thinking maybe we don't have to do it the way we always did, maybe we could do something with modding the game files. Maybe we could mess with the game files to make the menu, but still make a hook that makes those modded files work in the way a menu hack would but the modded files would be the menu :/ who knows? Like I said this thread is open to any new ideas. Good luck with the brain storming.
    Last edited by jajarem64; 02-19-2011 at 09:00 PM.

  2. #2
    kathrik99's Avatar
    Join Date
    Nov 2010
    Gender
    female
    Posts
    169
    Reputation
    11
    Thanks
    10
    My Mood
    Paranoid
    hm, i think i have an idea, ill edit this and post my idea in a few mins
    Anyone can call them self a Coder,
    Anyone can make a programs,
    Anyone can get the codes for the program,
    Anyone can leech and steal,
    Only a Real nerd Knows what the Functions do and how it is to work and Don't "borrow" someones code.

    [IMG]https://i111.photobucke*****m/albums/n121/golmor/learntoprogram-1.png[/IMG]

    IF Helped Press Thanks Below

  3. #3
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    This.

    [YOUTUBE]Xgqt3tdm26s[/YOUTUBE]

    You can also make a menu via Visual Basic except it takes a awhile for Combat Arms to minimize.

  4. #4
    jajarem64's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Sarasota, FL - USA
    Posts
    318
    Reputation
    -13
    Thanks
    17
    My Mood
    Relaxed
    Yeah that's what I was going for just making it in VB, but I wasn't talking about making cross mods and gun mods.
    Last edited by jajarem64; 02-19-2011 at 09:23 PM.

  5. #5
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    This is stupid, no offense. Nexon/Hackshield will patch any publicly posted detours, like they did with Gordon's hook over the summer.

  6. #6
    jajarem64's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Sarasota, FL - USA
    Posts
    318
    Reputation
    -13
    Thanks
    17
    My Mood
    Relaxed
    Quote Originally Posted by CodeDemon View Post
    This is stupid, no offense. Nexon/Hackshield will patch any publicly posted detours, like they did with Gordon's hook over the summer.
    Yeah that is true but I didn't say they had to post a tut on how they're doing it, I just thought it would be a good thread for new ideas over time, because there are so many more things out there that can revolutionize hacking/coding that hasn't been thought of yet so that's why I said this thread should be open to any new ideas.

  7. #7
    supercarz1991's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,285
    Reputation
    435
    Thanks
    3,715
    My Mood
    Doh
    Quote Originally Posted by jajarem64 View Post
    Yeah that's what I was going for just making it in VB, but I wasn't talking about making cross mods and gun mods.
    lol i do a ton of VB, but i never knew we could make a menu that way or i probably woulda started making menu hacks awhile ago

    commando: You're probably the best non-coder coder I know LOL


  8. #8
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    Quote Originally Posted by supercarz1991 View Post
    lol i do a ton of VB, but i never knew we could make a menu that way or i probably woulda started making menu hacks awhile ago
    It wouldn't work out efficiently but you could communicate with the DLL hack and VB menu via text files. Menu sets line 1 [aimbot] to 0 which can signal to turn off a hack and 1 can turn on a hack, etc.

  9. #9
    jajarem64's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Sarasota, FL - USA
    Posts
    318
    Reputation
    -13
    Thanks
    17
    My Mood
    Relaxed
    Yeah it's the way some VIP I know which we can't say on this site works. :P It's a good way to do it if you know what you're doing, and if you do you can make it efficient :P

  10. #10
    supercarz1991's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,285
    Reputation
    435
    Thanks
    3,715
    My Mood
    Doh
    Quote Originally Posted by jajarem64 View Post
    Yeah it's the way some VIP I know which we can't say on this site works. :P It's a good way to do it if you know what you're doing, and if you do you can make it efficient :P
    Damn some one should show me how, cuz im good at making gui's

  11. #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
    Detour made in ASM..

    Hmm..........(this will sound stupid and have nothing to do with detours)
    Pointer to the Direct3D Device.... While using the device... you will be using the device in the function/
    Code:
    LPDIRECT3DDEVICE9 *g_lpD3DDevice=NULL;
    Reset(Pdevice, ddpdr)
    {
         g_lpD3DDevice = &Pdevice;
         //All you stuff here
    }
    
    LPDIRECT3DDEVICE9 GetDevice()
    {
          return (*g_lpD3DDevice);
    }
    Last edited by topblast; 02-20-2011 at 05:55 AM.
    I just like programming, that is all.

    Current Stuff:

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

  12. #12
    jajarem64's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Sarasota, FL - USA
    Posts
    318
    Reputation
    -13
    Thanks
    17
    My Mood
    Relaxed
    Offtopic - Wow, topblast your fuckin sig is hilarious !