Ultima Online

New Legacy Beta Testing Guide

New Legacy Beta Weekends will begin on July 26, 2024 and continue through launch day.  Each week we will bring the server up on Friday afternoon and you’ll have until 9 AM ET Monday morning to participate in the beta. The shard is still a work in progress as we refine and tune various areas and systems and areas. This Britannia is different and we invite you to check out the Beta FAQ which provides an overview on the major changes. Each weekend we will ask beta testers to focus on specific testing elements and provide feedback and make bug […]


Ultima Online

New Legacy Beta FAQ

General Questions What is the purpose of the New Legacy Beta? We will be providing beta testers with specific testing details to target various game systems for evaluation.  How do I join the beta? Prospective beta testers will need to have or create an Ultima Online account and download the classic or enhanced client.  You can download the client here. How many characters can I have?  You may have up to 2 characters per account. Will I be able to login to New Legacy if there is high demand? The shard will employ a queuing system to handle high demand.  […]


Ultima Online

Publish 109.1

Beginning with each  shard’s regular maintenance on September 16, 2020 we will be releasing an update to all shards which includes our new dynamic quest system as well as some miscellaneous changes and bug fixes, Account bound items can no longer be placed on vendors or auction safes Items that cannot be moved by players that are in IDOC loot will be deleted Resolved issue where ridden pets do not reflect the notoriety of their riders Transmogrification Potion The potion is no longer available on Siege Perilous Resolved issue with Hooded Shroud of Shadows that were altered by the potion […]


Ultima Online

Transmogrification Potions

Transmogrification potions are purchased from Ultima Store at a cost of 700 sovereigns and are used to transfer properties from one item to another fitting the same equipment slot, but of a different style. Please note, these potions are not available on Siege Perilous or Mugen shards. At current time such potions exist for: Head Slot Robe Slot Shield Slot The potion requires both source and destination objects share certain properties. If the source object is medable, the destination object must also be medable, either through the material used or by application of the ‘mage armor’* property. If the source […]


Ultima Online

Shrouded Sails (Spring 2024)

A strange collector has appeared at Sea Market, he collects pirate hats! He will exchange Plundering Pirate Hats for a number of desirable items. Venture out wherever pirates can be found and collect their headwear! Points from this event will expire: 2024-07-17 00:18:26 EDT We are reliably informed that they can be found When digging Treasure Chests When fishing Messages in a Bottle When battling Scalis When fighting Corgul When battling Charybdis Hoarded by Merchant Ship Crews When sinking Plunderbeacons When tackling Dread Pirates In recent news, pirates have also invaded the Void Pool, venturing out from the seas. Test your […]


Ultima Online

Pigment Hue Numbers

These images were supplied by Tarragon Slayer and feature GrimReefer’s House of Dyes


Ultima Online

Adding Custom Icons – By TimSt

To add new icons edit the file Icons\Icons.xml. Near the bottom copy one of the existing entries for example: <Icon id=”857429″ texture=”Icons/Macro Icons/Numbers/29.dds” name=”29″ /> Change the id value to something unique such as 900002. Change the texture value to point to your new icon such as Icons/My Icons/MineNiter.dds Change the name value to something appropriate such as “Mine Niter” The new entry in Icons.xml would look like <Icon id=”900002″ texture=”Icons/My Icons/MineNiter.dds” name=”Mine Niter” /> To use this new icon when creating a macro edit the file Source\MacroPickerWindow.lua and add the id value you used, 900002 in this case, to […]


Ultima Online

Dye Tub Hue Numbers

The hue numbers as they relate to NPC dye tubs from Tailor shops Leather, runebook and statuette dye tubs – with thanks to Jennifer-Marie All Metallic Dye Tubs Special Dye Tub


Ultima Online

Target Injured Friendly – by Khyro

Edit your Actions.lua file, and add the following to the file (can be anywhere, bottom is fine): function Actions.InjuredFriendly() local lowerId = 0 local lowerHP = -1 for i = 1, table.getn(MobilesOnScreen.MobilesSort) do local mobileId = MobilesOnScreen.MobilesSort[i] local data = WindowData.MobileName[mobileId] local noto = data.Notoriety+1 if (Actions.TargetAllowed(mobileId) and not IsPartyMember(mobileId) and noto == NameColor.Notoriety.INNOCENT) then local mobileData = Interface.GetMobileData(mobileId, true) if mobileData then local curHealth = mobileData.CurrentHealth if (curHealth < 25) then if curHealth < lowerHP or lowerHP == -1 then lowerHP = curHealth lowerId = mobileId end end end end end if (lowerId ~= 0) then HandleSingleLeftClkTarget(lowerId) end end Then […]