Home Name
This section of the configuration controls how players can name their homes. It provides fine-grained control over name length, color codes, and content filtering using both word blacklists and regula
Regex Filtering – How It Works & How to Customize It
Regular expressions (regex) are powerful text-matching patterns used to block unwanted home names. While they can look complicated, this section will help you understand what the current regex does and how to add your own rules easily, even without advanced knowledge.
🔍 What the current regex does
This pattern is designed to block:
Domain names and server ads Examples it will block:
example.com
mycoolserver.net
play.server.gg
Swear word variations Specifically obfuscated forms of the word
fuck
, like:fúck
,fuçk
,fuqk
,fück
It uses case-insensitive matching ((?i)
), so it also blocks uppercase versions.
🧩 How to add your own regex (even if you're not a regex expert)
If you want to block something specific (e.g., names like "test123" or any word containing "hack"), you can simply extend the existing regex pattern using |
(OR).
Example: Block “test123” and anything starting with “hack”
💡
|
means OR 💡hack[a-z]*
blocks "hack", "hacker", "hacking", etc.
✍️ Tips for Regex Editing
Always escape backslashes (
\\.
instead of just.
) in YAML.Wrap the entire expression in quotes (
"..."
), especially when using special characters.
Last updated