Item Level CoEmu

08/20/2009 02:34 1supertao#1
My MagicArtisan level's gear higher then you are... what is it i have to change... something is this region.. correct?
Code:
                                                if (CSocket.Client.Level <= Calculation.NextEquipLevel(itm.ItemID))
                                                {
                                                    itm.ItemID = Calculation.NextEquipLevel(itm.ItemID);
                                                }
                                                else
                                                {
                                                    Text("You need to level up some more before you can level up this item.", CSocket);
                                                    Link("Wow sorry bye.", 255, CSocket);
                                                    End(CSocket);
                                                }
                                            }