DarkEmu_GameServer.Systems.CheckItemLevel C# (CSharp) Méthode

CheckItemLevel() public static méthode

public static CheckItemLevel ( byte level, int itemID ) : bool
level byte
itemID int
Résultat bool
        public static bool CheckItemLevel(byte level, int itemID)
        {
            #region Item Level
            bool bln = false;
            if (Data.ItemBase[itemID].Level <= level) bln = true;
            return bln;
            #endregion
        }
Systems