View Single Post
Old 04-23-2006, 04:08 PM   #2 (permalink)
Thistle
Forum Expert
 
Thistle's Avatar
 
Join Date: Mar 2005
Posts: 1,155
Default

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;
		}
Thistle is offline   Reply With Quote