Advertisement
colue

ranks2.0

Oct 29th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.09 KB | None | 0 0
  1. # see https://github.com/okx-code/Rankup3/wiki/Rank-format
  2.  
  3. # this name doesn't matter
  4. Default:
  5. # the name of the group
  6. # players have to be in this rank to rankup
  7. rank: 'default'
  8. # the name of the rank a player can rankup to
  9. next: 'Gados'
  10. # List of requirements to go to the next rank
  11. # This example will charge 1000 money to rankup from A to B.
  12. # https://github.com/okx-code/Rankup3/wiki/Requirements
  13. # custom requirements can also be added by other plugins.
  14. requirements:
  15. - 'playtime-minutes 2'
  16. # the console will run these commands when a player ranks up
  17. # nb: groups are automatically changed with vault
  18. commands:
  19. - 'luckperms user {PLAYER} promote ranks'
  20. - 'msg {PLAYER} well done for ranking up from &b{Guest} to &2{Gados}!'
  21. rankup:
  22. requirements-not-met: '&cYou need to play 2 minutes to rankup to Gados.'
  23. Gados:
  24. rank: 'Gados'
  25. next: 'Argus'
  26. requirements:
  27. - 'playtime-minutes 15'
  28. commands:
  29. - 'luckperms user {PLAYER} promote ranks'
  30. - 'msg {PLAYER} well done for ranking up from &b{Gados} to &2{Argus}!'
  31. rankup:
  32. requirements-not-met: '&cYou need to play 15 minutes to rankup to Argus.'
  33. Argus:
  34. rank: 'Argus'
  35. next: 'Poseidon'
  36. requirements:
  37. - 'playtime-minutes 60'
  38. commands:
  39. - 'luckperms user {PLAYER} promote ranks'
  40. - 'msg {PLAYER} well done for ranking up from &b{Argus} to &2{Poseidon}!'
  41. rankup:
  42. requirements-not-met: '&cYou need to play 1 hour to rankup to Poseidon.'
  43. Poseidon:
  44. rank: 'Poseidon'
  45. next: 'Apollo'
  46. requirements:
  47. - 'playtime-minutes 120'
  48. commands:
  49. - 'luckperms user {PLAYER} promote ranks'
  50. - 'msg {PLAYER} well done for ranking up from &b{Poseidon} to &2{Apollo}!'
  51. rankup:
  52. requirements-not-met: '&cYou need to play 2 hours to rankup to Apollo.'
  53. Apollo:
  54. rank: 'Apollo'
  55. next: 'Hyperion'
  56. requirements:
  57. - 'playtime-minutes 240'
  58. commands:
  59. - 'luckperms user {PLAYER} promote ranks'
  60. - 'msg {PLAYER} well done for ranking up from &b{Apollo} to &2{Hyperion}!'
  61. rankup:
  62. requirements-not-met: '&cYou need to play 4 hours to rankup to Hyperion.'
  63. Hyperion:
  64. rank: 'Hyperion'
  65. next: 'Odysseus'
  66. requirements:
  67. - 'playtime-minutes 480'
  68. commands:
  69. - 'luckperms user {PLAYER} promote ranks'
  70. - 'msg {PLAYER} well done for ranking up from &b{Hyperion} to &2{Odysseus}!'
  71. rankup:
  72. requirements-not-met: '&cYou need to play 8 hours to rankup to Odysseus.'
  73. Odysseus:
  74. rank: 'Odysseus'
  75. next: 'Endora'
  76. requirements:
  77. - 'playtime-minutes 960'
  78. commands:
  79. - 'luckperms user {PLAYER} promote ranks'
  80. - 'msg {PLAYER} well done for ranking up from &b{Odysseus} to &2{Endora}!'
  81. rankup:
  82. requirements-not-met: '&cYou need to play 16 hours to rankup to Endora.'
  83. Endora:
  84. rank: 'Endora'
  85. next: 'Zeus'
  86. requirements:
  87. - 'playtime-minutes 1920'
  88. commands:
  89. - 'luckperms user {PLAYER} promote ranks'
  90. - 'msg {PLAYER} well done for ranking up from &b{Endora} to &2{Zeus}!'
  91. rankup:
  92. requirements-not-met: '&cYou need to play 32 hours to rankup to Zeus.'
  93. Zeus:
  94. rank: 'Zeus'
  95. next: 'Psyche'
  96. requirements:
  97. - 'playtime-minutes 2880'
  98. commands:
  99. - 'luckperms user {PLAYER} promote ranks'
  100. - 'msg {PLAYER} well done for ranking up from &b{Zeus} to &2{Psyche}!'
  101. rankup:
  102. requirements-not-met: '&cYou need to play 48 hours to rankup to Psyche.'
  103. Psyche:
  104. rank: 'Psyche'
  105. next: 'Uranus'
  106. requirements:
  107. - 'playtime-minutes 5760'
  108. commands:
  109. - 'luckperms user {PLAYER} promote ranks'
  110. - 'msg {PLAYER} well done for ranking up from &b{Psyche} to &2{Uranus}!'
  111. rankup:
  112. requirements-not-met: '&cYou need to play 96 hours to rankup to Uranus.'
  113. Uranus:
  114. rank: 'Uranus'
  115. next: 'Gaea'
  116. requirements:
  117. - 'playtime-minutes 11520'
  118. commands:
  119. - 'luckperms user {PLAYER} promote ranks'
  120. - 'msg {PLAYER} well done for ranking up from &b{Uranus} to &2{Gaea}!'
  121. rankup:
  122. requirements-not-met: '&cYou need to play 192 hours to rankup to Gaea.'
  123. Gaea:
  124. rank: 'Gaea'
  125. requirements:
  126. - 'playtime-minutes 0'
  127. rankup:
  128. requirements-not-met: '&cYou have made it to the end for now.'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement