Перейти к содержимому
Mineforgian

NotifMod

Get notifications when certain things happen!

16K загрузок73 подписчиковMITfabric

Обновлён 29 марта 2026 г. · опубликован 25 июня 2022 г.

NotifMod

A client-side Fabric mod that gives you notifications when certain things happen!
The notifications can be in the form of a sound, a message (chat/actionbar/title) or both.

The mod is highly configurable and currently supports the following events:

  • Equipment durability low
  • Unbreakable equipment stopped working (elytra)
  • Equipment fully repaired (mending)
  • Chat message
  • Chat username mention
  • Able to sleep
  • Your lead broke
  • Player joined server
  • Player left server
  • Game's done loading
  • World's done loading (when initially connecting)

It can also start a timer and remind you when the time's up (useful for things like breeding animals).

Dependencies

This mod depends on:

The mod will function without Mod Menu, but you won't be able to access the
in-game configuration screen, so it's recommended to include it.

Notification sounds

The mod comes with a few simple sounds you can use if you want. However, you can use any sound
in the game, or even add your own, by replacing NotifMod's sounds using a simple resource pack!

Notification filters

In the mod's settings, you'll notice that you can specify what chat messages give you notifications, using regular expressions (aka RegEx).
If you don't know what a regular expression is, it's basically a series of characters that describe a pattern to look for (match).
They're really powerful and can describe a ton of things and since this mod is meant to be highly configurable, they're perfect for the job.
If you really want to learn them and do something more complicated, you can find a lot of info or test them online, pretty easily (to get an idea, watch this and check out RegExr)!

I'll go over some very common uses of regex in this mod, to give you an idea of how to do simple things.

Getting mention notifications for many different variations of your name

If people sometimes refer to me by my username, but sometimes call me "awex", "alex", or "baka", I can use this regex: .*(\p|awex|alex|baka).*

This mod will replace any occurrences of \p with your username, before actually interpreting the regex.
We can add as many names/words as we want, inside the parentheses, separated by |.

There's a small potential issue with this: if someone says "alexa", I'll still get a notification.
To make it only consider it a mention if it's a full word, without any extra letters, we can use this: (.*\W)?(\p|awex|alex|baka)(\W.*)?

This change tells it that if there's any other characters around it, the ones immediately next to it have to be anything but letters or numbers.

The mod can also color your name, when mentioned. You'll have to use a regex pattern again, but you most likely want it to be pretty similar to the filter one, from above.
If you wanted to color different variations of your name, you could basically just omit the .* parts, e.g.: \p|awex|alex|baka

Getting notifications for private messages

This can be a bit more difficult, since private messages work using a server plugin and how it works will be different according to the plugin being used by the server etc.
The plugin might be using the "system" channel instead of "chat", so you'll have to make sure you're filtering the right channel too.
The rest comes down to what incoming private messages look like. You'll have to write the regex accordingly.
As an example, if the format of incoming messages is this: [Joe -> You] Hello!
You can use something like this: .*[.+ -> You] .*
You can also use it together with other things. For example, if this is for the "system" channel, but you also want to get notifications for messages coming from the server console (they'd start with [Server] and use the "system" channel too), you can combine it the same way we did with names above: ([Server] .*)|(.*[.+ -> You] .*)

Update: as of 1.19, chat messages coming from the server console do not use the "system" channel anymore, they're now on the "chat" channel.
Update 2: as of 1.19.1, chat messages coming from the server console use the "system" channel again and don't include the "[server]" part.

Issues

Please report any issues on GitHub, thanks!

Версии

ВерсияКаналИграЗагрузчикиДатаСкачать
1.7Релиз26.1, 26.1.1, 26.1.2fabric29 марта 2026 г.Скачать (432 КБ)
1.6.4Релиз1.21.11fabric21 февраля 2026 г.Скачать (430 КБ)
1.6.3.1Релиз1.21.9, 1.21.10fabric20 февраля 2026 г.Скачать (431 КБ)
1.6.2Релиз1.21.6, 1.21.7, 1.21.8fabric20 февраля 2026 г.Скачать (431 КБ)
1.6.1.1Релиз1.21.4, 1.21.5fabric20 февраля 2026 г.Скачать (430 КБ)
1.6.0.1Релиз1.21.2, 1.21.3fabric20 февраля 2026 г.Скачать (430 КБ)
1.5.4.1Релиз1.21, 1.21.1fabric20 февраля 2026 г.Скачать (429 КБ)
1.5.3.1Релиз1.20.6fabric20 февраля 2026 г.Скачать (429 КБ)
1.5.2.1Релиз1.20.3, 1.20.4fabric20 февраля 2026 г.Скачать (430 КБ)
1.5.1.1Релиз1.20.2fabric20 февраля 2026 г.Скачать (440 КБ)
1.6.1Релиз1.21.4, 1.21.5fabric15 января 2025 г.Скачать (430 КБ)
1.6Релиз1.21.2, 1.21.3fabric15 января 2025 г.Скачать (430 КБ)
1.5.5Релиз1.21, 1.21.1fabric15 января 2025 г.Скачать (430 КБ)
1.5.4Релиз1.21, 1.21.1fabric23 сентября 2024 г.Скачать (429 КБ)
1.5.3Релиз1.20.6fabric23 сентября 2024 г.Скачать (429 КБ)

Показаны последние 15 из 40 версий.

Ченджлог

1.7Релиз26.1, 26.1.1, 26.1.2 · 29 марта 2026 г.

Updated to 26.1!

1.6.4Релиз1.21.11 · 21 февраля 2026 г.

Updated to 1.21.11!

1.6.3.1Релиз1.21.9, 1.21.10 · 20 февраля 2026 г.

Updated to 1.21.9!
(since 1.6.3: small patch to only accept MC >=1.21.9)

1.6.2Релиз1.21.6, 1.21.7, 1.21.8 · 20 февраля 2026 г.

Updated to 1.21.6!

1.6.1.1Релиз1.21.4, 1.21.5 · 20 февраля 2026 г.

Patch world load notification chunk load trigger to work when "Chunks to notify at" setting is set to >0.

1.6.0.1Релиз1.21.2, 1.21.3 · 20 февраля 2026 г.

[Patch backport for 1.21.3] Patch world load notification chunk load trigger to work when "Chunks to notify at" setting is set to >0.

1.5.4.1Релиз1.21, 1.21.1 · 20 февраля 2026 г.

[Patch backport for 1.21] Patch world load notification chunk load trigger to work when "Chunks to notify at" setting is set to >0.

1.5.3.1Релиз1.20.6 · 20 февраля 2026 г.

[Patch backport for 1.20.6] Patch world load notification chunk load trigger to work when "Chunks to notify at" setting is set to >0.

Комментарии

Загружаем…