Search results

  1. Visam

    Increase skills in pvm

    With xml spawner I'm not sure how to drop the item into everyone's pack at least not without creating your own custom attachment. What I put above will only drop it into the pack of the player that landed the killing blow, if that's working you should be able to use the following to drop it into...
  2. Visam

    Increase skills in pvm

    I think this should work. This will add the item to the Orc at creation making the item stealable besides being able to be looted on it's death. Orc/ADD/<ScrollOfTranscendence,Alchemy,1> Also, depending on if the version your using has had it removed yet or not you might also be able to use...
  3. Visam

    Increase skills in pvm

    It's not custom but that's what a Scroll Of Transcendence does. ScrollOfTranscendence.cs They can be set for picking a random skill or a specific one and you can specify how much it will raise the skill
  4. Visam

    issue with armor and dex

    What's your magic resist?
  5. Visam

    Spell Damage Increase

    Unless it's modified there isn't a cap on sdi besides the pvp cap it does have diminishing returns however. If you want to put a cap on it the best place would probably be in SpellHelper.cs on servuo if you searched for : public static int GetSpellDamageBonus You should see the pvp cap called...
  6. Visam

    Long Shot - City of the Sun

    You can view the structures without it being connected just can't add anything to the server.
  7. Visam

    "customs" folder does not read

    If your using the current repo you have to re-compile the server anytime you edit or add a script.
  8. Visam

    Unhide Effects

    I think this is what you're looking for.
  9. Visam

    Setting a higher accesslevel on spawning / modifying XMLSpawners

    True, I'd never use a version that didn't have it in it's full glory anymore it's too useful to not have. Stock UO is boring from the development side of things.
  10. Visam

    RunUO - need help with craft system

    I'm not certain but I think if you just remove the - before the karma value it will mess up karma gains for players killing the creatures. example "not actual numbers from the game but made up": Lich has -1000 karma you remove the - so now it has 1000 karma I kill it and my karma goes down for...
  11. Visam

    Setting a higher accesslevel on spawning / modifying XMLSpawners

    They didn't completely remove XmlSpawner they just gutted it removing most of it's special features, and it was done in a few different phases.
  12. Visam

    Basic Xmlspawner help

    Yeah, Xml spawner has always been one of my favorite toys to play with. But anything that didn't go along with what current Broadsword is using was removed so the server could boot up a bit faster. Least we have older versions to play with.
  13. Visam

    Basic Xmlspawner help

    I'm fairly sure it was removed from current ServUO. Current ServUO Code in BaseXMLSpawner.cs private enum typemodKeyword { // Preparing for removal. } Older version code in BaseXMLSpawner.cs private enum typemodKeyword { MUSIC...
  14. Visam

    Basic Xmlspawner help

    I use an older version because of xml spawner and many other things that were removed. The things removed from xmlspawner could be added back in but for me personally it wasn't worth the effort it would take to get it where I would want it.
  15. Visam

    Basic Xmlspawner help

    To help with this the version of ServUO you are using would need to be known. Current ServUO has an incomplete version of xmlspawner included with it, and many of the commands such as ADD were removed a year or so ago.
  16. Visam

    Different Guards Per Region

    Look in the data folder for Regions.xml It gives the names for the different town regions. From that name you can use: if (Region.Name == "Britain")
  17. Visam

    [ServUO] Unique vendor prices

    It would need to go before the basearmor check otherwise basearmor/baseweapon would pick it up and it would never get to the part your needing. if (item is EarthCrusher) { price = 10000; } else if (item is BaseArmor)
  18. Visam

    [ServUO] Unique vendor prices

    if you had special armor/weapons named UberWepOne, UberWepTwo, and UberArmorOne and you wanted a specific price for them you could: if (item is UberWepOne) { price = 5000; } else if (item is UberWepTwo) {...
  19. Visam

    [ServUO] Break (delete) on DoubleClick

    the D has to be capitalized. c.Delete(); this.Delete(); Delete(); //don't really need this.
  20. Visam

    Can anyone tell me if i am writing this delete command correct forgot it...

    [global delete where item itemid == 99384

Active Shards

Donations

Total amount
$0.00
Goal
$1,000.00
Back