Guest User

Untitled

a guest
Jul 3rd, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.48 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. # Date format to save data info of players.
  27. date-format="dd/MM/yyyy"
  28. # setting for "days" output in time desc
  29. daysDisplay="day(s)"
  30. # If true a message will be output to console every time players are updated or checked.
  31. debug-mode=false
  32. # This is weird, but basically Luckperms is screwing with something, anyway, please put your BASE group here (luckperms default is "default"
  33. defaultGroup=evan
  34. # List of disabled groups
  35. disabled-groups=[
  36. admin,
  37. guard,
  38. owner
  39. ]
  40. # The message to display for a player in chat when they login to the server for the first time
  41. first-time-welcome-message="Welcome to our server {player}!"
  42. # setting for "hours" output in time desc
  43. hoursDisplay="hour(s)"
  44. # setting for "minutes" output in time desc
  45. minutesDisplay="minute(s)"
  46. # This is the prefix that will be put in place if a player has no prefix, leave "" to have no prefix fall-back
  47. prefix-fallback=Default
  48. # the command the plugin will execute via console to remove a rank from a player, valid entries: {player} and {group}
  49. rankdown-command="luckperms user {player} parent remove {group}"
  50. # The command the plugin will execute via console to add a rank to a player, valid entries: {player} and {group}
  51. rankup-command="luckperms user {player} parent add {group}"
  52. # Whether to remove all other player groups from player after rankUp (Using "rankdown-command")
  53. remove-previous-group=true
  54. # This is where all track config names are defined, please be careful here.
  55. track-configs=[
  56. "groups.conf",
  57. "patreons.conf"
  58. ]
  59. # The message to display for a player in chat when they login to the server
  60. welcome-message="Welcome back {player}, your current rank is {prefix}!"
  61. }
  62. databases {
  63. # You may choose between MySQL (Mariadb works too) or H2 (Hikari) databases for Player Stats storage!
  64. database=h2
  65. sqlAddress="localhost:3306"
  66. sqlDatabase=rankup
  67. sqlPassword=pass
  68. sqlTablePrefix="rankup_"
  69. sqlUsername=user
  70. }
  71. magibridge {
  72. # Message to discord when a player ranks up!
  73. # valid entries: {player}, {magibridge-next} and {magibridge-current}
  74. rankup-Message="Player {player} has left the {magibridge-current} group and joined the {magibridge-next} group! :smile:"
  75. # Set to true if you want the rankup message sent in the MC-Staff channel instead!
  76. # (Only possible if Magibridge is set to use Nucleus)
  77. send-in-staff=false
  78. }
  79. modules {
  80. databases=ENABLED
  81. economy=DISABLED
  82. magibridge=DISABLED
  83. purchase=DISABLED
  84. timing=ENABLED
  85. }
  86. timing {
  87. # Here you may set how you want to have the body of the top command display, accepted entries are same as check-message
  88. top-message=[
  89. "§6---[§2{player}§6]---",
  90. "§fRank: {rank}",
  91. "§f{timing-time}",
  92. "§fJoin date: §a{joindate}",
  93. "§6-----------"
  94. ]
  95. # This is where you may define how the bottom of the top message displays
  96. top-message-footer="§f----------------------------"
  97. # This is where you may define how the top of the top message displays
  98. top-message-head="§f------{Top Play Times}------"
  99. # The amount of minutes to pass between timing updates
  100. update-interval=1
  101. }
Add Comment
Please, Sign In to add comment