Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 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. default:
  6. # the name of the rank in your permissions plugin
  7. # players have to be in this rank to rankup
  8. rank: 'default'
  9. # the next rank a player can rank up to.
  10. # this must be the name of the configuration section, not the rank name.
  11. # for example, the name of this configuration section is "Aexample".
  12. # if this is the last rank, you don't need this.
  13. next: 'hobo'
  14. # List of requirements to go to the next rank
  15. # (ie, this example will charge 1000 money to rankup from A to B)
  16. # https://github.com/okx-code/Rankup3/wiki/Requirements
  17. # custom requirements can also be added by other plugins.
  18. requirements:
  19. money: 1500
  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. # rankup will change the group for you, commands are not needed for that
  30. commands:
  31. - 'give {PLAYER} diamond 1'
  32.  
  33. hobo:
  34. rank: 'hobo'
  35. next: 'Traveler'
  36. requirements:
  37. money: 4500
  38. Traveler:
  39. rank: 'Traveler'
  40. next: 'trader'
  41. requirements:
  42. money: 5000
  43. xp-level: 2
  44. # you can have a custom messages for each rank
  45. # you can use this to list the requirements needed.
  46. rankup:
  47. requirements-not-met: '&cYou need 5000 money and 2 levels of XP to rankup to trader.'
  48. list:
  49. complete: "&7{OLD_RANK} &8\xbb &7{RANK} &e(5000 money, 2 XP levels)"
  50. current: "&c{OLD_RANK} &e\xbb &c{RANK} &e(5000 money, 2 XP levels)"
  51. incomplete: "&r{OLD_RANK} &e\xbb &r{RANK} &e(5000 money, 2 XP levels)"
  52. # for the last rank, you just need to specify the rank.
  53. Trader:
  54. rank: 'Trader'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement