Advertisement
Krustymk

Untitled

Jan 29th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.68 KB | None | 0 0
  1. # this is used for letting you know that you need to update/change your config file
  2. version: 3
  3.  
  4. # the ISO-639-1 locale to use for messages
  5. # all messages can be customised but this allows you to
  6. # choose messages that are already translated
  7. # locales can be found in the locale/ folder
  8. locale: en
  9.  
  10. # interval (in minutes) to check to autorankup players
  11. # ranking up manually wil always be enabled
  12. # set to 0 to disable
  13. autorankup-interval: 0
  14.  
  15. # whether /ranks and /prestiges should be enabled (true) or disabled (false)
  16. # /rankup3 reload will not do anything if this is changed,
  17. # you will have to restart your server.
  18. ranks: true
  19. # you can alternatively negate the permission rankup.prestiges
  20. # this will also make the command not autocomplete in 1.13
  21. prestiges: true
  22.  
  23. # whether or not /prestige and /prestiges should be enabled.
  24. # you can alternatively negate the permission rankup.prestige
  25. # this will also make the command not autocomplete in 1.13
  26. prestige: true
  27.  
  28. # how people should confirm ranking up
  29. # options are: gui, text or none
  30. confirmation-type: 'gui'
  31.  
  32. # how long in seconds people have to wait between a /rankup and a /prestige
  33. # only successful rankups and prestiges start the cooldown.
  34. # set to 0 to disable.
  35. cooldown: 1
  36.  
  37. gui:
  38. rows: 1
  39. rankup:
  40. material: EMERALD_BLOCK
  41. # index can be separated by spaces to show in multiple ways
  42. # ie, 0-3 9-12 18-21
  43. # you can also just use a single number instead of a range.
  44. index: 0-3
  45. name: '&a&lConfirm'
  46. # lore is optional
  47. lore: '&6Rankup to &b{RANK}'
  48. cancel:
  49. material: REDSTONE_BLOCK
  50. index: 5-8
  51. name: '&c&lCancel'
  52. fill:
  53. name: ' '
  54. # if you are using a 1.8-1.12 and you want to change this
  55. # you can use MATERIAL:data, for example STAINED_GLASS_PANE:8
  56. # this works for both the rankup and cancel blocks as well
  57. material: BLACK_STAINED_GLASS_PANE
  58.  
  59. text:
  60. # the time in seconds for a player to
  61. # confirm by typing /rankup again
  62. timeout: 10
  63.  
  64. placeholders:
  65. # format for money. for more information, see
  66. # https://docs.oracle.com/javase/8/docs/api/java/text/DecimalFormat.html
  67. money-format: "#,##0.##"
  68. percent-format: "0.##"
  69. # the format used for requirements
  70. simple-format: "#.##"
  71. # used for current_rank and next_rank placeholders when a player is not in anything in rankups.yml
  72. not-in-ladder: "None"
  73. # used in next_rank placeholders when there is no rankup
  74. highest-rank: "None"
  75. # used in /prestiges as the {OLD_RANK} placeholder for the first prestige rank
  76. first-prestige-rank: 'D'
  77.  
  78. # what to shorten money by.
  79. # ie 1000 -> 1k
  80. # set to an empty list to disable
  81. shorten:
  82. - 'k'
  83. - 'M'
  84. - 'B'
  85. - 'T'
  86. - 'Q'
  87. - 'Qu'
  88. - 'S'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement