Have you ever wanted to display your status or wanna show if you are in to Role Play right now?
You can define statuses in the config.yml which the server members can select and will be displayed in the chat, playerlist and/or the join and quit message.
All of this is customizable in the config.yml.
Usage Type /status or /st and a list will show up with the configured statuses.
Display It can be displayed in the PlayerList (Config: show-in-tablist)
Also possible to display it when a player joins or quits the server. (Config: show-in-chat)
The plugin also can add a Prefix to any message
Config.yml Here you can define what the Plugin can and will do. Be aware that the LuckPerms Support isnt done yet. Visit this Page to a later moment.
Code (YAML):
[/SIZE
][/FONT
] # StatusPlugin made by Fynnyx default: # Enable if the player should get always a default status when the player joins the server use-default-on-join: false
#Set the default status. It will also be set if the player doesn't have a status set. default-status: 'afk'
# Define the statuses. The root Element is the selection in the command. # The color is defined by the default minecraft colors. statuses:
afk:
prefix: AFK
color: 8
# To color the text use the & symbol # You can use the following placeholders: # %username% - The username of the player # %status% - The status of the player # %luckperms% - The luckperms group of the player
# Enable the tablist from this plugin. (Luckperms compatible) show-in-tablist: true
tablist-format: '&7
[%status% &r%username% - &r%luckperms%&7]'
# Enable the chat format from this plugin. (Luckperms compatible) # %message% - display the message show-in-chat: true
chat-format: '&7
[%status% &r%username% - &r%luckperms%&7] &r%message%'
# Enable the join message from this plugin. (Luckperms compatible) show-join-leave-message: true
join-message-format: '&7
[%status% &r%username% - &r%luckperms%&7] &ejoined the server' leave-message-format: '&7
[%status% &r%username% - &r%luckperms%&7] &eleft the server' [FONT=Arial
][SIZE=4
]