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 SheenBR

  1. SheenBR

    Reversing an old Unity game (Skydome)

    So has anyone ever heard of a game called Skydome? More info below. It's a MOBA combined with tower defense. Steam game app: 708550 You must be registered for see element. You must be registered for see element. The game is closed for several years and no sign of getting back. Since the game...
  2. SheenBR

    FortressPT/RegnumPT Source Code

    I don't understand at all how coding in a dll would protect their code or even protect against hackers. It does not make any sense. I can only understand how massive ammounts of unecessary works it renders though.
  3. SheenBR

    FortressPT/RegnumPT Source Code

    Can you explain to me what's behind the decision to use a dll file? I see a lot of stuff is rewritten but reading dll.cpp I found a lot of hooks where you change the game original code to point to your DLL code. How is that easier or better than working with the complete leaked source code? You...
  4. SheenBR

    Priston History, what is your?

    I don't know exactly when I started, probably around 2007 or so. But one of my greatest memories was when some people started adding lv 150 to their game. At that time, level max was 120 only. It was funny, if you had lv 150 at that time, sir you were a GOD ! Not to mention the famous Phoenix...
  5. SheenBR

    I need database access in Rust

    Given the following rust code, modify it using diesel asynchronously to create a connection to a postgres database. When configuring in Axum, use the with_state method so that the hello_axum post method api can perform a simple select query. You may create an example table to illustrate the...
  6. SheenBR

    Force Orb not counting time in cities

    And what to do with it? How to account for the time he was in the city?
  7. SheenBR

    I still need sockets

    Seems good but rewrite the code using WSAAsyncSelect and related functions. Repetitive code should be turned into functions. Make sure to use OOP. Provide entire code instead of showing steps.
  8. SheenBR

    I still need sockets

    Please create C++ code for an async socket server using winsock2. It must have encryption and use diffie-hellman algorithm to exchange keys. After the connection and encryption is established between client & server send a packet with 0x5000 opcode. All packets have this base structure: struct...
  9. SheenBR

    C++ Async Socket Server with Encryption Using Winsock2

    Nice. Now use OOP and create a window and use the WndProc to receive socket messages, to make it truly async. Also, all packets received should be in a switch case in a "RecvPacket" function. Including the 0x5000 opcode example and any other packet eventually received related to encryption.
  10. SheenBR

    C++ Async Socket Server with Encryption Using Winsock2

    Can you do it now ?
  11. SheenBR

    C++ Async Socket Server with Encryption Using Winsock2

    Nice. Now use OOP and create a window and use the WndProc to receive socket messages, to make it truly async. Also, all packets received should be in a switch case in a "RecvPacket" function. Including the 0x5000 opcode example and any other packet eventually received related to encryption.
  12. SheenBR

    C++ Async Socket Server with Encryption Using Winsock2

    Please create C++ code for an async socket server using winsock2. It must have encryption and use diffie-hellman algorithm to exchange keys. After the connection and encryption is established between client & server, client will send to server a packet with this structure: struct Pckg { int...
  13. SheenBR

    ZeroPT Source Code

    Why Go? And why a non relational database? :unsure: To me, it would be better to port to linux C and use docker container to go live. Using Windows Server Desktop is a total waste of resources.
  14. SheenBR

    Force Orb not counting time in cities

    Using the source I can block the game timer here: CheckContinueSkill() You must be registered for see element. But after reloading, time in server has changed. When the player login into the server, this line restores the force orb that is currenly being used by the character...
  15. SheenBR

    Model and Texture Viewing + PT File Naming Info - Quick Start

    Great tuto Sunny! This is one the aspects of pt development that I know nothing about. Any chance that you can make another tuto of how to use PT models in unity?
Back
Top