// This is the code for the hook we made earlier
        public static void DaemonSlayerTitles_KilledByEvent(BaseCreature creature, PlayerMobile player)
        {
            // Test for the creature type(s) that are valid for these titles
            if (creature is Daemon || creature is Balron || creature is ArchDaemon || creature is CrystalDaemon)
            {
                // First create an instance of your slayer title (since this routine is static)
                DaemonSlayerTitles titleSystem = new DaemonSlayerTitles();

                // Increment the counter and the core does the rest
                titleSystem.IncrementSlayerCount(player);
            }
        }
        // This is the code for the hook we made earlier
        public static void DaemonSlayerTitles_KilledByEvent(BaseCreature creature, PlayerMobile player)
        {
            // Test for the creature type(s) that are valid for these titles
            if (creature is Daemon || creature is Balron || creature is ArchDaemon || creature is CrystalDaemon)
            {
                // First create an instance of your slayer title (since this routine is static)
                DaemonSlayerTitles titleSystem = new DaemonSlayerTitles();

                // Increment the counter and the core does the rest
                titleSystem.IncrementSlayerCount(player);
            }
        }