Search results

  1. Falkor

    New Treasure maps / Paragon Chests

    By default the Miasma can't be a paragon but it is configured to give Level 5 maps. Changing that is as easy as changing the 5 to a 4 in Miasma.cs public override bool CanBeParagon => false; public override void OnDeath(Container c) { base.OnDeath(c)...
  2. Falkor

    Missing a using directive or an assembly reference? error

    You may get it to work by referring to it like this: if (source is PlayerMobile && target is Felladrin.Automations.CharacterClone) I'm not 100% certain but it would be my first go-to!
  3. Falkor

    ServUO Pub57 megacliloc errors

    The cliloc file is only a list of numbers and words or phrases that go with each number. Display in game is done by the Object Property List, or OPL code. You can add colors there to some degree but I wouldn't use too many as the client hates rendering HTML within the OPL list and can break if...
  4. Falkor

    ServUO Pub 57

    I covered the NPC selling part last night: https://www.servuo.com/threads/disabling-selling-to-vendors-disabling-peerless-key-timers.13234/post-79381
  5. Falkor

    Disabling selling to vendors & disabling peerless key timers

    You downloaded it, compiled and ran it, and you get those errors with no changes made? That error isn't specific enough to figure out without seeing examples and figuring out what changed to make it happen.
  6. Falkor

    daat tokens

    Looks like Lokai may have the easiest package to install here: https://www.servuo.com/threads/working-token-system.10985/post-66226 I can't find any listing of Daat99's Storage System in the downloads section here. Maybe my google-fu just isn't working well enough because it's bound to be...
  7. Falkor

    Disabling selling to vendors & disabling peerless key timers

    Find this line in BaseVendor.cs public virtual bool IsActiveBuyer { get { return IsActiveVendor && !Siege.SiegeShard; } } // response to vendor SELL and change it to public virtual bool IsActiveBuyer { get { return false; } } // response to vendor SELL For the peerless key... I haven't...
  8. Falkor

    ServUO Pub57 precision spawning?

    I would just start with what this post says - shutting off the various facet-based systems: https://www.servuo.com/threads/items-continue-to-spawn-after-facet-wipe.6625/post-42668 Then spawn the world as normal, letting it spew things all over the custom facets. Then just [go to each custom...
  9. Falkor

    ServUO Pub57 megacliloc errors

    It's hard to add what you don't know is missing! Starting with a newer cliloc file is the easiest way to fix errors related to more recent content. I have greatly modified the cliloc file for my client to improve game play. It's one reason I don't try to keep up with current UO anymore -- I've...
  10. Falkor

    ServUO Pub57 megacliloc errors

    You can copy the cliloc.enu file from newer clients and it'll work with your existing exe.
  11. Falkor

    Servuo - PetBroker?

    Just copy the existing animaltrainer.cs and replace all occurrences of animaltrainer with something new like newanimaltrainer. Then find this part of the script: public override void InitSBInfo() { m_SBInfos.Add(new SBAnimalTrainer()); } And change it to...
  12. Falkor

    Servuo - PetBroker?

    It's a type of Commodity Broker. However, that doesn't appear to be a constructable so it can't be added manually. That might be a good thing since the system also relies on plot rentals, moving expired inventories to the warehouse, etc. You sure you don't want to just add another animal...
  13. Falkor

    ServUO Pub57 - Plain server

    Yes, that will use map0.mul so be sure to comment out the existing registrations of Felucca. With custom maps you'll also have to tweak boat code to make the "wraparound" work properly at the edges of the world but first things first!
  14. Falkor

    ServUO - Can't get new art to show up

    Your way of testing it should work. You can also type [add static 0x.... to place a non-functioning piece of deco. You are copying art.mul and artidx.mul after editing, right?
  15. Falkor

    ServUO Pub57 - Plain server

    You can't just add new physical maps to the existing ones in the client. It won't work that way. You can replace any of the default maps, and you can define any number of extra worlds that are clones of one of those, but you can't just add more maps without replacing any.
  16. Falkor

    ServUO - Can't get new art to show up

    I think the highest usable value depends on the client version you're running. See what happens if you put it in a slot before say 41000. Note that item weight here can make the client highlight the item in yellow all the time if its weight isn't 255. Make sure it works like you want it to...
  17. Falkor

    ServUO Pub57 - Plain server

    If it's a clean install you should have nothing to start with. You can wipe each facet first just to be sure absolutely nothing exists - no deco, no spawners, no nothing. Edit the regions file or just provide a blank one to have no regions.
  18. Falkor

    HasBreath vs SpecialAbility.DragonBreath

    It's done in SpecialAbility.cs so maybe you can override the default values with your own? I have not tried to do so but it's likely doable.
  19. Falkor

    Fiddler - Adding gumps - image format?

    The client treats true black as transparent. Try to change the original just slightly enough to end up with "not quite" full black.
  20. Falkor

    Redownloaded Repo for Ninjitsu/Bushido

    The previous version of ServUO will probably do everything you're looking for. I just wish its download location was made more prominent since it's what many people want to use. https://github.com/ServUO/ServUO/releases/tag/57

Active Shards

Donations

Total amount
$0.00
Goal
$1,000.00
Back