Page 1 of 1

My simple isometric MMORPG base project

Posted: Sun Jul 24, 2022 12:54 pm
by harha
Here's a project that I quit working on and decided to open source. It was meant to become some sort of simple MMORPG with isometric graphics. I decided to share it because even though it's still quite simple, it has a working networking protocol and could act as a base to create a proper game of some sorts. It can also be used for learning the basics of UDP client-server networking.

https://gitlab.com/harha_/simple-mmorpg

Image
Image

Re: My simple isometric MMORPG base project

Posted: Mon Jul 25, 2022 2:30 am
by togFox
It's hard to get working examples of networking so I might check that out :)

Re: My simple isometric MMORPG base project

Posted: Sun Aug 07, 2022 8:44 am
by harha
togFox wrote: Mon Jul 25, 2022 2:30 am It's hard to get working examples of networking so I might check that out :)
Well it's nothing too fancy, just bare-bones simple UDP protocol that kinda works for the gameplay requirements of the game I was going to make. I hope it can be helpful still, but it doesn't have encryption or any safety measures besides a simple token that's generated server-side and is used to authenticate the client and link its connection to a specific set of objects on the server to authorize packets.

However adding encryption, etc, on top of what's already there should be possible.