Advertisement
Guest User

RankupYML

a guest
Dec 10th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. # this name can be equal to your rank name for simplicity,
  2. # eg "A" instead of "Aexample".
  3. default:
  4. # the name of the rank in your permissions plugin
  5. rank: '§2[Farmer]§f'
  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: '§3[Mystic]§f'
  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: 10000
  17. # What requirements players need to match to /rankup.
  18. # this is optional - if you don't use it, it defaults to "all"
  19. # n.b. if there are no requirements players will always be able to /rankup.
  20. # all: all requirements
  21. # any: at least one requirement
  22. # one: only one requirement
  23. # none: no requirements
  24. operation: all
  25. # the console will run these commands when a player ranks up
  26. #commands:
  27. # this will run when a player ranks up from A to B.
  28. #- 'say {PLAYER} well done for ranking up from {OLD_RANK} to {RANK}!'
  29. mystic:
  30. rank: '§3[Mystic]§f'
  31. next: '§6[Hero]§f'
  32. requirements:
  33. money: 20000
  34. hero:
  35. rank: '§6[Hero]§f'
  36. next: '§5[Lord]§f'
  37. requirements:
  38. money: 100000
  39. xp-level: 30
  40. # you can have a custom messages for each rank
  41. # you can use this to list the requirements needed.
  42. rankup:
  43. requirements-not-met: '&cYou need 100000 money and 30 levels of XP to rankup to D.'
  44. list:
  45. complete: "&7{OLD_RANK} &8\xbb &7{RANK} &e(100000 money, 30 XP levels)"
  46. current: "&c{OLD_RANK} &e\xbb &c{RANK} &e(100000 money, 30 XP levels)"
  47. incomplete: "&r{OLD_RANK} &e\xbb &r{RANK} &e(100000 money, 30 XP levels)"
  48. # for the last rank, you just need to specify the rank.
  49. lord:
  50. rank: '§5[Lord]§f'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement