Recent content by UO-Orion

  1. UO-Orion

    Treasures of Fey Wrath (Spring 2022)

    I do! I just finished them up in the last day or two actually. I've been writing up all the Treasures of ... events and will eventually publish them here on ServUO or submit them to the SUO github repo.
  2. UO-Orion

    AWS S3 Backup Script

    Figured I'd share a little something I whipped up to push backups to Amazon's S3 storage service: # Set your AWS credentials (replace 'YOUR_ACCESS_KEY_ID' and 'YOUR_SECRET_ACCESS_KEY' with your actual credentials) $awsAccessKeyId = 'YOUR_ACCESS_KEY_ID' $awsSecretAccessKey =...
  3. UO-Orion

    Looking for a cheep host

    1. How many players are you trying to handle? 2. What do you consider "cheap"?
  4. UO-Orion

    What is everyone Hosting ServUO on?

    Just upgraded to a new server for 100+ players Old Server (Hostwinds): CPU: 4 vCPU of a Xeon E5-2670 v2 RAM: 8GB DDR3 Storage: 150GB SSD Network: 1Gbps (8TB bandwidth) OS: Windows Server 2019 Standard Cost: ~$55/mo in Dallas, TX New Server (hostEONS): CPU: 8 vCPU of a Ryzen 7950X RAM: 32GB...
  5. UO-Orion

    Peerless Boss Travesty

    On line 242, you have: AddItem(Loot.Construct(item.GetType())); You may need to replace that with: AddItem(new ClonedItem(item)); It looks like your DeleteItems() function is only looking for ClonedItems to delete and I don't think your Loot.Construct(...) call is setting them as a...
  6. UO-Orion

    Organized Runebooks and Runic Atlases

    Sorry! I was using a VitaNex Swap<T> function without paying attention! I'll post up replacement snippets for those lines in a new version! else if (buttonID >= 800) //Moving rune down { int curIndex = buttonID % 800; int newIndex =...
  7. UO-Orion

    Organized Runebooks and Runic Atlases

    UOMaddog submitted a new resource: Organized Runebooks and Runic Atlases - Can now re-organize runes with your runebook or runic atlas Read more about this resource...
  8. UO-Orion

    Organized Runebooks and Runic Atlases 1.0

    Replaces your existing RunebookGump and RunicAtlas files to allow players to re-organize the runes without having to drop runes out of the books. Also, for runic atlases, removes the auto-opening of the gump when a rune is dropped on it to allow you to quickly drop multiple runes on them...
  9. UO-Orion

    MrRiots - Wintertide Festival Event 2023

    In and working already :) (with minor back-porting tweaks) Can't wait to try it all out!
  10. UO-Orion

    compile!! i say!!

    I run VSCode and then the Compile - Release.bat (you can do it from within the terminal in VScode even, but then if you close code, it closes the terminal too)
  11. UO-Orion

    Requiring NDA for ServUO code?

    Ah sorry, I misunderstood the question! For GPLv3, my best understanding is that you'd have a contract + NDA. The nature of having the contract then allows you (or really REQUIRES you) to then have an NDA (or an NDA clause as part of that contract). But you couldn't have "no contract" and just...
  12. UO-Orion

    Requiring NDA for ServUO code?

    No, that is not able to be done: The key here is that technically they're incompatible with each other because GPLv3 is more restrictive than GPLv2. That being said, the original owner (ServUO) could re-release it under GPLv3, but as it stands now, ServUO and any modifications made to it fall...
  13. UO-Orion

    Requiring NDA for ServUO code?

    I agree 100%. I'm personally a huge fan of "copyleft" licenses as they're often referred to. This requires all modifications made for software that is used by the public to also be available to the public which fosters a great community of sharing!
  14. UO-Orion

    Requiring NDA for ServUO code?

    @dagid4 I think you may have misunderstood the context of what I was saying there. I'm not saying complete control of a whole person, what I'm saying is "control" as in a binding contract, whether that be an employment contract or a service contract (non-employee contractor). That contract would...
  15. UO-Orion

    Requiring NDA for ServUO code?

    Just to touch on a few points here... "Does the GPL allow me to develop a modified version under an NDA?" The point of clarification here is that this assumes that you're taking normal GPL code (say, a pull from the public ServUO repo) and developing a set a modifications for a client. The...
Back