Guest User

Untitled

a guest
Aug 1st, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.33 KB | None | 0 0
  1. core {
  2. # This is the template for the /ru check command, accepted entries are:
  3. # {player} - The Player's name (the one being checked)
  4. # {rank-next} - The Player's next rank
  5. # {rank} - The current rank of the player
  6. # {prefix} - The prefix of the player's current group
  7. # {timing-time} - How much time the player has been playing
  8. # {timing-next} - How much time until the player joins the next group
  9. # {economy-bal} - How much money the player has
  10. # {economy-next} - How much money the player needs to join the next group
  11. # {purchase-left} - How much money will be left after rank purchase
  12. # {joindate} - The date of when the player joined your server
  13. # {lastjoin} - When the player last joined the server
  14. # {purchase-button} - button used to purchase the next rank (needs purchase module)
  15. # {track} - The current track of the player.
  16. check-message=[
  17. "§6---[§2{player}§6]---",
  18. "§fRank: {rank}",
  19. "§fTrack: {track}",
  20. "§fPlay time: {timing-time}",
  21. "§fTime to next group: {timing-next}",
  22. "§fJoin date: §a{joindate}",
  23. "§fLast join: §9{lastjoin}",
  24. "§6-----------"
  25. ]
  26. # setting for "days" output in time desc
  27. daysDisplay="day(s)"
  28. # If true a message will be output to console every time players are updated or checked.
  29. debug-mode=false
  30. # This is weird, but basically Luckperms is screwing with something, anyway, please put your BASE group here (luckperms default is "default"
  31. defaultGroup=default
  32. # List of disabled groups
  33. disabled-groups=[
  34. owner,
  35. mod
  36. ]
  37. # The message to display for a player in chat when they login to the server for the first time
  38. first-time-welcome-message="Welcome trainer {player}!"
  39. # setting for "hours" output in time desc
  40. hoursDisplay="hour(s)"
  41. # setting for "minutes" output in time desc
  42. minutesDisplay="minute(s)"
  43. # This is the prefix that will be put in place if a player has no prefix, leave "" to have no prefix fall-back
  44. prefix-fallback=Default
  45. # the command the plugin will execute via console to remove a rank from a player, valid entries: {player} and {group}
  46. rankdown-command="luckperms user {player} parent remove {group}"
  47. # The command the plugin will execute via console to add a rank to a player, valid entries: {player} and {group}
  48. rankup-command="luckperms user {player} parent add {group}"
  49. # Whether to remove all other player groups from player after rankUp (Using "rankdown-command")
  50. remove-previous-group=false
  51. # This is where all track config names are defined, please be careful here.
  52. track-configs=[
  53. "groups.conf",
  54. "patreons.conf",
  55. "Mining.conf"
  56. ]
  57. # The message to display for a player in chat when they login to the server
  58. welcome-message="Welcome back {player}!"
  59. }
  60. databases {
  61. # You may choose between MySQL (Mariadb works too) or H2 (Hikari) databases for Player Stats storage!
  62. database=h2
  63. sqlAddress="localhost:3306"
  64. sqlDatabase=rankup
  65. sqlPassword=pass
  66. sqlTablePrefix="rankup_"
  67. sqlUsername=user
  68. }
  69. magibridge {
  70. # Message to discord when a player ranks up!
  71. # valid entries: {player}, {magibridge-next} and {magibridge-current}
  72. rankup-Message="Player {player} has left the {magibridge-current} group and joined the {magibridge-next} group! :smile:"
  73. # Set to true if you want the rankup message sent in the MC-Staff channel instead!
  74. # (Only possible if Magibridge is set to use Nucleus)
  75. send-in-staff=false
  76. }
  77. modules {
  78. databases=ENABLED
  79. economy=ENABLED
  80. magibridge=DISABLE
  81. purchase=ENABLED
  82. timing=DISABLE
  83. }
  84. timing {
  85. # Here you may set how you want to have the body of the top command display, accepted entries are same as check-message
  86. top-message=[
  87. "§6---[§2{player}§6]---",
  88. "§fRank: {rank}",
  89. "§f{timing-time}",
  90. "§fJoin date: §a{joindate}",
  91. "§6-----------"
  92. ]
  93. # This is where you may define how the bottom of the top message displays
  94. top-message-footer="§f----------------------------"
  95. # This is where you may define how the top of the top message displays
  96. top-message-head="§f------{Top Play Times}------"
  97. # The amount of minutes to pass between timing updates
  98. update-interval=1
  99. }
Add Comment
Please, Sign In to add comment