Recent Posts

Pages: [1] 2 3 ... 10
1
New member introductions / Re: Hi everyone!
« Last post by gimlet on August 29, 2025, 08:21:41 AM »
 WELCOME!

2
New member introductions / Re: Hi everyone!
« Last post by Crisis on August 29, 2025, 02:42:57 AM »
Welcome to SUO! Thanks for updating your introduction - restricted status lifted - feel free to enjoy all the benefits of the site!
3
New member introductions / Re: Hi everyone!
« Last post by lukys.52 on August 29, 2025, 02:21:13 AM »
Well, once again, good advice.  :)

I started with UO sometime in 2004. Czech servers were doing well back then and a lot of people were playing. I took a short break sometime in 2010-2013, but I still play at least 3-4 times a week. In the last 5 years or so I've been experimenting with my own world built in the old Sphere and I'm looking forward to closer cooperation on some of my projects.

Now that my children are born, I plan to get them involved in the world of UO soon ;).
4
New member introductions / Re: Hi everyone!
« Last post by Crisis on August 27, 2025, 05:55:06 PM »
A Very Warm Welcome!

Our only requirement to be part of this site is for new members to write a good and thoughtful introduction.

Before we will unrestrict you - you need to tell us a lot more!
Please greatly expand your introduction and tell us about yourself and your UO life.

Look at the stickied examples if you need insight.
I think you will find the effort required to write a couple paragraphs will pay off with this community!

(Use a translator program if you feel you can not write in English.)
5
New member introductions / Hi everyone!
« Last post by lukys.52 on August 27, 2025, 10:27:21 AM »
Hi everyone, this is my first time here and I'm basically looking for some decent script for the orion launcher. I like beer and I don't hide my perverted desire to play UO every day. :D
6
Off Topic / Re: DayOne V Experience
« Last post by Hitechs on August 25, 2025, 09:02:53 AM »

 :police:

Code: [Select]
        private void hideZoomButtons_button_Click(object sender, EventArgs e)
        {
            zoomButtonsInBack = !zoomButtonsInBack;
            hideZoomButtons_button.Text = zoomButtonsInBack ? "Show Zoom buttons" : "Hide Zoom buttons";

            var buttons = new[] { viewUp_button, viewDown_button, viewLeft_button, viewRight_button,
                         resetZoom_button, size1_button, zoomIn_button, zoomOut_button };

            foreach (var b in buttons) if (zoomButtonsInBack) b.SendToBack(); else b.BringToFront();
        }

7
Off Topic / DayOne V Experience
« Last post by Hitechs on August 25, 2025, 08:00:58 AM »
 ???
Day One =


Code: [Select]
    private void hideZoomButtons_button_Click(object sender, EventArgs e)
    {
        if (zoomButtonsInBack == true)
        {
            hideZoomButtons_button.Text = "Hide Zoom buttons";
            // -- zoom buttons --
            viewUp_button.BringToFront();
            viewDown_button.BringToFront();
            viewLeft_button.BringToFront();
            viewRight_button.BringToFront();
            resetZoom_button.BringToFront();
            size1_button.BringToFront();
            zoomIn_button.BringToFront();
            zoomOut_button.BringToFront();
            zoomButtonsInBack = false;
            return;
        }
        if (zoomButtonsInBack == false)
        {
            hideZoomButtons_button.Text = "Show Zoom buttons";
            // -- zoom buttons --
            viewUp_button.SendToBack();
            viewDown_button.SendToBack();
            viewLeft_button.SendToBack();
            viewRight_button.SendToBack();
            resetZoom_button.SendToBack();
            size1_button.SendToBack();
            zoomIn_button.SendToBack();
            zoomOut_button.SendToBack();
            zoomButtonsInBack = true;
        }
    }



 :-X
Experience =

Code: [Select]
private void hideZoomButtons_button_Click(object sender, EventArgs e)
{
    zoomButtonsInBack = !zoomButtonsInBack;
    hideZoomButtons_button.Text = zoomButtonsInBack ? "Show Zoom buttons" : "Hide Zoom buttons";
   
    var buttons = new[] { viewUp_button, viewDown_button, viewLeft_button, viewRight_button,
                         resetZoom_button, size1_button, zoomIn_button, zoomOut_button };
   
    foreach (var button in buttons)
        button[zoomButtonsInBack ? nameof(SendToBack) : nameof(BringToFront)]();
}


 :-\
8
UO News / [UO.com]UO.com Upgrade
« Last post by Spaz Ferret on August 21, 2025, 09:07:28 PM »
UO.com Upgrade

8/21/2025 Greetings, We are pleased to announce that UO.com will be getting an upgrade!  This upgrade will begin next week on August 25th, 2025.  We expect the upgrade & migration to last up to 1 week with intermittent downtime.  During that time please see our other social media outlets, linked below, for game updates: Ultima Online Twitter/X – https://twitter.com/UOTownCryer Ultima Online Instagram – https://www.instagram.com/uotowncryer/ Ultima Online Facebook – https://www.facebook.com/UltimaOnline/ Ultima Online YouTube – https://www.youtube.com/@ultimaonlineofficial Ultima Online Twitch – https://www.twitch.tv/BroadswordUO Ultima Online Discord – http://discord.gg/ultimaonline Ultima Online Forum – https://forum.uo.com See you in Britannia, UO Team
Source: UO.com Upgrade
9
UO News / [UO.com]New Legacy Publish 3
« Last post by Spaz Ferret on August 21, 2025, 09:04:38 AM »
New Legacy Publish 3

8/20/2025 Greetings, We anticipate New Legacy Publish 3 will be going live next week.  New Legacy Publish 3 will include the The Shattering and so we want to share with you some important updates related to this publish, New Legacy Publish 3 – Important Dates August 26th, 2025 New Legacy Publish 3 goes live. Prologue quest for the Fractured Veil event can be completed. September 2nd, 2025 The world begins to shatter. The Fractured Veil event begins. Creation of NEW CHARACTERS will be DISABLED. Any pre-existing characters will still be playable. IF YOU INTEND TO EXPERIENCE THE NEW LEGACY SHARD […]
Source: New Legacy Publish 3
10
UO News / [UO.com]Happening Now – Roadmap Roundtable!
« Last post by Spaz Ferret on August 21, 2025, 09:04:36 AM »
Happening Now – Roadmap Roundtable!

7/29/2025 Greetings, Happening now!  Join the UO Devs from 6:30pm ET to 8:30pm ET in the Official Ultima Online Discord to talk about what’s next for Ultima Online!  We’ll also be doing some giveaways for awesome UO Store items, so don’t miss out! http://discord.gg/ultimaonline -UO Team
Source: Happening Now – Roadmap Roundtable!
Pages: [1] 2 3 ... 10