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
New member introductions / Re: Returning after a long hiatus
« Last post by Crisis on August 12, 2025, 05:06:55 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.)
9
New member introductions / Returning after a long hiatus
« Last post by captainazzhat on August 12, 2025, 04:48:33 PM »
Hey all. I played on Baja from 2001-2005ish. I am looking to experience some of the nostalgia that made this a special time of my life. I come from EUO like many and am looking forward to being part of the community. I am hoping to be able to find some scripts to help alleviate the more mundane aspects of the game. Thank you for having me.
10
New member introductions / Re: Returning back to OSI
« Last post by Crisis on August 12, 2025, 04:24:24 PM »
  Welcome to SUO!
Pages: [1] 2 3 ... 10