Search results

  1. BelfortUO

    Force a crafter name on item

    Is there a way to force a crafter name on item? For example: using System; using Server; namespace Server.Items { public class Spellweaving : GoldRing { [Constructable] public Spellweaving() { Name = "Spellweaving"...
  2. BelfortUO

    Armor Durability

    I know this is probably an easy solution, however I am not expert coder and I can't figure out for the life of me how to make a new item with a durability level of say "indestructible". I've tried many different things and come up with errors. What am I missing? It works find if you set this...
  3. BelfortUO

    Luck CAP per item

    I'm pretty sure I know the answer to this from digging through the scripts. Am I correct that there is not luck cap per item? It would have to be coded in if you needed? Say have an item that generically has 50 luck however will let users add 50 more later via deeds or some sort of luck item...
  4. BelfortUO

    Random Speech to MOB

    Can you add random speech, or select from a list of things to say randomly every xx +/- time on a mob? Was looking at orc's as a baseline however can't figure it out due to lack of coding knowledge. Basically so the mob wanders around and randomly says taunts anyone in the area
  5. BelfortUO

    Looking to Hire someone to merge old client graphics with current client graphics

    Basically I have an old client (7.0.13.4) with graphics I'd like to import (hopefully keeping the same itemID's etc) into the newer client 7.0.85.15. If you have the skills and the no how, please hit me up!
  6. BelfortUO

    XLM Spawner to Cast and Or Say Message

    So reading through the guide I see this is possible. However I'm trying multiple things and can't get either to work. For example for getting a message to show up... yields nothing I tried CAST, FireballSpell[,17] in multiple fields however get zilch. Can someone give some samples...
  7. BelfortUO

    Changing Item Title Color Without HTML Code Showing

    Hi, Running Serv UO. Been dinking around trying to change the item color however preserving the actual item name. I know it is possible however tried a couple different things, and being a newbie, plus several hours scouring the forums, I can't find a workable solution. If I need to post all...
  8. BelfortUO

    Spawning Stealable Items

    I have searched high and low and seen a view threads about this, however I have not seen anything definitive. Can someone explain the steps needed to be taken to get an item to be spawned as a stealable item using the xmlspawner? I gather that it needs to be locked down and set as stealable...
  9. BelfortUO

    Add bonus % and gold bonus % to item

    Running ServUO. Just curious, how difficult is it to add % bonuses to a worn item? I am a total newb trying to figure out how to connect the dots. Tried a couple different things however just get errors. using System; using Server; namespace Server.Items { public class SnowBoots ...
  10. BelfortUO

    Start All Champ Spawn Command

    Is there a quick way to start all the champspawns at 1 time? I see there is a way to select them all however I don't know what the command is to make them all active. I've tried active, active true...etc
  11. BelfortUO

    How do I add a second random skill to random cloth deed

    Quick, I think, question. How can I tweak this script to add a second random skill? Tried a few things however I'm an extreme newbie learning. Serv UO using System; using Server.Network; using Server.Items; namespace Server.Items { public class GreaterMagicBodySash2s ...
  12. BelfortUO

    Champion Scroll reset

    Is there anything in the Vita-Nex core that would be causing champ scrolls to reset back to 100.0 after eating a 120.0?
  13. BelfortUO

    Power Scrolls keep resetting

    Any idea why this could be happening. Running ServUO 54 I will not lie, I made some adjustments to allow each skill to go beyond 120 with aug's etc. However can't figure out which thing I mod'd to screw up the power scrolls. Thanks in advance.
  14. BelfortUO

    Issue with Character Status

    Hi I am not sure this is the "correct" forum however we will give it a shot. Where do these values get calculated from? Mine don't udate. Running server UO 54 Any help on a direction to look would be appreciated.
  15. BelfortUO

    Need an example of how to add % bonuses to weapons/armor, and dex/int requirements

    Hi, Running ServUO 54, looking to add some +% stats to weapons and armor example. +3% luck bonus to a armor +5% fire spell damage +3% gold bonus I'm a rookie however if I have an example I can usually figure out the concept. Just need some direction. One other thing, for some reason I can...
  16. BelfortUO

    Paralyzing Mace Integration

    Hi I am running ServUO and was attempting to modify the script below to be used. I keep getting an error and I am, again no expert, trying to figure how what the missing reference is. What I am doing is comparing to other CS files I have trying to see what the correct reference is or what the...
  17. BelfortUO

    Can't figure out how to add bond to player on pickup

    ServUO-- :) Hi I have a little custom ingot that I am trying to figure out how to bind the the player on pickup. I will be adding it to a mob as a random drop for a quest turn in. Below is the code the code. Without any of my random tests. using System; namespace Server.Items { public...
  18. BelfortUO

    Does anyone have a working Pet Slot Increase deed?

    I've been seeing if I can chop one together by modifying another script however it's kicking back some errors for my ServUO server. Just curious if someone has one working already. Here is my hack version with errors. using System; using Server.Network; using Server.Prompts; using...
  19. BelfortUO

    Luck Deed Script Acting Odd (ServUO)

    So I'm not going to claim to be an expert scripter at all. In fact total newb. I found this script and have been playing with it in my quest to learn C# and the ServUO world. I can get it to work however for some reason the shield always has double the luck of any of the other three items...
  20. BelfortUO

    How do you add alt text to an item

    Hi I'm just beginning my journey with ServUO. So far it has been very fun to mess around with and learn the "code". Can someone help me with this question? I am curious if there is something that you can add to an item to have it show the text below. I've tried a couple things however it...
Back