Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. # see https://github.com/okx-code/Rankup3/wiki/Rank-format
  2.  
  3. # this name doesn't matter
  4. Aexample:
  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: 'Farmer'
  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. - 'money 5000'
  16. # the console will run these commands when a player ranks up
  17. # nb: groups are automatically changed with vault
  18. #commands:
  19. # this will run when a player ranks up from A to B.
  20. #- 'say {PLAYER} well done for ranking up from {OLD_RANK} to {RANK}!'
  21. Bexample:
  22. rank: 'Farmer'
  23. next: 'Knight'
  24. requirements:
  25. - 'money 25000'
  26. Cexample:
  27. rank: 'Knight'
  28. next: 'Warrior'
  29. requirements:
  30. - 'money 75000'
  31. Dexample:
  32. rank: 'Warrior'
  33. next: 'Earl'
  34. requirements:
  35. - 'money 200000'
  36. Eexample:
  37. rank: 'Earl'
  38. next: 'Duke'
  39. requirements:
  40. - 'money 350000'
  41. Fexample:
  42. rank: 'Duke'
  43. next: 'Prince'
  44. requirements:
  45. - 'money 750000'
  46. Gexample:
  47. rank: 'prince'
  48. next: 'Hero'
  49. requirements:
  50. - 'money 1500000'
  51. Hexample:
  52. rank: 'Hero'
  53. next: 'King'
  54. requirements:
  55. - 'money 3000000'
  56. Iexample:
  57. rank: 'King'
  58. next: 'Overlord'
  59. requirements:
  60. - 'money 5000000'
  61. # you can have a custom messages for each rank
  62. # the paths of these messages are the same as in the messages for your locale
  63. rankup:
  64. requirements-not-met: '&cYou need 5000 money and 2 levels of XP to rankup to D.'
  65. list:
  66. complete: "&7{OLD_RANK} &8\xbb &7{RANK} &e(5000 money, 2 XP levels)"
  67. current: "&c{OLD_RANK} &e\xbb &c{RANK} &e(5000 money, 2 XP levels)"
  68. incomplete: "&r{OLD_RANK} &e\xbb &r{RANK} &e(5000 money, 2 XP levels)"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement