Search results

  1. TheGeneral

    Arcturus Emulator 2.0 - Project Sirius C# | Distributed, Multi Revision, Powerful API + MOAR

    Why does the glass have to be either full or empty, according to you?
  2. TheGeneral

    Arcturus Emulator 2.0 - Project Sirius C# | Distributed, Multi Revision, Powerful API + MOAR

    The amazing programmers are running their own hotels and not contributing to the community.
  3. TheGeneral

    Arcturus Emulator 2.0 - Project Sirius C# | Distributed, Multi Revision, Powerful API + MOAR

    Stop thinking there are amazing programmers in this community. There aren't. Its all a pain in the ass to manage and people get upset when you decline their pull requests because you'd have to fix a dozen other issues before it being mergeable is not something I want to deal with. From this...
  4. TheGeneral

    Arcturus Emulator 2.0 - Project Sirius C# | Distributed, Multi Revision, Powerful API + MOAR

    You are wrong / misinformed. Please stop making assumptions. Arcturus was open source for a couple years up to a point where there were no contributions happening anymore and people started to use it as a base for renames, which was clearly not allowed as stated on the repository back then...
  5. TheGeneral

    Arcturus Emulator 2.0 - Project Sirius C# | Distributed, Multi Revision, Powerful API + MOAR

    Any particular reason why that would be disappointing?
  6. TheGeneral

    COVID-19 Booster Jab

    I got my 12th booster. People pay for you to get the booster. $5 is $5.
  7. TheGeneral

    Best EMU 2021

    You do realize that we are a community dedicated to emulating a game? Yes that includes copying client files from Habbo because yes we want to copy that game. Just because we are copying that game doesnt make it right to steal from other people trying to contribute to this community. Also I dont...
  8. TheGeneral

    Best EMU 2021

    Thats incorrect. Morningcrap is based on decompiled & stolen sources. Arcturus is the original, by me. Morningcrap is a knockoff by people that don't want to put in the effort to make an emulator from scratch. But hey they don't tell you we stole this without permission...
  9. TheGeneral

    Best EMU 2021

    Original Arcturus, not the crappy renames & knockoffs where the pathfinder had to be reimplemented 3 times and is still buggy.
  10. TheGeneral

    Thank you PeakRP

    Never played RPs. Didnt know they were this popular. Should've made an RP emulator.
  11. TheGeneral

    How to add custom exchange [Noob Friendly]

    For Arcturus its either DF_<value> for diamonds or for points types PF_<value>_<type> (eg DF_200 for 200 diamonds, PF_1000_0 for 1000 of points type 0 (0 = duckets)
  12. TheGeneral

    Starlight [C#/.NET Core/Dapper]

    I had a look at his repo. Looks promising. Better than some other stuff I recently saw. He'll be fine. :)
  13. TheGeneral

    Starlight [C#/.NET Core/Dapper]

    Great, then make it a struct. Actually, no. The data has already been received (At least I really hope). As the message has a prefixed length + header thus I assume that IClientMessage contains all the bytestream bytes already. Implementation is for @Damien to decide. The Invoke() method is...
  14. TheGeneral

    Starlight [C#/.NET Core/Dapper]

    Going generic in your interface doesnt mean you are required to have a parameterless constructor. Just do something like this: typeof(MessageType).GetConstructor(new[] { typeof(IClientMessage)}).Invoke(new[]{message}) And wherever you register your messages you can check if that type has a...
  15. TheGeneral

    Starlight [C#/.NET Core/Dapper]

    Technically there is no difference. With a scoped using you've got a more control over when the object is disposed. With an non scoped using statement its at the end of the method. If thats supposed to be the lifetime of your disosable object then go with the new style. Non scoped using...
  16. TheGeneral

    Arcturus Emulator 2.0 - Project Sirius C# | Distributed, Multi Revision, Powerful API + MOAR

    I won't be making an RP. Maybe someone else will use the API to create RP plugins but I have no intention to make one.
  17. TheGeneral

    Starlight [C#/.NET Core/Dapper]

    If you want me to give more feedback, feel free to hit me up. Would be good to have more quality emulators around.
  18. TheGeneral

    Starlight [C#/.NET Core/Dapper]

    Its best practice to use named arguments in logging. Reason for this is so that string interpolation isn't evaluated at runtime when logging is disabled, ignored or discarded. Also using named arguments you could use other analytics tools for further post processing.
  19. TheGeneral

    [RELEASE] Arcturus 1.16.0 - Open Source!

    This is actually not open source but based on decompiled & stolen sources.
Top