Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Recent content by Auri

  1. A

    Complete copy of Aeria Gunz client from 2013

    Hello. Could you reupload this, so I can check it? I think the link is dead. There is a reason why I am after the original aeria client though. If that proves to be the exact same client, then it is worth downloading.
  2. A

    nProtect Game"Guard"

    Upload the current game guard revision you are trying to bypass. I doubt it's game guard checking if functions are being called, I think there just might be a return address check inside the functions themselves. You won't be able to edit these because game guard performs a hash check on the...
  3. A

    Complete copy of Aeria Gunz client from 2013

    Hello, Does anyone have the Aeria Gunz client from May of 2013? Around the time it shut down. I believe the final gunz revision was GUNZ 1.0.0.290 compiled on October 13th. I'm not positive if it was updated again until the day it shut down. If someone could upload the complete files for me...
  4. A

    [Release] GAMEGUARD ANTI CHEAT SDK

    This couldn't possibly be an SDK because there aren't any static lib files that export functions. The only exported functions in the dll are: ggauth32_7!GlobalFunction ggauth32_7!ObjectFunction ggauth32_7!GetErrorItems On top of that, if you were to get the address of each function in the dll...
  5. A

    How to debug a dll created using VC#

    You can inject the dll into a process, then debug the process. Find the .text section of the dll on the memory map.
  6. A

    Acer ICONIA W511 and Visual Studio 2012 (C++)

    I didn't even know phones had compilers installed along with the SDK. As for laptops and visual studio, why limit your self? Yes you can use Visual Studio, but you can also use a simple text editor and compile through the command line. As long as you can add the include directories manually as...
  7. A

    C/ char,strcmp,strlen,shellexecute examples

    ShellExecute, horrible idea. Too resourceful and too limited. Use CreateProcess instead, allowing you to place command line arguments. Also, this is wrong. scanf("%s",&username); printf("You pass:\n"); scanf("%s",&password); You don't need the reference of username, and password since both...
Back
Top