Advertisement
Guest User

Untitled

a guest
Oct 19th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 KB | None | 0 0
  1. # this name can be equal to your rank name for simplicity,
  2. # eg "A" instead of "Aexample".
  3. I:
  4. # the name of the rank in your permissions plugin
  5. rank: 'survival_tier1'
  6. # the next rank a player can rank up to.
  7. # this must be the name of the configuration section, not the rank name.
  8. # for example, the name of this configuration section is "Aexample".
  9. # if this is the last rank, you don't need this.
  10. next: 'survival_tier2'
  11. # List of requirements to go to the next rank
  12. # (ie, this example will charge 1000 money to rankup from A to B)
  13. # https://github.com/okx-code/Rankup3/wiki/Requirements
  14. # custom requirements can also be added by other plugins.
  15. requirements:
  16. money: 4000
  17. xp-level: 5
  18. # What requirements players need to match to /rankup.
  19. # this is optional - if you don't use it, it defaults to "all"
  20. # n.b. if there are no requirements players will always be able to /rankup.
  21. # all: all requirements
  22. # any: at least one requirement
  23. # one: only one requirement
  24. # none: no requirements
  25. operation: all
  26. # the console will run these commands when a player ranks up
  27. #commands:
  28. # this will run when a player ranks up from A to B.
  29. #- 'say {PLAYER} well done for ranking up from {OLD_RANK} to {RANK}!'
  30. II:
  31. rank: 'survival_tier2'
  32. next: 'survival_tier3'
  33. requirements:
  34. money: 8000
  35. xp-level: 10
  36. III:
  37. rank: 'survival_tier3'
  38. next: 'survival_tier4'
  39. requirements:
  40. money: 15000
  41. xp-level: 10
  42. IV:
  43. rank: 'survival_tier4'
  44. next: 'survival_tier5'
  45. requirements:
  46. money: 25000
  47. xp-level: 20
  48. V:
  49. rank: 'survival_tier5'
  50. next: 'survival_tier6'
  51. requirements:
  52. money: 55000
  53. xp-level: 40
  54. VI:
  55. rank: 'survival_tier7'
  56. next: 'survival_tier8'
  57. requirements:
  58. money: 95000
  59. xp-level: 80
  60. VII:
  61. rank: 'survival_tier8'
  62. next: 'survival_tier9'
  63. requirements:
  64. money: 150000
  65. xp-level: 100
  66. VIII:
  67. rank: 'survival_tier9'
  68. next: 'survival_tier10'
  69. requirements:
  70. money: 250000
  71. xp-level: 250
  72. # you can have a custom messages for each rank
  73. # you can use this to list the requirements needed.
  74. rankup:
  75. requirements-not-met: '&cYou need 5000 money and 2 levels of XP to rankup to D.'
  76. list:
  77. complete: "&7{OLD_RANK} &8\xbb &7{RANK} &e(5000 money, 2 XP levels)"
  78. current: "&c{OLD_RANK} &e\xbb &c{RANK} &e(5000 money, 2 XP levels)"
  79. incomplete: "&r{OLD_RANK} &e\xbb &r{RANK} &e(5000 money, 2 XP levels)"
  80. # for the last rank, you just need to specify the rank.
  81. Master:
  82. rank: 'survival_tier10'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement