public static bool CheckArtifactChance(Mobile m, BaseCreature bc)
        {
            if (!Core.ML || bc is BasePeerless) // Peerless drops to the corpse, this is handled elsewhere
            {
                return(false);
            }

            return(Paragon.CheckArtifactChance(m, bc));
        }
示例#2
0
        public static bool CheckArtifactChance(Mobile m, BaseCreature bc)
        {
            if (!Core.ML)
            {
                return(false);
            }

            return(Paragon.CheckArtifactChance(m, bc));
        }
示例#3
0
        public static bool CheckArtifactChance(Mobile m, BaseCreature bc)
        {
            if (bc == null || !bc.EraML)
            {
                return(false);
            }

            return(Paragon.CheckArtifactChance(m, bc));
        }
示例#4
0
        public static bool CheckArtifactChance(Mobile m, BaseCreature bc)
        {
            XmlParagon xa = GetXmlParagon(bc);

            if (xa != null)
            {
                return(xa.XmlCheckArtifactChance(m, bc));
            }
            else
            {
                return(Paragon.CheckArtifactChance(m, bc));
            }
        }