Advertisement
Guest User

Untitled

a guest
Aug 21st, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.77 KB | None | 0 0
  1. # EZRanksPro 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. # You can delay any of the rankup actions being performed by ending the action with
  31. # <delay=(time in seconds)>
  32. # example:
  33. # [consolecommand] eco give %player% 100 <delay=10>
  34. #
  35. # Placeholders can be used in your rankup actions and messages:
  36. #
  37. # %player% - players name
  38. # %displayname% - players displayname
  39. # %world% - players current world
  40. # %rank% - players current rank
  41. # %rankup% - players next rank (if they have one)
  42. # %cost% - cost to rankup
  43. # %cost_formatted% - formatted cost to rankup
  44. # %balance% - players balance
  45. # %balance_formatted% - players formatted balance
  46. # %difference% - amount still needed
  47. # %difference_formatted% - formatted amount still needede
  48. # %progress% - rounded progress % based on cost - balance
  49. # %progressexact% - exact progress % based on cost - balance
  50. # %progressbar% - custom progressbar based on cost - balance
  51. # %rankprefix% - players current rank prefix defined in this file
  52. # %rankupprefix% - players next rank prefix defined in this file
  53. # %lastrank% - last rank available
  54. # %lastrankprefix% - last rank available prefix
  55. # %rankup_cost_<rankname>% - show the cost for a specific rank
  56. # %rankup_cost_formatted_<rankname>% - show the formatted cost for a specific rank
  57. # %rankup_is_completed_<rankname>% - show if a player has completed the specified rank
  58.  
  59. last_rank:
  60. rank: Z
  61. prefix: '&8[&bZ&8]'
  62. requirement_message:
  63. - '&8&m------------'
  64. - '&cYou need &a$&f%cost% &cto rankup to %rankupprefix%'
  65. - '&8&m------------'
  66. rankups:
  67. A:
  68. order: 1
  69. prefix: '[A]'
  70. rankup_to: B
  71. cost: 1000.0
  72. rankup_actions:
  73. - '[broadcast] &6&l>&b&l> &6%player% &eranked up to &7[&e&l%rankup%&7]'
  74. - '[addgroup] %rankup%'
  75. - '[removegroup] %rank%'
  76. default:
  77. order: 1
  78. prefix: '&8[&fdefault&8]'
  79. rankup_to: B
  80. cost: '1000'
  81. rankup_actions:
  82. - '[addgroup] B'
  83. - '[removegroup] default'
  84. - '[broadcast] &6&l>&b&l> &6%player% &eranked up to &7[&e&l%rankup%&7]'
  85. B:
  86. order: 2
  87. prefix: '&8[&fB&8]'
  88. rankup_to: C
  89. cost: '1500'
  90. rankup_actions:
  91. - '[addgroup] C'
  92. - '[removegroup] B'
  93. - '[broadcast] &6&l>&b&l> &6%player% &eranked up to &7[&e&l%rankup%&7]'
  94. C:
  95. order: 3
  96. prefix: '&8[&fC&8]'
  97. rankup_to: D
  98. cost: '2000'
  99. rankup_actions:
  100. - '[addgroup] D'
  101. - '[removegroup] C'
  102. - '[broadcast] &6&l>&b&l> &6%player% &eranked up to &7[&e&l%rankup%&7]'
  103. D:
  104. order: 4
  105. prefix: '&8[&fD&8]'
  106. rankup_to: E
  107. cost: '3000'
  108. rankup_actions:
  109. - '[addgroup] E'
  110. - '[removegroup] D'
  111. - '[broadcast] &6&l>&b&l> &6%player% &eranked up to &7[&e&l%rankup%&7]'
  112. E:
  113. order: 5
  114. prefix: '&8[&fE&8]'
  115. rankup_to: F
  116. cost: '5000'
  117. rankup_actions:
  118. - '[addgroup] F'
  119. - '[removegroup] E'
  120. - '[broadcast] &6&l>&b&l> &6%player% &eranked up to &7[&e&l%rankup%&7]'
  121. F:
  122. order: 6
  123. prefix: '&8[&fF&8]'
  124. rankup_to: G
  125. cost: '10000'
  126. rankup_actions:
  127. - '[addgroup] G'
  128. - '[removegroup] F'
  129. - '[broadcast] &6&l>&b&l> &6%player% &eranked up to &7[&e&l%rankup%&7]'
  130. G:
  131. order: 7
  132. prefix: '&8[&fG&8]'
  133. rankup_to: H
  134. cost: '25000'
  135. rankup_actions:
  136. - '[addgroup] H'
  137. - '[removegroup] G'
  138. - '[broadcast] &6&l>&b&l> &6%player% &eranked up to &7[&e&l%rankup%&7]'
  139. H:
  140. order: 8
  141. prefix: '&8[&fH&8]'
  142. rankup_to: I
  143. cost: '40000'
  144. rankup_actions:
  145. - '[addgroup] I'
  146. - '[removegroup] H'
  147. - '[broadcast] &6&l>&b&l> &6%player% &eranked up to &7[&e&l%rankup%&7]'
  148. I:
  149. order: 9
  150. prefix: '&8[&fI&8]'
  151. rankup_to: J
  152. cost: '100000'
  153. rankup_actions:
  154. - '[addgroup] J'
  155. - '[removegroup] I'
  156. - '[broadcast] &6&l>&b&l> &6%player% &eranked up to &7[&e&l%rankup%&7]'
  157. J:
  158. order: 10
  159. prefix: '&8[&fJ&8]'
  160. rankup_to: K
  161. cost: '250000'
  162. rankup_actions:
  163. - '[addgroup] K'
  164. - '[removegroup] J'
  165. - '[broadcast] &6&l>&b&l> &6%player% &eranked up to &7[&e&l%rankup%&7]'
  166. K:
  167. order: 11
  168. prefix: '&8[&fK&8]'
  169. rankup_to: L
  170. cost: '450000'
  171. rankup_actions:
  172. - '[addgroup] L'
  173. - '[removegroup] K'
  174. - '[broadcast] &6&l>&b&l> &6%player% &eranked up to &7[&e&l%rankup%&7]'
  175. L:
  176. order: 12
  177. prefix: '&8[&fL&8]'
  178. rankup_to: Free
  179. cost: '1000000'
  180. rankup_actions:
  181. - '[addgroup] Free'
  182. - '[removegroup] L'
  183. - '[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