Advertisement
tmoflash

Untitled

Oct 23rd, 2018
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.31 KB | None | 0 0
  1. # ======================================================
  2. #
  3. # ProVotes Version: 1.3.6 build: 119373
  4. # Created by: JC_Plays_MC
  5. #
  6. # ======================================================
  7. #
  8. # Rewards File
  9. #
  10. # This file will store all of your defined rewards that will awarded to
  11. # players based on a number of factors such as permissions, chance, and cumulative
  12. # total. If you have any other suggestions for reward types let me know!
  13. #
  14. # ======================================================
  15. #
  16. # Types of Rewards:
  17. #
  18. # Permission Rewards - Gives players the reward with the highest priority that they have permisison for
  19. # Chance Rewards - Gives the player a 1/X chance with X being the rewards chance (ex. 1/5)
  20. # Cumulative Rewards - Gives the player a reward once they've reached X amount of votes (can be monthly or total)
  21. #
  22. # ======================================================
  23. #
  24. # Examples:
  25. #
  26. # default_actions:
  27. # - '[Broadcast] &b%player% has voted for the server!'
  28. #
  29. # permission_rewards:
  30. # default: ##The identifier for the reward
  31. # priority: 0 ##The priority of this permission reward (lower priorities override)
  32. # permission: provotes.receive ##The permission for this reward
  33. # parents: [] ##The identifier of rewards in which this inherits actions from
  34. # actions: [] ##The actions to be executed for the reward
  35. #
  36. # chance_rewards:
  37. # default: ##The identifier for the reward
  38. # chance: 2 ##The chance for the player to receive the reward (1/chance)
  39. # parents: [] ##The identifier of rewards in which this inherits actions from
  40. # actions: [] ##The actions to be executed for the reward
  41. #
  42. # cumulative_rewards:
  43. # default: ##The identifier for the reward
  44. # amount: 5 ##The total amount of votes required to receive this reward
  45. # type: LIFETIME ##The type of votes to check against the amount (DAILY, WEEKLY, MONTHLY, LIFETIME)
  46. # parents: [] ##The identifier of rewards in which this inherits actions from
  47. # actions: [] ##The actions to be executed for the reward
  48. #
  49. # weekly_rewards:
  50. # first_place: ##The identifier for the reward
  51. # positions: [] ##The positions which will receive this reward
  52. # actions: [] ##The actions to be executed for the reward
  53. #
  54. # monthly_rewards:
  55. # first_place: ##The identifier for the reward
  56. # positions: [] ##The positions which will receive this reward
  57. # actions: [] ##The actions to be executed for the reward
  58. #
  59. # ======================================================
  60.  
  61. default_actions:
  62. - '[Broadcast] &b%player% has voted for the server!'
  63. permission_rewards:
  64. default:
  65. priority: 0
  66. permission: provotes.receive
  67. actions:
  68. - '[Message] &a%player% thanks for voting enjoy your rewards!'
  69. - '[GiveItem] DIAMOND;4'
  70. - '[ConsoleCommand] money grant %player% 150'
  71. chance_rewards:
  72. default:
  73. chance: 6
  74. actions:
  75. - '[Message] &eWow! Lucky you!'
  76. - '[ConsoleCommand] crates give %player% armorBasic 1'
  77. - '[ConsoleCommand] money grant %player% 500'
  78. cumulative_rewards:
  79. default:
  80. amount: 5
  81. type: DAILY
  82. actions:
  83. - '[Message] &eCumulative vote action'
  84. - '[Message] &eWow! Lucky you!'
  85. - '[ConsoleCommand] crates give %player% armorBasic 1'
  86. - '[ConsoleCommand] crates give %player% armorElite 1'
  87. - '[ConsoleCommand] crates give %player% armorLegendary 1'
  88. - '[ConsoleCommand] money grant %player% 1000'
  89. weekly_rewards:
  90. first_place:
  91. positions:
  92. - 1
  93. actions:
  94. - '[GiveItem] DIAMOND;16'
  95. - '[ConsoleCommand] crates give %player% armorBasic 2'
  96. - '[ConsoleCommand] crates give %player% armorElite 1'
  97. - '[ConsoleCommand] crates give %player% armorLegendary 1'
  98. - '[ConsoleCommand] money grant %player% 1000'
  99. - '[Message] &c[&c&lVOTES&c] &7You finished &a&l1st Place &7with the most weekly
  100. votes! &7(&b%weekly_votes% votes&7)'
  101. monthly_rewards:
  102. first_place:
  103. positions:
  104. - 1
  105. actions:
  106. - '[GiveItem] EMERALD;16'
  107. - '[ConsoleCommand] crates give %player% armorBasic 4'
  108. - '[ConsoleCommand] crates give %player% armorElite 2'
  109. - '[ConsoleCommand] crates give %player% armorLegendary 2'
  110. - '[ConsoleCommand] money grant %player% 1000'
  111. - '[Message] &c[&c&lVOTES&c] &7You finished &a&l1st Place &7with the most monthly
  112. votes! &7(&b%monthly_votes% votes&7)'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement