NotifMod

Quick rating

Community listing page, reviews here may not be monitored by the author.

NotifMod

By 811AlexOwner

No reviews yet

Client-side Fabric mod that gives you notifications when certain things happen!

QoL & Tweaks
Mod Loaders
Fabric
Minecraft

Community voices

Reviews

List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Show per page
10
25
50
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Where It Runs
Client Only

Runs entirely on the client. Works on vanilla servers.

About

Project Details

Type
Mod
License
MIT License
Latest Version
NotifMod-1.7.jar

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

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, not here, thanks!

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!

Screenshots

Gallery

This project has no gallery images yet.

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

~33,000
Total Downloads
CurseForge
~17,000
Modrinth
~15,000
Last Updated
CurseForge
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works