Search results

  1. SimonOmega

    Pre-AOS Runic Hammers

    This may be a stupid question. But in Pre-AOS the modifiers would never show until you identified the item. Are you setting Identified = true; on the item the Runic creates/enhances? I am not sure if ServUO has this restriction, but RunUO did.
  2. SimonOmega

    Trying to add something more to paragon.cs

    Add Maps to the list using Map Objects. public static Map[] Maps = new Map[] // Maps that paragons will spawn on { Map.Ilshenar, // Map.Felucca, Map.Trammel }; Adding Items (See highlight, I add a generic Katana and Cookies) public static Type[] Artifacts = new...
  3. SimonOmega

    Quest timer - wonky display

    If you want it to show a decimal value: (float)System.Math.Round( [YOUR_DOUBLE], [NUMBERS_AFTER_DECIMAL]); So: (float)System.Math.Round( Utility.RandomMinMax(1.5, 2.5), 2); Would display a value like "1.82".
  4. SimonOmega

    BaseCreature Vendor

    Try: public class GaltonHill : BaseVendor Or if you want to attempt building things from the ground up: public class GaltonHill : BaseCreature, IVendor See if one of these will produce the results you are looking for. In your code when you create the GaltonHill class it is derived from...
  5. SimonOmega

    Spell Channeling on Pre-AOS server

    Not sure if this helps, but on a server where I set the Expansion to UOR (And that is all that I did, not other UOR changes). The below code created a Template Katana that can be held while casting. using Server.Engines.Craft; namespace Server.Items { [Alterable(typeof(DefBlacksmithy)...
  6. SimonOmega

    error CS0120: An object reference is required for the non-static field, method, or property 'DemonicSamurai.Despawn()'

    Shouldn't Delete be a method of an object? Try deleting the base object. public void Despawn() { base.Delete(); }
  7. SimonOmega

    HowTo: Compile and Run ServUO using Mono in Linux

    @Nerun, Thank you for the help. Things came up with work and I had to step away.
  8. SimonOmega

    HowTo: Compile and Run ServUO using Mono in Linux

    FAQ I am falling trhough the map! Welcome to using Broadsword. Easy fix: Run ServUO with *.mul files from an older version. My favorite is 7.0.20.0. But I can't find these *.mul files. Seek and you shall find.
  9. SimonOmega

    HowTo: Compile and Run ServUO using Mono in Linux

    Hello alll, This guide will explain how to compile and execute ServUO under Linux using Mono. I am using these specific versions: Kali Linux - a Debian based distrobution Linux 5.9.0-kali4-amd64 - Debian 5.9.11-1kali1 (2020-12-01) x86_64 GNU/Linux UO Classic Client 7.0.24.0...
  10. SimonOmega

    Console.WriteLine("Hello World!");

    Salutations, I am the brother of @Sareus. I was around in the RunUO days. Most of my contributions were in helping RunUO support Mono and in Expansions.UOR / Expansions.T2A. I had to take a hiatus from RunUO years ago for family and career. I've been lurking in the shadows, thought I would...
Back