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 stealthguard

  1. S

    Kal C++ Functions

    you cant tell anything from that. you need to look at the code to see how its used, or debug and check the value, or do both.
  2. S

    (HELP) Help me find Packet Structure ?

    struct NetworkPacket{ char _padding[0x94]; size_t len; //len for something size_t len; char* startBuffer; char* endBuffer; }; Your function doesn't show how the actual packet is created, or processed. v3 + 152 or 148 could be the len for some sort of data in the buffer
  3. S

    Muemu antihack

    Well if you dont have the technical knowledge, of course you would not be able to understand it. You should get someone who has knowledge about this to do it for you, otherwise its going to be quite a rough attempt. There might be some tools out there that can generate file signatures but not...
  4. S

    Muemu antihack

    Its called a signature. And from what i see, that isn't a good way of detecting signatures.
  5. S

    (HELP) Help me find Packet Structure ?

    No worries - it still stands. Just post screenshots like i said, higher chances of people helping :)
  6. S

    (HELP) Help me find Packet Structure ?

    If you post some packet samples or screenshot of functions, someone might be able to help.. as for analyzing for you the file or game, thats unlikely.
  7. S

    New anti-cheat -StealthGuard

    New anticheat - StealthGuard Extremely sophisticated anti-cheat that comes along with a self-made packer. (source written from scratch) As good as some commercial packers, though i will admit not on par with something like themida. Some features of the packer (output can be seen in images at...
  8. S

    my homework someone please ill paypal $10

    Algorithm : 1. Ask user for input for initialBalance, depositAmt, withdrawalAmt 2. Process the input, to calculate the finalBalance 3. Output finalBalance you should always start with the algorithm of the program. once you have the algorithm, you should be able to work the others out. i dont...
  9. S

    ez2on find out how to start the game

    yeah if its your own skills then it might be a rough one. anyway since you figured our where the messagebox call is , then it should be very near to that. look for conditional jumps. if a condition is true/false -> messagebox is called. i dont really have the time to look at it for you...
  10. S

    ez2on find out how to start the game

    if you are able to get the original client to run, then you can try to inject a dll and call GetCommandLineA/W to see what the accepted commandline is . but since you cant, you will need to figure out based on how the client determine if the command line is valid or not. so in this case, you...
  11. S

    ez2on find out how to start the game

    It should be in their initialization routine. Find the WinMain and theres a parameter lpCmdLine or see if they call GetCommandLineA/W. i think as long as you start the game inside something like ollydbg and you break on program's entry point, you should be able to get it.
  12. S

    Hello

    yes. im supposing you want to host your own server instead of paying for an existing one? so what is your problem ? you need to start by having a public static ip address . this might mean you need to pay your isp(internet service provider) $$
  13. S

    cheat engine hacks problem

    you need to install an anticheat. im not sure about this game's private server developments, but if you have the source code then it makes setting up the anticheat much easier. otherwise if its an existing client that you use, might be slightly harder because its already packed, but still doable.
  14. S

    cheat engine hacks problem

    it crashed when you were trying to?
  15. S

    Javascript Tutor

    Do you know the language javascript first ? if not you should start by learning the client side javascript before moving on to a server side one like node.js. If you try to force your way through you wont understand anything. Start with client side, then learn server & client communication(in...
Back
Top