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!

[set hueable false =)

ScoobysHubby

Wanderer
[set hueable false =)

I think it would be great if someone could come up with a script to where you can change set huable false like set movable false/true. So you dont have to rehue if some hues something you dont want them to :D not sure if there is one out there but i think it would be kool.
 

Thistle

Wanderer
Try using this:

public class xxxxxxx : BaseShirt, IDyable

(where x is the name of your clothing item)

then insert this in the constructable:

Code:
		public new bool Dye( Mobile from, DyeTub sender )
		{
			from.SendMessage( "You cannot dye this item." );		
			return false;
		}
 
Top