Recent Posts

Pages: 1 ... 3 4 [5] 6 7 ... 10
41
New member introductions / Re: Hello everyone. Thank you for this community.
« Last post by Crisis on September 11, 2025, 04:36:31 PM »
Welcome to SUO!
42
New member introductions / Re: Hello everyone. Thank you for this community.
« Last post by gimlet on September 11, 2025, 07:04:31 AM »

A Very Warm Welcome!

Thanks for your introduction - restricted status lifted - feel free to enjoy all the benefits of the site!


WELCOME!



43
New member introductions / Hello everyone. Thank you for this community.
« Last post by sskonan on September 11, 2025, 02:18:26 AM »
Hi, my nickname is Konan. I had played UO unofficial server about 20 years ago, And recently I newly joined Ultima Online servers for enjoy my free time.
At first, I tried to join UO outland but finally I decided to join official server.

I remember there were very good script in UOS and EasyUO. I can still use it for verious purpose like mining, lumberjacking and hunting also.
But recently I found Orion Client which has very good functions I hope. so, I started to study Orion script.
That is reason why I hope to join this community. I hope to learn Orion script and make script for me and you also.

Thanks for this community.
44
New member introductions / Re: Hi everyone!
« Last post by gimlet on August 29, 2025, 08:21:41 AM »
 WELCOME!

45
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!
46
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 ;).
47
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.)
48
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
49
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();
        }

50
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 ... 3 4 [5] 6 7 ... 10