A simple yet useful plugin to improve your chat!
FEATURES:
COMING SOON:
Supports YAML, MySQL and SQLite storage and cross server synchronization (with MySQL)
FEATURES:
- Mute players indefinetly or for a specific amount of time
- Lockdown the server chat indefinetly or for a specific amount of time
- Clear the server chat
COMING SOON:
- Chat cooldown
Supports YAML, MySQL and SQLite storage and cross server synchronization (with MySQL)
- /chatutils - Show a list of commands - Permission: chatutils.help
- /mute <player> [time] [reason] - Mute a player - Permission: chatutils.mute
- /unmute <player> - Unmute a player - Permission: chatutils.mute
- /lockdown [time] - Lockdown the server chat - Permission: chatutils.lockdown
- /unlock - Unlock the server chat - Permission: chatutils.lockdown
- /clearchat - Clear the server chat - Permission: chatutils.clearchat
Writing in chat when the chat is locked:
Writing in chat when you are muted:
Writing in chat when you are muted:
YAML:
# storage-type: The type of storage to use. 0: YAML, 1: MySQL, 2: SQLite
storage-type: 0
# sql-host: The MySQL host
sql-host: localhost
# sql-port: The MySQL port
sql-port: 3306
# sql-database: The MySQL database
sql-database: chatutils
# sql-username: The MySQL username
sql-username: root
# sql-password: The MySQL password
sql-password: ''
YAML:
# player-muted: Sent when a player is muted
player-muted: '&7{player} has been muted for &c{time}&7. Reason: &c{reason}'
# player-unmuted: Sent when a player is unmuted
player-unmuted: '&7{player} has been unmuted.'
# chat-locked: Sent when the chat is locked
chat-locked: '&7The chat has been locked for &c{time}&7.'
# chat-unlocked: Sent when the chat is unlocked
chat-unlocked: '&7The chat has been unlocked.'
# muted: Sent when a player is muted, and they try to chat
muted: '&cYou are muted!'
# locked: Sent when the chat is locked, and a player tries to chat
locked: '&cThe chat is locked!'