Advertisement
Guest User

rankups

a guest
Jan 20th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. # see https://github.com/okx-code/Rankup3/wiki/Rank-format
  2.  
  3. # this name can be equal to your rank name for simplicity,
  4. # eg "A" instead of "Aexample".
  5. Traveler:
  6. # the name of the rank in your permissions plugin
  7. rank: 'Survivalist'
  8. # the next rank a player can rank up to.
  9. # this must be the name of the configuration section, not the rank name.
  10. # for example, the name of this configuration section is "Aexample".
  11. # if this is the last rank, you don't need this.
  12. next: 'Adventurer'
  13. # List of requirements to go to the next rank
  14. # (ie, this example will charge 1000 money to rankup from A to B)
  15. # https://github.com/okx-code/Rankup3/wiki/Requirements
  16. # custom requirements can also be added by other plugins.
  17. requirements:
  18. placeholder: '%vault_eco_balance_fixed% >=1000'
  19. placeholder: '%tokenmanager_tokens% = 50'
  20. # What requirements players need to match to /rankup.
  21. # this is optional - if you don't use it, it defaults to "all"
  22. # n.b. if there are no requirements players will always be able to /rankup.
  23. # all: all requirements
  24. # any: at least one requirement
  25. # one: only one requirement
  26. # none: no requirements
  27. operation: all
  28. # the console will run these commands when a player ranks up
  29. #commands:
  30. # this will run when a player ranks up from A to B.
  31. #- 'say {PLAYER} well done for ranking up from {OLD_RANK} to {RANK}!'
  32. Adventurer:
  33. rank: 'Adventurer'
  34. next: 'Cexample'
  35. requirements:
  36. money: 2500
  37. Cexample:
  38. rank: 'C'
  39. next: 'Dexample'
  40. requirements:
  41. money: 5000
  42. xp-level: 2
  43. # you can have a custom messages for each rank
  44. # you can use this to list the requirements needed.
  45. rankup:
  46. requirements-not-met: '&cYou need 5000 money and 2 levels of XP to rankup to D.'
  47. list:
  48. complete: "&7{OLD_RANK} &8\xbb &7{RANK} &e(5000 money, 2 XP levels)"
  49. current: "&c{OLD_RANK} &e\xbb &c{RANK} &e(5000 money, 2 XP levels)"
  50. incomplete: "&r{OLD_RANK} &e\xbb &r{RANK} &e(5000 money, 2 XP levels)"
  51. # for the last rank, you just need to specify the rank.
  52. Dexample:
  53. rank: 'D'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement