QuickNick
The QuickNick mod provides a flexible system for setting nicknames on your server. You can configure it as a simple way to change names or create a more complex configuration depending on your needs.
Configuration Settings
#
# QNick configuration guide
#
# Enables or disables the nick command (true = enabled, false = disabled)
# May be useful when using a plugin that works with QNickAPI
command: true
# Changes a user's name to their nickname (if found) on join (true = enabled, false = disabled)
# May be useful when using a plugin that works with QNickAPI
changenameonjoin: true
# SQL, if true uses an SQL database to store nicknames
# Set to false to use PDC (see explanation below)
sql: false
# These options only apply if SQL is enabled
sqloptions:
host: "127.0.0.1"
port: 3306
db: "yourDB"
username: "username"
password: "password"
#
# Debug settings
#
# Enable/disable API access (true = enabled, false = disabled)
# May be useful for server owners when debugging plugin issues
apienabled: true
What is PDC?
PDC (PersistentDataContainer) allows QuickNick to save user nicknames in their .dat files. However, this means that nickname synchronization between different servers is impossible when using this storage method.
What is SQL?
SQL represents a data storage system in a database that can be accessed from multiple servers. If you have multiple servers connected to the same SQL server, then nicknames can be synchronized between them.