Jump to content

NoFr1ends

Honorable Member
  • Posts

    341
  • Joined

  • Last visited

  • Days Won

    24
  • Feedback

    0%

Everything posted by NoFr1ends

  1. You know there was never a time where only Shogun was an admin right?
  2. Okay that hurt... I mean it was good when you was banned...
  3. Sounds good Great finally I'm able to write in German
  4. #banasikoo - scammed me too Promised me to not ruin m2dev - but makes @VegaS a moderator
  5. The first regular update blog post is now available. https://quantum-core.io/changelog/updates/2020/05/06/dev-update-1.html
  6. We have relicensed the core to Mozilla Public License 2.0 https://tldrlegal.com/license/mozilla-public-license-2.0-(mpl-2) The reason why we have chosen MPL are multiple: - You have to redistribute the source code if you modified QC and redistribute the binary file We do not want anyone to make money with QC itself (feel free to sell plugins tho) If you modify QC and do not share the binary you don't have to share the source. - GPLv3 didn't really allowed plugins (they would have been GPLv3 too) - MPL allows you write plugins and sell these commercial
  7. We are working on relicensing QuantumCore. To keep track of the current issues and progress follow: https://gitlab.com/quantum-core/core/-/issues/31
  8. Did I ever said it will be legal to host a private server using this? No, I'm not a lawyer But I know that writing server emulators is legal, and making them available to the public too. The main goal of this project was and still is for me to learn more about how to write a stable and more or less solid game server, with the limitations we have. Like not being able to replace the network protocol. So I could also kept this project for me, but I wanted to make it available to all, so everybody can profit from it. No matter how.
  9. The critical part are multiple things: - Providing the client - Making money without paying taxes - Using trademarks in any violating way Working on and making this source is legal (at least based on German law), as you can also see on many other server emulator projects. For example: https://github.com/TrinityCore/TrinityCore https://github.com/mangoszero/server
  10. Thanks for pointing that out, we have updated the list of dependencies.
  11. The repository and part of the documentation is now available to the public. Repository: https://gitlab.com/quantum-core/core Documentation: https://docs.quantum-core.io/index.html
  12. Currently the reason is that some major setup part is not documented right now. I’ll create these documentation tonight and than I’ll update the initial post with the repository.
  13. This is definitely a thing we have to do, it should be pretty easy to write a short client based on the core lib. As we have an own file format to describe how packets look like and have a generator to generate code out of it. Maybe I, or someone else, will find the time to write a small program to simulate players.
  14. Currently there is a similar idea to split maps by cores, but for ch99 we will add the support for automatically spawn processes which will very likely utilize docker. For making the queries in maps more performant we are currently using a QuadTree implementation to quickly search for entities in a radius etc. It would be possible to implement automatic instancing of busy areas too. All network related handling are handled by boost asio right now.
  15. Welcome to QuantumCore, most people always told you me you are crazy, that's a waste of time don't do that. But I don't care and still started this project, mostly as a learning process. So what is QuantumCore you ask? QuantumCore is basically a server emulator for Metin2. In comparison to what we currently mostly use this doesn't use any source code by Ymir/Webzen and is a full reimplementation of the 40k server. This project is still in work and far from being completed. So why do you already create a thread for this? First of all we need feedback from you guys of what the features are and what we could improve even more. In addition to a normal rewrite of the core this project is using more modern technology. The code base is based on C++17 and will include features of C++20 as soon as it's officially released. Also we only test 64bit builds, no more 32bit builds. In addition to this we are automated building the core against the current LLVM toolchain and automatically creating Docker images. We have started to implement Unit Testing for some core features, and we will extend this to more code we write. Also we are working on embedding AngelScript (and maybe even more languages in the future) to not only write quests but also to extend the core. The main goal is that you can create most of the new systems in AngelScript with a resonable performance instead of modifying the core source code. For example if you want to create a new command you could write the following plugin: void main() { command::RegisterCommand("test", TestCommand); } void TestCommand(game::Player@ player, string[] arguments) { if(arguments.length() < 2) { player.SendChatMessage(1, "/test [name]"); return; } player.SendChatMessage(1, "Hello from " + player.name + "(" + player.level + ") to " + arguments[1]); } We also using redis for caching fast changing fields, like player position, items etc. The source code of this project will be licensed under the GPLv3 license. So you are free to modify the source code and use it for your project. We would be also very happy if you contribute back your improvements to the core. So what is the main goal? - Providing a compatible game server to the clean 40k client - Writing a modern, stable and scalable game server - Keep the core extensible Main repository: https://gitlab.com/quantum-core/core Documentation: https://docs.quantum-core.io/index.html With best regards, QuantumCore Team @arves100, @DevChuckNorris
  16. What I like the most about this theme is the text editor. That's a piece of art!
  17. Thank you for maintaining the board from now on. For me it's time to say goodbye, thank you to everyone who I was able to meet over the past years. Maybe our paths will cross again.
  18. Dear metin2.dev community, after nearly 6 years of metin2.dev and more than 4 years being the main administrator and owner of metin2.dev it’s time to pass this project to a new person. I would like to thank all current and past members of the team, and all members of metin2.dev who made this place to what it is today. But after all these years it’s time for me to move on and leave the metin2 underground section. Because of that we are looking for a new administration to take metin2.dev. We have multiple requirements for all candidates: You are well known in the scene You are a trusted person You must have committed a great value to the metin2 underground scene. If you do not meet all the requirements you can also make me an offer for metin2.dev. Included are: The board The discord server The sponsored webserver from Hyperfilter All registered domains (metin2.dev and metin2dev.org) You have to pay a renew fee for the domains to transfer these. The deadline for this is the 31th December 2019. If we didn’t find a new administration until then we will take metin2.dev offline. Best regards, metin2.dev - Administration
  19. Hello community, due to high amount of account registrations of banned and spam users we have activated manual account activation. So the account registration can need currently up to 2 days. Thanks for your understanding. Best regards, metin2dev Team
  20. ... #closed btw: you should really work on your code quality.
  21. Fantastic. I like the style. And thank you again for your inspiration
  22. Could you please stick with the topic? Thanks. Best regards
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.