Hello!
Getting issue with runic tools.
In ResourceInfo.cs all is normal,valorite hammer is setup to 5 props min,and 5 props max.
Some weapons getting 4 properties instead of 5,some one with this issue?
Here the code of the runic craft in valorite:

C#:
 //Valorite info runic
            CraftAttributeInfo valorite = Valorite = new CraftAttributeInfo();

            valorite.ArmorPhysicalResist = 5;
            valorite.ArmorColdResist = 4;
            valorite.ArmorPoisonResist = 4;
            valorite.ArmorEnergyResist = 4;
            valorite.ArmorDurability = 50;
            valorite.WeaponFireDamage = 10;
            valorite.WeaponColdDamage = 20;
            valorite.WeaponPoisonDamage = 10;
            valorite.WeaponEnergyDamage = 20;
            valorite.RunicMinAttributes = 5;
            valorite.RunicMaxAttributes = 5;
            if (Core.ML)
            {
                valorite.RunicMinIntensity = 85;
                valorite.RunicMaxIntensity = 100;
            }
            else
            {
                valorite.RunicMinIntensity = 50;
                valorite.RunicMaxIntensity = 100;
            }
And here a screen of a weapon crafted with this runic tool.Thank you so much!
 

Attachments

  • Sin título.png
    Sin título.png
    43.4 KB · Views: 7
Back