You are viewing a potentially older version of this package. View all versions.
skytech6-CrimsonChatFilter-0.1.3 icon

CrimsonChatFilter

Automated Moderation for Server Chat

Date uploaded 2 years ago
Version 0.1.3
Download link skytech6-CrimsonChatFilter-0.1.3.zip
Downloads 150
Dependency string skytech6-CrimsonChatFilter-0.1.3

This mod requires the following mods to function

BepInEx-BepInExPack_V_Rising-1.733.2 icon
BepInEx-BepInExPack_V_Rising

BepInEx pack for V Rising. Preconfigured and includes Unity Base DLLs.

Preferred version: 1.733.2

README

CrimsonChatFilter

Server side only mod to filter unwanted words (or urls) from chat. The sending user will see their messages unfiltered, but all other clients will.

Installation

  • Install BepInEx

  • Install Bloodstone

  • Extract CrimsonChatFilter.dll into (VRising server folder)/BepInEx/plugins

  • Run server to generate (VRising server folder)/BepInEx/plugins/CrimsonChatFilter/filtered_words.json

  • Edit filtered_words.json to modify the words that should be filtered

The Filtered Words list supports literals and wildcards for example

  • "shit" will filter = "shit".
  • "shit*" will filter = "shit", "shitface".
  • "*shit" will filter = "shit", "fuckshit".
  • "*shit*" will filter = "shit", "shitface", "fuckshit".

Configurable Values

[CrimsonChatFilter]

## Enable or disable chat filtering
# Setting type: boolean
# Default value: true
EnableMode = true

## If enabled, others won't see the message, otherwise replaces filtered words with ****
# Setting type: boolean
# Default value: false
FullRemove = false

## Includes .com and server addresses in filter list
# Setting type: boolean
# Default value: true
FilterURLs = true

Support

Want to support my V Rising Mod development?

Donations Accepted with Ko-Fi

Or buy/play my games!

Train Your Minibot

Boring Movies

CHANGELOG

2.1.0

  • Renamed EnableMod -> ToggleMod setting
  • JSON Deserialization Error Handling
  • Readme update

2.0.0

  • Stable Release

1.1.3

  • Hotfix 5 Update
  • Refactored Filtered List

1.1.1

  • 1.1 Update

1.0.5

  • Refactored the Config File
  • Added CrimsonBanned Optional Support for Future Feature
  • Fixed critical bug

1.0.4

  • Removed Bloodstone Dependency
  • Added Optional CrimsonLog Support

0.1.3

  • Don't filter System messages

0.1.2

  • Added Literal Matching
  • Added Wildcard Matching

0.1.1

  • Added Domain Filtering
  • Added IP Address Filtering

0.1.0

  • Initial Release