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!

A couple questions about custom items.

jamisoncrzy

Wanderer
I keep trying to create a weapon using the method of copying an already existing weapon and editing it. If I dont change the ID in the script the the item name dont change in-game. But if I do change the ID the name changed to basically an error code in-game.
How do I make it so the Item title is what I want it to be in-game?

Is there a faster way of creating items? Becuase I need to create alot. :p
 

pooka01

Sorceror
either Name = "yourname"; in the constructor or
public override String DefaultName{ get{ return "yourname"; } }
in the header.
 
Top