Jump to content
Returning Members: Password Reset Required ×

Seeking Guidance on Building an Emulator for Conquer Online from Scratch


Recommended Posts

Posted

Hello everyone,

I am embarking on an exciting journey to build my own emulator for Conquer Online and would love to hear from anyone with experience or knowledge in this area. Specifically, I am looking for a clear outline of the key steps involved in creating an emulator from scratch. Any guidance, tips, or resources you could share would be greatly appreciated.

Thank you in advance for your assistance!

Posted

Generally, there's not much to it - but it includes some more advanced programming topics. So you should probably study up a bit on threading, asynchronous patterns, and network sockets. But once you're comfortable, you'd just start with your socket system, then add cryptography to decrypt requests and encrypt responses, then add a database for persistence, and then you just handle one message type at time as the client requests it. It's honestly a bit of a pain to set up, but you can absolutely do it.

I'm working on a new wiki right now, but I'd suggest looking at other sources around the patch you want to target. If you want a reference for how I built Comet (a skeleton project that just implements login for a bunch of patches), then you can check that out here: https://gitlab.com/spirited/comet. My full history of commits should be there on the main branch. Best of luck to you.

Posted

Generally, there's not much to it - but it includes some more advanced programming topics. So you should probably study up a bit on threading, asynchronous patterns, and network sockets. But once you're comfortable, you'd just start with your socket system, then add cryptography to decrypt requests and encrypt responses, then add a database for persistence, and then you just handle one message type at time as the client requests it. It's honestly a bit of a pain to set up, but you can absolutely do it.

I'm working on a new wiki right now, but I'd suggest looking at other sources around the patch you want to target. If you want a reference for how I built Comet (a skeleton project that just implements login for a bunch of patches), then you can check that out here: https://gitlab.com/spirited/comet. My full history of commits should be there on the main branch. Best of luck to you.

thank U so much <3

another q , if i want to target the latest Ver , what do i need to focus on , can't find any reference at all

Posted

thank U so much <3

another q , if i want to target the latest Ver , what do i need to focus on , can't find any reference at all

That's unfortunately much harder to do. It requires that you either guess at what's changed (if they're minor offset changes to messages), or you reverse engineer the client by reading its disassembly. You may be able to find a bad project that does it well enough to get by on a higher patch, but latest is always going to be a challenge.

Posted

thank U so much <3

another q , if i want to target the latest Ver , what do i need to focus on , can't find any reference at all

That's unfortunately much harder to do. It requires that you either guess at what's changed (if they're minor offset changes to messages), or you reverse engineer the client by reading its disassembly. You may be able to find a bad project that does it well enough to get by on a higher patch, but latest is always going to be a challenge.

To add to this, use the mac client.

Posted
Quote
Quote
Quote

thank U so much ❤️

another q , if i want to target the latest Ver , what do i need to focus on , can't find any reference at all

That's unfortunately much harder to do. It requires that you either guess at what's changed (if they're minor offset changes to messages), or you reverse engineer the client by reading its disassembly. You may be able to find a bad project that does it well enough to get by on a higher patch, but latest is always going to be a challenge.

To add to this, use the mac client.

Oh yeah, thanks for the reminder - there's a tutorial on that here as well:

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...