i have checked the FAQ and i couldnt find anything about help on changing ores.
anyway to add new ores (and add them to the smithing gump etc) i gotta know how to do it first (also checked this in search but to no avail). I looked at the OreInfo script file and i believe i can start doing it........... observe
namespace Server.Items
{
public enum CraftResource
{
None = 0,
Iron = 1,
DullCopper,
ShadowIron,
Copper,
Bronze,
Gold,
Agapite,
Verite,
Valorite,
<insert new ores>,
and
<new ore>.ArmorPhysicalResist = x;
<new ore>.ArmorColdResist = x;
<new ore>.ArmorPoisonResist = x;
<new ore>.ArmorEnergyResist = x;
<new ore>.ArmorDurability = x;
<new ore>.WeaponFireDamage = X;
<new ore>.WeaponColdDamage = X;
<new ore>.WeaponPoisonDamage = x;
<new ore>.WeaponEnergyDamage = x;
<new ore>.RunicMinAttributes = x;
<new ore>.RunicMaxAttributes = x;
<new ore>.RunicMinIntensity = x;
<new ore>.RunicMaxIntensity = x;
and
new CraftResourceInfo( 0x<insert hex>, <insert hue>, "<insert ore>", CraftAttributeInfo.<insert ore>, CraftResource.<ore>,
typeof( <ore>Ingot ), typeof( <ore>Ore ), typeof(
<ore>Granite ) ),
and
public static readonly OreInfo <new ore> = new OreInfo( x,
0x<insert hex>, "<ore name>" );
im not sure what else to change. plz help
(when this is sorted i also require assistance in getting the new ores in the smithing gump, as i cant seem to find it in the gumps folder.)
|