Guest User

Untitled

a guest
Jan 27th, 2018
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.30 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 the CG Network 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. "ranks.conf"
  52. ]
  53. # The message to display for a player in chat when they login to the server
  54. welcome-message="Welcome back {player}, your current rank is {prefix}!"
  55. }
  56. databases {
  57. # You may choose between MySQL (Mariadb works too) or H2 (Hikari) databases for Player Stats storage!
  58. database=h2
  59. sqlAddress="localhost:3306"
  60. sqlDatabase=rankup
  61. sqlPassword=pass
  62. sqlTablePrefix="rankup_"
  63. sqlUsername=user
  64. }
  65. economy {
  66. # The amount of minutes to pass between economy checks
  67. update-interval=1
  68. }
  69. magibridge {
  70. # Message to discord when a player ranks up!
  71. # valid entries: {player}, {magibridge-next} and {magibridge-currant}
  72. rankup-Message="Player {player} has left the {magibridge-currant} 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=ENABLED
  81. timing=ENABLED
  82. }
  83. timing {
  84. # Here you may set how you want to have the body of the top command display, accepted entries are same as check-message
  85. top-message=[
  86. "§6---[§2{player}§6]---",
  87. "§fRank: {rank}",
  88. "§f{timing-time}",
  89. "§fJoin date: §a{joindate}",
  90. "§6-----------"
  91. ]
  92. # This is where you may define how the bottom of the top message displays
  93. top-message-footer="§f----------------------------"
  94. # This is where you may define how the top of the top message displays
  95. top-message-head="§f------{Top Play Times}------"
  96. # The amount of minutes to pass between timing updates
  97. update-interval=1
  98. }
Add Comment
Please, Sign In to add comment