ok i didnt know this /eqlow command makes your item to a lower level take note that this is not a release
/eqlow
so anyway to make it /eqhigh?
/eqlow
so anyway to make it /eqhigh?
if (Cmd[0] == "/eqlow")
{
for (byte i = 1; i < 9; i++)
if (i != 7)
{
Game.Item I = GC.MyChar.Equips.Get(i);
if (I.ID != 0)
{
Game.ItemIDManipulation IDM = new NewestCOServer.Game.ItemIDManipulation(I.ID);
IDM.HighestLevel(i);//try write IDM. only and find the exactly statement for it
I.ID = IDM.ToID();
GC.AddSend(Packets.AddItem(I, i));
}
}
}
if (Cmd[0] == "/eqlow")
{
for (byte i = 1; i < 9; i++)
if (i != 7)
{
Game.Item I = GC.MyChar.Equips.Get(i);
if (I.ID != 0)
{
Game.ItemIDManipulation IDM = new NewestCOServer.Game.ItemIDManipulation(I.ID);
IDM.IncreaseLevel();
I.ID = IDM.ToID();
GC.AddSend(Packets.AddItem(I, i));
}
}
}