A highly configurable Discord moderation tool.
Find a file
2024-07-03 23:16:28 -07:00
.config Switch to .NET 8 2024-06-08 19:00:10 -07:00
.vscode Switch to .NET 8 2024-06-08 19:00:10 -07:00
Common Implement style suggestions 2024-06-08 21:07:35 -07:00
Data Recognize display names in username cache 2023-11-14 19:24:46 -08:00
Modules Implement suggestions; minor command refactoring 2024-06-08 21:08:03 -07:00
Services Implement style suggestions 2024-06-08 21:07:35 -07:00
.editorconfig Switch to .NET 8 2024-06-08 19:00:10 -07:00
.gitignore Change build settings, fix minor problems 2022-06-18 00:01:42 -07:00
Configuration.cs Implement style suggestions 2024-06-08 21:07:35 -07:00
ConfigurationSchema.json Update config schema and example 2022-12-04 17:09:41 -08:00
COPYING Switch license to GPLv3 2024-07-03 22:59:14 -07:00
ModuleLoader.cs Implement style suggestions 2024-06-08 21:07:35 -07:00
ModuleLoadException.cs Implement style suggestions 2024-06-08 21:07:35 -07:00
Program.cs Merve instance and guild configs into single file 2022-12-04 16:30:50 -08:00
Readme.md Reorganized project 2022-07-20 18:55:08 -07:00
RegexBot.csproj Switch to .NET 8 2024-06-08 19:00:10 -07:00
RegexbotClient.cs Merve instance and guild configs into single file 2022-12-04 16:30:50 -08:00
RegexbotModule.cs Implement style suggestions 2024-06-08 21:07:35 -07:00
RegexbotModuleAttribute.cs Reorganized project 2022-07-20 18:55:08 -07:00
SampleConfiguration.json Update config schema and example 2022-12-04 17:09:41 -08:00

RegexBot

ko-fi

RegexBot is a Discord moderation bot framework of sorts, inspired by the terrible state of Discord moderation tools a few years ago combined with my tendency to overengineer things until they into pseudo-libraries of their own right.

This bot includes a number of features which assist in handling the tedious details in a busy server with the goal of minimizing the occurrence of hidden details, arbitrary restrictions, or annoyingly unmodifiable behavior. Its configuration allows for a very high level of flexibility, ensuring that the bot behaves in accordance to the exact needs of your server without compromise.

Features

  • Create rules based on regular expression patterns
    • Follow up with custom responses ranging from sending a DM to disciplinary action
  • Create pattern-based triggers to provide information and fun to your users
    • Adjustable rate limits per-trigger to prevent spam
    • Specify multiple different responses to display at random when triggered
    • Make things interesting by setting triggers that only activate at random
  • Individual rules and triggers can be whitelisted or blacklisted per-user, per-channel, or per-role
    • Exemptions to these filters can be applied for additional flexibility
  • High detail logging and record-keeping prevents gaps in moderation that might occur with large public bots.

Modules

As mentioned above, this bot also serves as a framework of sorts, allowing others to write their own modules and expand the bot's feature set ever further. Its benefits are:

  • Putting together disparate bot features under a common, consistent interface.
  • Reducing duplicate code potentially leading to an inconsistent user experience.
  • Versatile JSON-based configuration.

User documentation

Coming soon?