Frequently Asked Questions (FAQ) ❓
Find answers to common questions about Tub's Status Plugin.
Pro Tip!
Before asking, ensure you've checked:
- The latest plugin version.
- Your
config.yml
for errors. - Server console logs for
[TSP]
messages. The Troubleshooting Guide is also a great resource!
Q: How do I use color codes or formatting in my status?
You can use standard Minecraft `&` codes if you have the appropriate `StatusPlugin.formatting.< type>` permission. For example: * `&c` for Red, `&a` for Green, `&l` for Bold, `&o` for Italic. * To set a status like "&cImportant &lNotice", you would type: `/status &cImportant&_&lNotice` * Use `&_` to represent a space, as regular spaces might be trimmed by the command parser depending on your setup. * View all codes with `/status help colors`.Q: My status is getting cut off. Why?
This is likely due to the `maxStatusLength` setting in `config.yml` (default is 15 characters). This limit applies to the *displayed* characters, not including color codes or PlaceholderAPI placeholders. An admin can change this limit with `/status setmaxlength < length>`.Q: Why isn't my status showing up in the tab list or chat?
Check these settings in `config.yml`: * `changeTablistNames: true` (for tab list display) * `chatFormatter: true` (for status in chat messages) If these are true and it's still not working, ensure no other plugin is overriding tab list or chat formatting with higher priority. Also, tab list updates might sometimes require a player relog or server restart to fully propagate for all clients. The plugin does attempt to refresh tab names periodically.Q: Can I use PlaceholderAPI placeholders in my status?
Yes! If PlaceholderAPI is installed on your server and you have the `StatusPlugin.placeholders` permission, you can include PAPI placeholders in your status message (e.g., `/status My balance: %vault_eco_balance%`). These will be parsed and displayed.Q: How does the LuckPerms prefix/suffix integration work?
If LuckPerms is installed and you have the `StatusPlugin.placeholders` permission, you can use `%LP_prefix%` and `%LP_suffix%` in your status message. The plugin will replace these with your current LuckPerms prefix and suffix. For example: `/status %LP_prefix% &7MyText &f%LP_suffix%`.Q: What is "Group Mode" and how do I use it?
If `groupMode: true` is set in `config.yml`: * Players cannot set custom statuses with `/status < message>`. * They must choose a status from predefined groups using `/group < groupname>` (or `/status group < groupname>`). * Groups are defined in `config.yml` under `statusGroups`. * To use a specific group, a player needs `StatusPlugin.group.set` AND `StatusPlugin.group.set.< groupname>` permissions.Q: Do statuses save if the server restarts?
Yes, player statuses are saved to `plugins/TubsStatusPlugin/statuses.yml` and are reloaded when the server starts or when `/status reload` is used.Q: How often do PlaceholderAPI placeholders in statuses update in the tab list?
The plugin schedules a task to refresh player display names (which includes parsing PAPI placeholders in statuses) in the tab list approximately every 30 seconds (600 game ticks) by default if `changeTablistNames: true`.Q: What if I use a color code I don't have permission for?
The `StatusManager` attempts to strip formatting codes for which the player does not have the corresponding `StatusPlugin.formatting.< type>` permission. For example, if you try to use `&c` (red) without `StatusPlugin.formatting.color`, the `&c` might be removed, and the text will appear in the default color.Still stuck? Visit our community discord for help!