From b065fc1113977529831be5eab587c1612efdde79 Mon Sep 17 00:00:00 2001 From: CarsCupcake <84076092+CarsCupcake@users.noreply.github.com> Date: Mon, 19 Feb 2024 15:50:11 +0100 Subject: Low Quiver Notification. #880 --- .../features/inventory/QuiverNotification.kt | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/main/java/at/hannibal2/skyhanni/features/inventory/QuiverNotification.kt (limited to 'src/main/java/at/hannibal2/skyhanni/features') diff --git a/src/main/java/at/hannibal2/skyhanni/features/inventory/QuiverNotification.kt b/src/main/java/at/hannibal2/skyhanni/features/inventory/QuiverNotification.kt new file mode 100644 index 000000000..40e51c226 --- /dev/null +++ b/src/main/java/at/hannibal2/skyhanni/features/inventory/QuiverNotification.kt @@ -0,0 +1,23 @@ +package at.hannibal2.skyhanni.features.inventory + +import at.hannibal2.skyhanni.SkyHanniMod +import at.hannibal2.skyhanni.data.TitleManager +import at.hannibal2.skyhanni.events.LorenzChatEvent +import at.hannibal2.skyhanni.utils.SoundUtils +import at.hannibal2.skyhanni.utils.StringUtils.matchMatcher +import at.hannibal2.skyhanni.utils.StringUtils.removeColor +import at.hannibal2.skyhanni.utils.repopatterns.RepoPattern +import net.minecraftforge.fml.common.eventhandler.SubscribeEvent +import kotlin.time.Duration.Companion.seconds + +object QuiverNotification { + private val quiverChatPattern by RepoPattern.pattern("inventory.quiver.chat.low", "§cYou only have (?.*) arrows left in your Quiver!") + @SubscribeEvent + fun onChatMessage(event: LorenzChatEvent) { + if (!SkyHanniMod.configManager.features.inventory.quiverAlert) return + quiverChatPattern.matchMatcher(event.message) { + TitleManager.sendTitle("§c${group("arrowsLeft")} arrows left!", 3.seconds, 3.6, 7f) + SoundUtils.repeatSound(100, 30, SoundUtils.plingSound) + } + } +} -- cgit