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!

Trying to change item name color

Rykor

Wanderer
I have

public string SetName(string text, int color)
{
Name = String.Format("<BASEFONT COLOR=#{0}>{1}</BASEFONT>", color, text);
}

and put in BaseArmor.cs but it gets an error
 

Kouri

Squire
Been doin this for some time, here is the answer for ya M309

Name = "<BASEFONT COLOR=#A335EE>Item Name</font>";
 
Top