Advertisement
Guest User

vote.yml

a guest
Apr 1st, 2020
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. # This is a reward file
  2.  
  3. # Define rewards in here (Items, commands, etc)
  4.  
  5. # File name is the reward name, without file extention
  6.  
  7. # This reward is named "ExampleBasic"
  8.  
  9. # That is what you put as a reward for other plugins, like VotingPlugin
  10.  
  11. # DO NOT HAVE DUPLICATE NAMES!!
  12.  
  13.  
  14.  
  15. # Wiki Page:
  16.  
  17. # https://github.com/Ben12345rocks/AdvancedCore/wiki/Reward-files
  18.  
  19.  
  20.  
  21. # This is basic reward file
  22.  
  23. # You can have multiple reward files that contain all kinds of rewards
  24.  
  25. # Below are some basic things you can have, see the advanced example for more
  26.  
  27.  
  28.  
  29. # You can just remove values you don't want (just delete it)
  30.  
  31. # If you just want money just have a reward file containg only "Money: 100", for example
  32.  
  33. # You can simply copy and paste from here what you want
  34.  
  35. # in other reward files, that is the way they are designed
  36.  
  37.  
  38.  
  39. # If true:
  40.  
  41. # Only allow one item with chance to go through
  42.  
  43. # If no chance specificied it will only give the first item
  44.  
  45. OnlyOneItemChance: false
  46.  
  47.  
  48.  
  49. # Items to give to user
  50.  
  51.  
  52. Money: 150
  53.  
  54.  
  55.  
  56. # Pick random number between min and max money amount
  57.  
  58. #Money:
  59.  
  60. # Min: 100
  61.  
  62. # Max: 3000
  63.  
  64.  
  65.  
  66. #######
  67.  
  68. # Experience rewards
  69.  
  70. #######
  71.  
  72. # Give player experience (not levels)
  73.  
  74. #EXP: 100
  75.  
  76.  
  77.  
  78. # Pick a random number between min and max EXP amount to give
  79.  
  80. #EXP:
  81.  
  82. # Min: 100
  83.  
  84. # Max: 1000
  85.  
  86.  
  87.  
  88. EXPLevels: 1
  89.  
  90.  
  91.  
  92. # Random amount of EXP levels between 3 to 7
  93.  
  94. # EXPLevels:
  95.  
  96. # Min: 3
  97.  
  98. # Max: 7
  99.  
  100.  
  101.  
  102. # Commands to run
  103.  
  104. # Use %player% for player name
  105.  
  106. # Remove for no commands
  107.  
  108. Commands:
  109.  
  110. - cc give p vote 1 %player%
  111.  
  112. #Commands:
  113.  
  114. # Commands here will be run by console
  115.  
  116. # Console:
  117.  
  118. # - 'say %player% was lucky'
  119.  
  120. # Commands here are run by player
  121.  
  122. # Player:
  123.  
  124. # - 'vote total'
  125.  
  126.  
  127.  
  128. # The messages are sent when rewards above are given to user
  129.  
  130. # set to '' to give no message
  131.  
  132. Messages:
  133.  
  134. Player: '&aMessage on reward'
  135.  
  136. Broadcast: '&aThis is a broadcast'
  137.  
  138.  
  139.  
  140. # Can also do this
  141.  
  142. #Message: '&aMessage to player'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement