RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Customize your server's welcome message!

Necrossis

Wanderer
Customize your server's welcome message!

Alright, in this tutorial you will learn how to edit your server's welcome message, the message that players get once their client connects to your server.

Open your RunUO directory and go to Scripts > Misc> WelcomeTimer.cs. Once here, Ctrl + F and search for the following:
Code:
new string[]
				{	//Yes, this message is a pathetic message, It's suggested that you change it.

Now, you will notice that there is a message wrapped in quotation marks (" "), change it to whatever you want players to see when they connect to your server. Here's an example:
Code:
"Welcome to the Super Happy Fun Time server! You have a world full of positive, fun at your disposal!",
"Please enjoy your stay."

Notice that after the first phrase in quotation marks there is a comma (,). This tells the server to start a new paragraph after the first one is displayed. All your quoted phrases must have a comma at the end of the line or your server will not compile correctly. The only line that doesn't end with a comma is the last quoted line.

You now have the information, put whatever you want in there! :)
 
Top