Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.95 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: Peixes
  61. prefix: '&3[&bPeixes III&8]'
  62. requirement_message:
  63. - '&8&m------------'
  64. - '&cPara upar para o rank %rankupprefix% voce precisa de &a$&f%cost%'
  65. - '&8&m------------'
  66. rankups:
  67. Aries:
  68. order: 1
  69. prefix: '&6[Aries]&f '
  70. rankup_to: AriesII
  71. cost: 1000.0
  72. rankup_actions:
  73. - '[consolecommand] pex user %player% group remove %rank%'
  74. - '[consolecommand] pex user %player% group set %rankup%'
  75. AriesII:
  76. order: 2
  77. prefix: '&6[Aries II]&f '
  78. rankup_to: AriesIII
  79. cost: 1000.0
  80. rankup_actions:
  81. - '[consolecommand] pex user %player% group remove %rank%'
  82. - '[consolecommand] pex user %player% group set %rankup%'
  83. AriesIII:
  84. order: 3
  85. prefix: '&6[Aries III]'
  86. rankup_to: Touro
  87. cost: 10000.0
  88. rankup_actions:
  89. - '[consolecommand] pex user %player% group remove %rank%'
  90. - '[consolecommand] pex user %player% group set %rankup%'
  91. Touro:
  92. order: 4
  93. prefix: '&c[Touro]&f '
  94. rankup_to: TouroII
  95. cost: 15000.0
  96. rankup_actions:
  97. - '[consolecommand] pex user %player% group remove %rank%'
  98. - '[consolecommand] pex user %player% group set %rankup%'
  99.  
  100. Aries III e Touro são os rankings novos. Aries I e II são os antigos que não dão erro quando tento fazer o reload.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement