On LOTF Source
if you try to upgrade warrior Shield after Level 110 it will back to level 40 again.
this will fix it
in client.cs
Find
else if (CurrentNPC == 700)
{
if (Control == 1)
Under it Find
Replace it with
if you find it useful, press Thanks
:)
if you try to upgrade warrior Shield after Level 110 it will back to level 40 again.
this will fix it
in client.cs
Find
else if (CurrentNPC == 700)
{
if (Control == 1)
Under it Find
Code:
if (Other.ItemInfo(ItemId)[3] < 120)
{
RequiredMets = (byte)(Other.ItemInfo(ItemId)[3] / 10);
if (RequiredMets == 0)
RequiredMets = 1;
Code:
if ((Other.ItemInfo(ItemId)[3] < 120 && Other.ItemType2(ItemId) != 90) ||
(Other.ItemInfo(ItemId)[3] < 110))
{
RequiredMets = (byte)(Other.ItemInfo(ItemId)[3] / 10);
if (RequiredMets == 0)
RequiredMets = 1;
:)