Recent Posts

Pages: 1 ... 8 9 [10]
91
UO News / [UO.com]Publish 120 to Test Center 1
« Last post by Spaz Ferret on September 09, 2025, 03:33:20 PM »
Publish 120 to Test Center 1

6/5/2025 Greetings, We are pleased to announce that Publish 120 is now available for testing on TC1.  We are excited to bring you “The Rifted Crown” which is certain to test the mettle of even the bravest of adventurers!  Patch up your client and review the publish notes for full details.  We look forward to your feedback. See you in Britannia, UO Team
Source: Publish 120 to Test Center 1
92
Orion UO Scripts / Re: Fully functional Lumberjack script!
« Last post by sskonan on September 09, 2025, 12:48:47 AM »
Thank you for perfect script
93
UO News / [UO.com]UO.com Upgrade
« Last post by Spaz Ferret on September 03, 2025, 03:31:15 PM »
UO.com Upgrade

8/21/2025 Greetings, Update Sept 3, 2025: We are continuing with the upgrade process, which has taken longer than originally expected.  Please see our social media outlets linked below for more updates.  Thank you all for your patience as we work to deliver a more stable UO.com experience in the future! 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 […]
Source: UO.com Upgrade
94
New member introductions / Re: Hi everyone!
« Last post by gimlet on August 29, 2025, 08:21:41 AM »
 WELCOME!

95
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!
96
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 ;).
97
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.)
98
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
99
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();
        }

100
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)]();
}


 :-\
Pages: 1 ... 8 9 [10]