Advertisement
MacWhinny

Untitled

Dec 3rd, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 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. database {
  5. prefix="ru_"
  6. # The default uri is: "jdbc:h2:%s/playerstats.db"
  7. # %s will be replaced by rankupper path.
  8. uri="jdbc:h2:%s/playerstats.db"
  9. }
  10. # Save to database every X minutes.
  11. database-save-interval=5
  12. # Date format to save data info of players.
  13. date-format="dd/MM/yyyy"
  14. # Enable debug messages?
  15. debug-messages=false
  16. exclude-groups=[
  17. "staff_group",
  18. "donor_group"
  19. ]
  20. # Available languages: EN-US, PT-BR
  21. language=EN-US
  22. # IMPORTANT: Change from "default" to exact group name the player need to is in to be promoted to next group
  23. ranked-groups {
  24. default {
  25. # Commands to execute when promote. These commands will depend on your permission plugin.
  26. # Available placeholders: {player}, {oldgroup}, {newgroup}
  27. execute-commands=[
  28. "lp user {player} parent unset {oldgroup}",
  29. "lp user {player} parent set {newgroup}",
  30. ]
  31. # Levels(not experience) needed to promote.
  32. levels-needed=#50
  33. # Broadcast the promote message to all players.
  34. # Available placeholders: {player}, {time}, {newgroup}
  35. message-broadcast="&a>> The player &6{player} &ahas played for &6{time} &aand now is rank {newgroup} of server."
  36. # Use some Minecraft Statistics to track for rankup.
  37. # This option will only accept LONG types for statistics.
  38. # See all statistics names here: https://jd.spongepowered.org/7.0.0/org/spongepowered/api/statistic/Statistics.html
  39. minecraft-statistics {
  40. "MOB_KILLS"=1
  41. }
  42. # Minutes played needed.
  43. minutes-needed=5
  44. # Money needed. Do not requires additional plugin.
  45. money-needed=0
  46. # Exact name of group to promote player on match the requirements.
  47. next-group=member
  48. }
  49. }
  50. # Interval to add online player times.
  51. update-player-time-minutes=1
  52. # Use uuids to store players stats on playerstats.conf?
  53. use-uuids-instead-names=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement