TPS
Module info | |
---|---|
Configuration | tps in config.yml |
Manager | TPSManager |
Support | 1.8+ |
Free version | ✔ |
Proxy-configurable | ❌ |
This module allows players to check the server's current TPS and offers custom placeholders. It is possible to configure ranges to colorize the TPS based on its value.
Setup
The following snippet of code represents and explains the TPS's configuration.
# ...ping's settings...
tps:
update-timeout-ms: 5000 # timeout between updates, in milliseconds
20-tps-cap:
enabled: false # whether to cap TPS to 20.0
add-wildcard: false # whether to add * before the number if it exceeds 20.0
enable-command: true # whether to override Spigot's /tps (not applicable on Sponge)
qualities:
excellent: 19.5 # first quality's minimum TPS (19.5+)
great: 19 # second quality's minimum TPS (19.0-19.4̅9)
good: 18
poor: 17
bad: 16 # ... (16.0-16.̅9)
unplayable: 15 # ... (0-15.̅9)
# ...vanish's settings...
144
145
146
147
148
149
150
151
152
153
154
155
156
157
The first and last qualities determine the first and last TPS ranges (19.5+, 0-15.̅9).
Adding qualities
To add a new quality or range, you just need to specify its ID and its minimum TPS.
# ...TPS's settings...
qualities:
new-quality: 19.7
# ...default qualities...
# ...vanish's settings...
2
3
4
5
NOTE
Order does matter in the configuration above: make sure to insert new qualities in the correct place; example: 19.7 > 19.5, so put it first.
Once done, open messages.yml
and any custom messages files present and insert the new quality's ID, color and text at tps-qualities
:
# ...ping's messages...
tps-qualities:
# ...default qualities...
new-quality: '&9' # new quality's ID and color
# ...vanish's messages...
628
629
630
631
/tps
command
It is possible to check the server's current TPS using the /tps
command:
Refer to the Getting started/Commands/Misc page for more info.
ChatPlugin - A complete yet lightweight plugin which handles just too many features!
This wiki is currently updated to version 1.9.10.
© 2024 Remigio07
Please report any mistakes and misspellings as described at Home/Reporting issues.