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!

Dressing human mobs.

zimm

Wanderer
Dressing human mobs.

Mmm'kay now... This is pretty easy.

If you want to dress a human monster be sure to add this right after where his/her name is located with bodyvalue.
Heres example...
Code:
		{
			Body = 0x190;
			Name = "Example";

Now under that your gonna want to add this.

Code:
			LeatherGloves gloves = new LeatherGloves();
			gloves.Hue = 1109;
			AddItem( gloves );

Now it should look like this.

Code:
		{
			Body = 0x190;
			Name = "Example";

			LeatherGloves gloves = new LeatherGloves();
			gloves.Hue = 1109;
			AddItem( gloves );
                  {

No more birthday suit! :D
 

Pyro Man

Sorceror
OMFG THANK YOU!! I've looked for hours and each time i find something it doesn't work!! :D

Keep givin advice bro!

;)
 
Top