AdamD
Member
Hi all!
I've been making some modifications to my old (non ServUO) copy of RunUO, and one thing I'd like to do, is enable the ability to enhance Artifacts, using the special ores/metals.
When trying to enhance, the message that's being called is:
case EnhanceResult.BadItem: message = 1061011; break; // You cannot enhance this type of item with the properties of the selected special material.
I "think" the section that deals with the artifacts, is this:
if (craftItem == null || craftItem.Resources.Count == 0)
return EnhanceResult.BadItem;
As I can't find any other section in enhance.cs, which BadItem might apply to.
Anyone know how I might be able to enable it for artifacts?
I've been making some modifications to my old (non ServUO) copy of RunUO, and one thing I'd like to do, is enable the ability to enhance Artifacts, using the special ores/metals.
When trying to enhance, the message that's being called is:
case EnhanceResult.BadItem: message = 1061011; break; // You cannot enhance this type of item with the properties of the selected special material.
I "think" the section that deals with the artifacts, is this:
if (craftItem == null || craftItem.Resources.Count == 0)
return EnhanceResult.BadItem;
As I can't find any other section in enhance.cs, which BadItem might apply to.
Anyone know how I might be able to enable it for artifacts?