Advertisement
Guest User

ez

a guest
Jun 27th, 2015
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.20 KB | None | 0 0
  1. # EZRanksLite rankups.yml file
  2. # Create your rankups in this file.
  3. # If you need a default template, delete the rankups: section and
  4. # let it regenerate an example rankup.
  5. #
  6. # rankup_actions are a list of
  7. # actions which will be executed
  8. # when a player successfully ranks up
  9. #
  10. # You must include required arguments
  11. # <required>, (optional)
  12. # rankup_action list:
  13. # [consolecommand] <command> - perform a console command
  14. # [playercommand] <command> - make the player perform a command
  15. # [message] <message> - send the player a message
  16. # [broadcast] <message> - send the server a message
  17. # [jsonmessage] <json>- send the player a json message
  18. # [jsonbroadcast] <json> - send the server a json message
  19. # [actionbarmessage] <message> - send the player an actionbar message
  20. # [actionbarbroadcast] <message> - send the server an actionbar message
  21. # [addgroup] <group> (world) - add the player to a permissions group
  22. # [removegroup] <group> (world) - remove the player from a permissions group
  23. # [addpermission] <permission> (world) - add a permission node to the player
  24. # [removepermission] <permission> (world) - remove a permission node from a player
  25. # [setprefix] <prefix> - set the players prefix
  26. # [setsuffix] <suffix> - set the players suffix
  27. # [effect] <effect> - play an effect at the players location
  28. # [sound] <sound> <volume> <pitch> - play a sound at the players location
  29. #
  30. #
  31. # Placeholders can be used in your rankup actions and messages:
  32. #
  33. # %player% - players name
  34. # %displayname% - players displayname
  35. # %world% - players current world
  36. # %rank% - players current rank
  37. # %rankup% - players next rank (if they have one)
  38. # %cost% - cost to rankup
  39. # %cost_formatted% - formatted cost to rankup
  40. # %balance% - players balance
  41. # %balance_formatted% - players formatted balance
  42. # %difference% - amount still needed
  43. # %difference_formatted% - formatted amount still needede
  44. # %progress% - rounded progress % based on cost - balance
  45. # %progressexact% - exact progress % based on cost - balance
  46. # %progressbar% - custom progressbar based on cost - balance
  47. # %rankprefix% - players current rank prefix defined in this file
  48. # %rankupprefix% - players next rank prefix defined in this file
  49. # %lastrank% - last rank available
  50. # %lastrankprefix% - last rank available prefix
  51.  
  52. last_rank:
  53. rank: Free
  54. prefix: '[free]'
  55. requirement_message:
  56. - '&7&m+------------&6&l Maxed&e&lOut &7&m------------+'
  57. - ''
  58. - '&aYou need &c$%difference_formatted% &ato reach the rank of &9%rankup%'
  59. - ''
  60. - '&7&m+---------------------------------+'
  61. rankups:
  62. A:
  63. order: 1
  64. prefix: '&8[&cA&8]'
  65. rankup_to: B
  66. cost: '50000'
  67. rankup_actions:
  68. - '[addgroup] B'
  69. - '[removegroup] A'
  70. - '[broadcast] &6&l>&b&l> &6%player% &eranked up to &7[&e&l%rankup%&7]'
  71. B:
  72. order: 2
  73. prefix: '&8[&dB&8]'
  74. rankup_to: C
  75. cost: '100000'
  76. rankup_actions:
  77. - '[addgroup] C'
  78. - '[removegroup] B'
  79. - '[broadcast] &6&l>&b&l> &6%player% &eranked up to &7[&e&l%rankup%&7]'
  80. C:
  81. order: 3
  82. prefix: '&8[&5C&8]'
  83. rankup_to: D
  84. cost: '1000000'
  85. rankup_actions:
  86. - '[addgroup] D'
  87. - '[removegroup] C'
  88. - '[broadcast] &6&l>&b&l> &6%player% &eranked up to &7[&e&l%rankup%&7]'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement