Search results

  1. Rex

    Object cannot be removed

    if you have xmlspawner installed you can use [Xmlfind and limit the range to a few tiles, and find the object and delete it that way. It sounds like maybe it's a house multi that can't be deleted?
  2. Rex

    CentrED+ blank map.

    You can use Centred# and it will create a blank map for you if you don't tell it to use an existing map. https://github.com/kaczy93/centredsharp Join the CentrED# Discord Server! CentrED#, A discord for the rewrite of the map editor program Centred and Centred+.
  3. Rex

    Need some help

    You are loading the server from within your desktop folder, that can cause issues. Also it says it can't see any files, did you download Servuo.exe only? You can download the full repo from the github.
  4. Rex

    3D Points ?

    You can get the landtile Z with this code, and then move the "Caster" to the Z level of that X Y position. LandTile landtile = Caster.Map.Tiles.GetLandTile(box.X, box.Y); Caster.MoveToWorld(new Point3D(box.X, box.Y, landtile.Z), Caster.Map); The box would be your Rect3d or whatever.
  5. Rex

    Enhanced Garg Wings and Admin Robes

  6. Rex

    UODisc - a discord bot

    I'm trying to upgrade to .NET8 and UODisc is not throwing some errors. I've had to upgrade to the nuget DSharpPlus. And this area. Each of these throws a slightly different error. Any chance for an update to this?
  7. Rex

    LFHelp

    Do you want them to have unlimited items in their backpack? If you do this they will get to about 500 items and then start having random problems opening and viewing the backpack, client crashes and lockups because at that point it too much data for the packets. Just be careful with it.
  8. Rex

    Khal Ankur Animation

    UO EC Superviewer can view and export EC anims to .vd. Pinco created it, you can get it from that Discord here Join the Pinco's Projects Discord Server!
  9. Rex

    I have a question about the explosion effect.

    The explosion-related animation is hard coded into the client and can't be changed in a simple way. You could code your own variation that would allow you to use a different explosion animation, which would mean editing the client(super hard) or editing your own version of the ClassicUO...
  10. Rex

    Whats this chance means?

    Utility.Random(3) can roll these numbers: 0 1 2 So if DestroyChance rolls a 1 or 2 it will pass as greaterthen 0. "DestroyChance > 0". So a 2/3rd chance, or 66%
  11. Rex

    Independent Spell Timers.

    I’m sure it’s possible but it’s not coded into the existing systems. It would take some custom coding to set up the checks and replies.
  12. Rex

    Independent Spell Timers.

    Sure! It's easy enough, just insert the CheckCast part, and add the bits of code into the same similar spots as in the example. using System; using System.Collections.Generic; using System.Linq; using Server.Targeting; using Server.Multis; using Server.Regions; using Server.Mobiles; using...
  13. Rex

    Independent Spell Timers.

    You can use the built in servuo code to do this using these methods: CanBeginAction BeginAction EndAction Here's a quick example in a spell public override bool CheckCast() { if (!base.CheckCast()) return false; if...
  14. Rex

    Force a crafter name on item

    You'd want to do this with the ICraftable interface like this public class Spellweaving : GoldRing, ICraftable { [Constructable] public Spellweaving() { Name = "Spellweaving"; SkillBonuses.SetValues(0, SkillName.Spellweaving, 10)...
  15. Rex

    Gm Bodyvalue

    It's in the command [gmbody 987 or [self set bodyvalue 987 This one lets you walk through doors.
  16. Rex

    Dragonmod issue

    I’m pretty sure this has to do with the color of those pixel. In photoshop I use the color palette and then right before I prepare the bmp file I change it to indexed color which locks all pixel color values to a color on the palette. If the color is not exactly matching then you get that weird...
  17. Rex

    serializing a type

    Are you trying to serialize a Type? ie a definition of a thing or you are trying to serialize an already constructed Mobile that is then referenced in EssenceBones?
  18. Rex

    [Updated Custom Release] XmlAttach & XmlLevelItem for newest repo

    This worked for me as I had to use ReadSerial in a couple spots.
  19. Rex

    [Updated Custom Release] XmlAttach & XmlLevelItem for newest repo

    I have this same issue "Cannot implicitly convert type 'int' to 'Server.Serial' " in a bunch of scripts. Using pub58.
  20. Rex

    Displaying jpg images ingame using a gump

    You could import them into the art or gump file and load them as a normal gump. Another option could be to load a weblink item and just open to a web page via browser.

Active Shards

Donations

Total amount
$0.00
Goal
$500.00
Back