Search results

  1. Visam

    Need some help. Confused.

    Offending Mobile: Server.Mobiles.Artist [0x8C "Lari"] Offending Mobile: Server.Mobiles.Necromancer [0xFD "Tano"] Offending Mobile: Server.Mobiles.Artist [0x10A "Kendra"] Most likely the character types (Artist and Necromancer) are trying to equip 2 different items in the same slot. You would...
  2. Visam

    City Loyalty City

    single click yourself to bring up your context menu and select loyalty rating. from there you can click on city loyalty bringing up a menu to select your city. See...
  3. Visam

    Using Limited Fel Locations

    yep
  4. Visam

    Using Limited Fel Locations

    BaseBoatDeed.cs and BaseDockedBoat.cs under OnDoubleClick add Felucca to the following: if (from.AccessLevel < AccessLevel.GameMaster && (from.Map == Map.Ilshenar || from.Map == Map.Malas)) { from.SendLocalizedMessage(1010567, null, 0x25); // You may not...
  5. Visam

    I got no [xmledit xmlquestnpc

    I'm not sure of what all has been changed since. I know they have done a few rounds of bug fixes but I think most of those were to fix issues removing so many things caused. At the beginning of the current repo version a lot of the customization options were removed along with many "extras" that...
  6. Visam

    I got no [xmledit xmlquestnpc

    a lot of xmlspawner's functionality was removed in the current repo. You would need to install it back yourself or you could step back to version 57.2 which can be found on the right hand side on github under releases.
  7. Visam

    [global command help with accounts

    [global addtopack Gold set Amount 10000 where PlayerMobile Account.username == NameOfTheAccount This works on my server should work on yours [global addtopack [class name of item to add] set [property name] [value] [property name] [value] ... where [class name to use as filter] [property name]...
  8. Visam

    Mobiles and Equipment Added for 2TA Expansion?

    https://en.wikipedia.org/wiki/Ultima_Online:_The_Second_Age
  9. Visam

    Player Mobile Bool not Saving

    the 0x lets it know the number is hex and wouldn't work if your player flags are from after they were changed from int to ulong can tell by the first line of the player flags public enum PlayerFlag : ulong then you could continue on the progression by adding another 0 and continuing the...
  10. Visam

    Player Mobile Bool not Saving

    The number you used for your flag isn't proper and may cause issues. Flags follow a progression by the power of 2, and are represented in hex generally so that they line up 1, 2, 4, 8 repeated so you don't have to do math to add to them. (0x80000000 = 2147483648) the progression is like this...
  11. Visam

    Ultima Live not bringing in hues

    The .live files are fine (I've been using live since it first came out and never had any issues from it at least). They save changes you've made to the maps to read and send out. I keep a log file (by hand) that I write keeping track of each change I make to the maps noting which .live file was...
  12. Visam

    Ultima Live not bringing in hues

    Did you do the following edits per this page? https://www.servuo.com/archive/ultimalive.687/ about half way down just below the video's Server Side Installation Instructions - Core Mod for hued statics support In TileList.cs around line 59, there is a method called Add
  13. Visam

    Shard CPU usage is high

    it should work with pub 57, I went through every creature that spawned in any of the champ spawns I have on my server and added the if (!IsChampionSpawn) to all loot dropped by those creatures, the check doesn't let the loot drop if they are part of a champ spawn but if they are spawned other...
  14. Visam

    How would I make a mobile move to a particular xyz coordinate after spawn?

    What are Waypoints? Waypoints are locations that a mob will move to when it is in its default wandering mode (just walking around without a target to attack). Multiple waypoints can be chained together so that when a mob reaches a waypoint it will then begin moving toward the next waypoint in...
  15. Visam

    Missing Something Somewhere

    looks like a wrong folder issue try making a RevampedSpawns folder inside the Dragons Den folder and drop WrongRevamped.xml into it.
  16. Visam

    Remodeling Visam’s Void Creature System 2022

    Glad you got it working it's been a while since I've done anything with it.
  17. Visam

    Remodeling Visam’s Void Creature System 2022

    I'm fairly sure this was created from: https://www.servuo.com/archive/void-creature-system.644/
  18. Visam

    Ultima Online - Various editions

    The Ultima Online Classic_7_0_20_0.7z download has your username and last char played name in it. After a client has been logged into it saves the account name and last character name. You can just erase the names in Uo.cfg in the client files CdRomDataPath=c:\lbr2d CacheSize=25 HdUsage=max...
  19. Visam

    New ServUO Server

    Also... If you decide to add things to your server be sure to back it up before adding so you don't lose your server over it in case something goes wrong. Make a folder inside Scripts name it Customs to put the new script in. After putting them in you will need to re-compile ServUO using the...
  20. Visam

    New ServUO Server

    Download the server. Extract it to somewhere that windows isn't going to mess with things at such as C:\ personally I use C:\Games\ServUO Pick whatever client your planning to use and install it. (also fine if it's already installed) I prefer to copy the installed client files into the server...
Back