Advertisement
Guest User

Untitled

a guest
May 26th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 KB | None | 0 0
  1. # see https://github.com/okx-code/Rankup3/wiki/Rank-format
  2.  
  3. # this name doesn't matter
  4. FirstRank:
  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: 'desconocido'
  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. - 'playtime-minutes 30'
  16. - 'money 1000'
  17. - 'block-break stone 250'
  18. rankup:
  19. requirements-not-met: '&cYou have {AMOUNT_DONE block-break#stone}/{AMOUNT block-break#stone} stone left to break, {AMOUNT_DONE playtime-minutes}/{AMOUNT playtime-minutes} minutes left, {AMOUNT_DONE money}/{AMOUNT money} money left to make.'
  20. list:
  21. complete: "&7{OLD_RANK} &8\xbb &7{RANK} &e(1000 money, 30 Minutes, break 250 blocks)"
  22. current: "&c{OLD_RANK} &e\xbb &c{RANK} &e(1000 money, 30 Minutes, break 250 blocks)"
  23. incomplete: "&r{OLD_RANK} &e\xbb &r{RANK} &e(1000 money, 30 Minutes, break 250 blocks)"
  24. # the console will run these commands when a player ranks up
  25. # nb: groups are automatically changed with vault
  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. SecondRank:
  30. rank: 'desconocido'
  31. next: 'conocido'
  32. requirements:
  33. - 'playtime-minutes 600'
  34. - 'money 10000'
  35. - 'block-break stone 2500'
  36. rankup:
  37. requirements-not-met: '&cYou have {AMOUNT_DONE block-break#stone}/{AMOUNT block-break#stone} stone left to break, {AMOUNT_DONE playtime-minutes}/{AMOUNT playtime-minutes} minutes left, {AMOUNT_DONE money}/{AMOUNT money} money left to make.'
  38. list:
  39. complete: "&7{OLD_RANK} &8\xbb &7{RANK} &e(10000 money, 10 Hours, break 2500 blocks)"
  40. current: "&c{OLD_RANK} &e\xbb &c{RANK} &e(10000 money, 10 Hours, break 2500 blocks)"
  41. incomplete: "&r{OLD_RANK} &e\xbb &r{RANK} &e(10000 money, 10 Hours, break 2500 blocks)"
  42. ThirdRank:
  43. rank: 'conocido'
  44. next: 'Amigo'
  45. requirements:
  46. - 'playtime-minutes 1200'
  47. - 'money 100000'
  48. - 'block-break stone 10000'
  49. # you can have a custom messages for each rank
  50. # the paths of these messages are the same as in the messages for your locale
  51. rankup:
  52. requirements-not-met: '&cYou have {AMOUNT_DONE block-break#stone}/{AMOUNT block-break#stone} stone left to break, {AMOUNT_DONE playtime-minutes}/{AMOUNT playtime-minutes} minutes left, {AMOUNT_DONE money}/{AMOUNT money} money left to make.'
  53. list:
  54. complete: "&7{OLD_RANK} &8\xbb &7{RANK} &e(100000 money, 20 Hours, break 10000 blocks)"
  55. current: "&c{OLD_RANK} &e\xbb &c{RANK} &e(100000 money, 20 Hours, break 10000 blocks)"
  56. incomplete: "&r{OLD_RANK} &e\xbb &r{RANK} &e(100000 money, 20 Hours, break 10000 blocks)"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement