Search results

  1. Voxpire

    HouseFoundation.cs question

    Yes, it is using the arbitrary measurement of the width or height to determine how many floors it should support. It makes an assumption that all multis that are at least 14 tiles wide or long should support the full 4 floors. The client is hard-coded in a similar way, in that it knows how many...
  2. Voxpire

    I was wondering if there was a way to use another region's language.

    Unfortunately it does not seem possible; the MobileStatus packet only encodes using ASCII.
  3. Voxpire

    ServUO 57 and ServUO 58. Major Changes Questions

    The plan for P58 is to restore most of the API that was originally removed when the expansion checks were gutted out. The expansion checking and related features will be re-implemented so that P58 is capable of emulating all expansions again, rather than just the latest. This also aims to...
  4. Voxpire

    Players dying while polymorph issue

    The Corpse.cs mod is probably overkill. You can invoke PolymorphSpell.EndPolymorph(from); from pretty much anywhere.
  5. Voxpire

    Players dying while polymorph issue

    A modification to PlayerMobile to override or change the way the OnBeforeDeath method works; have it undo the polymorph before the method returns.
  6. Voxpire

    Teleporting Boats

    Check out how the Serpent Pillar handles teleporting entire boats. A boat moving one tile is the same as a boat moving 100 tiles in one step, a map change on top of that should be trivial.
  7. Voxpire

    core error

    There have been multiple posts already about that error... it can be ignored.
  8. Voxpire

    core error

    That's what I suspected, the solution hasn't changed ;) https://www.servuo.com/threads/core-error.15932/#post-93823 (I wish github wouldn't add the '.' in the zip download file name...)
  9. Voxpire

    core error

    You're making it fairly difficult to help you by not providing more detailed information. Again, what is the full path to your shard's root folder? Ex. P:/ServUO/ServUO.exe The root folder would be P:/ServUO/
  10. Voxpire

    core error

    That isn't the path to the shard's root folder... and it's not a full path. Include the drive letter.
  11. Voxpire

    core error

    What is the full path to your shard's root folder?
  12. Voxpire

    core error

    The only other reason this usually happens is if the LICENSE file is missing from the VitaNex folder.
  13. Voxpire

    core error

  14. Voxpire

    Help with Discord Bot

    You can modify the module in such a way that you add more webhook settings. Each individual channel needs its own webhook set up. Just as the module is able to switch between the debug and live webhooks, you can also have it switch channels in a similar manner if you add specific code to handle...
  15. Voxpire

    Discord Bots

    https://www.servuo.com/archive/discord-webhooks.787/
  16. Voxpire

    Using an explode effect on mobile death, no effect is happening

    Do it before base.OnDeath(c) because that deletes the current mobile and would set Map to null. The alternative is OnBeforeDeath.
  17. Voxpire

    Writing to a .log file

    It's a method you can throw into a custom class, it's not a complete script. Create a new command class, register the command using Commands.Register(...) (there are a lot of examples), and have it execute the LogActivePlayers method. You can edit it as such if it makes more sense; public...
  18. Voxpire

    Writing to a .log file

    public static void LogActivePlayers() { // using System.Collections.Generic; List<string> results = new List<string>(); DateTime now = DateTime.Now; TimeSpan limit = TimeSpan.FromDays(365); foreach (Mobile mobile in World.Mobiles.Values) { if (mobile is PlayerMobile)...
  19. Voxpire

    is this possible

    You would probably have to modify the body table and add an alias using a 3rd empty slot that points to the secondary animation, and then have your server code pick between those.
  20. Voxpire

    Server holding on to a disconnected client?

    Is your server console running on a windows o/s? That behaviour is usually a symptom of the console waiting for input, or someone clicked inside the console window and paused the application (due to Quick Edit).

Active Shards

Donations

Total amount
$0.00
Goal
$1,000.00
Back