Advertisement
Guest User

Untitled

a guest
Feb 28th, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.38 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 %rank%'
  65. - '&8&m------------'
  66. rankups:
  67. Journeyman:
  68. order: 1
  69. prefix: '[A]'
  70. rankup_to: Wanderer
  71. cost: 5000.0
  72. rankup_actions:
  73. - '[broadcast] &6&l>&b&l> &6%player% &eranked up to &7[&e&l%rankup%&7]'
  74. - '[consolecommand]/lp user <user> parent add <Journeyman>
  75. - '[removegroup] %rank%'
  76. Wanderer:
  77. order: 1
  78. prefix: '[A]'
  79. rankup_to: Explorer
  80. cost: 7500.0
  81. rankup_actions:
  82. - '[broadcast] &6&l>&b&l> &6%player% &eranked up to &7[&e&l%rankup%&7]'
  83. - /lp user <user> parent add <Wanderer>
  84. - '[removegroup] %rank%'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement