blob: ccc95e36b60c03b5849052af18a7b7766859b97a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
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.skyhannimodule.SkyHanniModule
import at.hannibal2.skyhanni.utils.LorenzUtils
import at.hannibal2.skyhanni.utils.SoundUtils
import at.hannibal2.skyhanni.utils.StringUtils.matches
import at.hannibal2.skyhanni.utils.repopatterns.RepoPattern
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
import kotlin.time.Duration.Companion.seconds
@SkyHanniModule
object AuctionOutbidWarning {
private val outbidPattern by RepoPattern.pattern(
"auction.outbid",
"§6\\[Auction].*§eoutbid you by.*§e§lCLICK"
)
@SubscribeEvent
fun onChat(event: LorenzChatEvent) {
if (!LorenzUtils.inSkyBlock) return
if (!SkyHanniMod.feature.inventory.auctions.auctionOutbid) return
if (!outbidPattern.matches(event.message)) return
TitleManager.sendTitle("§cYou have been outbid!", 5.seconds, 3.6, 7.0f)
SoundUtils.playBeepSound()
}
}
|