Advertisement
Guest User

Untitled

a guest
Apr 3rd, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. # Stop counting time when a player is AFK? (Using Nucleus' API only!)
  2. # Setting this true without Nucleus (0.23.1+) installed will result in player's time not being counted.
  3. afk-support=false
  4. # Players need to use the command /ru check to rankup or let automatic?
  5. auto-rankup=true
  6. # Players need to use the command /ru rankup to rankup or /ru check will do this?
  7. check-rankup=true
  8. database {
  9. prefix="ru_"
  10. # This is the uri connection
  11. # Default H2 uri: "jdbc:h2:%s/playerstats.db;mode=MySQL" (%s will be replaced by rankupper path)
  12. # Mysql uri: "jdbc:mysql://localhost:3306/playerstats?useUnicode=true&characterEncoding=utf8&user=myuser&password=mypwd"
  13. uri="jdbc:h2:%s/playerstats.db;mode=MySQL"
  14. }
  15. # Save to database every X minutes.
  16. database-save-interval=5
  17. # Date format to save data info of players.
  18. date-format="dd/MM/yyyy"
  19. # Enable debug messages?
  20. debug-messages=false
  21. exclude-groups=[
  22. "staff_group",
  23. "donor_group"
  24. ]
  25. # Available languages: EN-US, PT-BR
  26. language=EN-US
  27. # IMPORTANT: Change from "default" to exact group name the player need to is in to be promoted to next group
  28. ranked-groups {
  29. group-default {
  30. # Commands to execute when promote. These commands will depend on your permission plugin.
  31. # Available placeholders: {player}, {oldgroup}, {newgroup}
  32. execute-commands=[
  33. "lp user {player} parent set default+"
  34. ]
  35.  
  36. # Broadcast the promote message to all players.
  37. # Available placeholders: {player}, {time}, {newgroup}
  38. message-broadcast="&a>> The player &6{player} &ahas played for &6{time} &aand now is rank {newgroup} of server."
  39. # Use the values of your scoreboard's Scores by name to rank up players.
  40. # Set to 0 or -1 to disable.
  41. minecraft-scoreboards {
  42. TeamBlue=-1
  43. }
  44. # Use some Minecraft Statistics to track for rankup.
  45. # This option will only accept LONG types for statistics.
  46. # See all statistics names here: https://jd.spongepowered.org/7.0.0/org/spongepowered/api/statistic/Statistics.html
  47. # Set to 0 or -1 to disable.
  48. minecraft-statistics {
  49. "MOB_KILLS"=-1
  50. }
  51. # Minutes played needed.
  52. minutes-needed=120
  53. # Money needed. Do not requires additional plugin.
  54. money-needed=0
  55. # Exact name of group to promote player on match the requirements.
  56. next-group=default+
  57. }
  58. }
  59. # Interval to add online player times.
  60. update-player-time-minutes=1
  61. # Use uuids to store players stats on playerstats.conf?
  62. use-uuids-instead-names=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement