Search results

  1. Voxpire

    I need the original servuo 57

    https://github.com/ServUO/ServUO/tags
  2. Voxpire

    Server holding on to a disconnected client?

    NetStates will time-out after a period of inactivity, usually 90 seconds after the last packet was transported. TCP sockets don't gracefully disconnect in circumstances where the connection is interrupted and the shutdown request can't be received; the next possible chance to detect a...
  3. Voxpire

    Bag Of 10 Million gold

    You can specify the worth of a check at the time you add it, too; This adds a check to your pack or targeted container, then dupes it 9 times to give 10 checks in total;
  4. Voxpire

    I need the original servuo 57

    It's possible to go back in time with the github repo...
  5. Voxpire

    VitaNex WepApi

    You can register custom http handlers; WebAPI.Register("/create_account", context => { // never reveal the secret key, this is used to prevent spoofing string secret = context.Request.Queries["secret"]; if (secret != "A1B2C3D4E5F6") // this should really be stored in a config file...
  6. Voxpire

    VitaNex WepApi

    Working in what way?
  7. Voxpire

    Linux - Fails to Compile (System.Enum)

    Sorry, I'm not even sure where to begin with that, MONO is fickle at the best of times and the code throwing the null-reference error doesn't have the potential to actually be null. Is it the latest version of MONO?
  8. Voxpire

    Linux - Fails to Compile (System.Enum)

    You can probably just remove the "Enum" part of the constraint, for example; where T : struct, Enum -> where T : struct
  9. Voxpire

    Need help getting started

    It sounds like you still need to configure the data path to the client/game files; Edit the cfg files in the Config directory, set the path to the game files. Make sure the game files you use for your server are not the same ones you are trying to login and play with as this will cause file...
  10. Voxpire

    .Net Frameworkv4.8, Tried Everything, Need Help

    Try installing dotnet 7 or 8 and compile/run using dotnet build
  11. Voxpire

    How to use domain name instead of IP:Port on Razor

    You can do this by creating a DNS A-Record for your subdomain and having the target be your shard public IP. I am not sure CF can handle TCP requests over the CDN, its designed to handle http with headers and such. Razor can be started up with a CLI string that skips the splash and config.
  12. Voxpire

    Compiler Issue ServUO-Master and VitaNex-Core 5.3.1.0

    It really depends on what you need; Pre-AOS: 57 Post-AOS: 58
  13. Voxpire

    Compiler Issue ServUO-Master and VitaNex-Core 5.3.1.0

    Yea, it's not compatible with the current ServUO "master" branch (which isn't stable or recommended for use). It should work fine if you install to P57 or P58 specifically. Also ahead of time, if you have any '.' characters in a folder name in your shard's root path, VitaNex will not properly...
  14. Voxpire

    pet does not travel with the owner

    Use the same code from Moongate for teleporting the pets, copy it to wherever you need it. BaseCreature.TeleportPets( ... ) The only line you need for it to work, be sure to put it before MoveToWorld is used on the player.
  15. Voxpire

    pet does not travel with the owner

    To be more specific, the teleportation is actually handled by Moongate https://github.com/ServUO/ServUO/blob/pub57/Scripts/Items/Internal/Moongate.cs#L95
  16. Voxpire

    pet does not travel with the owner

    Take a look at the gate travel spell, it uses BaseCreature.TeleportPets(), this is the code you need to make it work.
  17. Voxpire

    Slow start

    You need to compile the exe, double-click the Compile.WIN - Release.bat file to do so. I would recommend grabbing a copy of the pub58-wip branch on the github page, the master branch is currently unstable.
  18. Voxpire

    SuperGump Ticking Clock

    SuperGump Ticking Clock - A simple SuperGump template to display a ticking clock. Read this tutorial...
  19. Voxpire

    Gumps SuperGump Ticking Clock

    This complete snippet serves as a short tutorial and template for developing VitaNex' SuperGumps. If you just want to implement a gump with a clock, like the one in the icon, you can use the AnalogClock gump that is provided by VitaNex. This ImageClockGump makes use of the AddImageTime control...
  20. Voxpire

    How would one fix the use of $.

    If your original project is based on ServUO, then the serialization should be compatible so long as you're careful with the custom edits.

Active Shards

Donations

Total amount
$0.00
Goal
$1,000.00
Back