Compatibility
Minecraft: Java Edition
1.20–1.20.4
1.19.x
1.18.x
1.17.x
1.16.x
1.15.x
1.14.x
1.13.x
1.12.x
Platforms
Bukkit
Supported environments
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Links
Creators
Details
Licensed MIT
Published 5 months ago
Updated 5 months ago
Plugin Description
Uses custom regular expressions to determine if a player's username meets the requirements when they log into the server.
Configuration File
# Presets
# Only allow English letters (uppercase and lowercase), numbers, and underscores: ^[a-zA-Z0-9_]+$
# Only allow Chinese characters: ^[\u4e00-\u9fa5]+$
# Allow Chinese characters, English letters (uppercase and lowercase), numbers, and underscores: ^[\u4e00-\u9fa5a-zA-Z0-9_]+$
# Only allow numbers: ^\d+$
# No restrictions: .*
usernameRegex: "^[a-zA-Z0-9_]+$"
kickMessage: "&cYour username contains disallowed characters. Please change it and try again."