Advertisement
Guest User

Untitled

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