Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. # This is a reward file
  2. # Define rewards in here (Items, commands, etc)
  3. # File name is the reward name, without file extention
  4. # This reward is named "ExampleBasic"
  5. # That is what you put as a reward for other plugins, like VotingPlugin
  6. # DO NOT HAVE DUPLICATE NAMES!!
  7.  
  8. # Wiki Page:
  9. # https://github.com/Ben12345rocks/AdvancedCore/wiki/Reward-files
  10.  
  11. # This is basic reward file
  12. # You can have multiple reward files that contain all kinds of rewards
  13. # Below are some basic things you can have, see the advanced example for more
  14.  
  15. # You can just remove values you don't want (just delete it)
  16. # If you just want money just have a reward file containg only "Money: 100", for example
  17. # You can simply copy and paste from here what you want
  18. # in other reward files, that is the way they are designed
  19.  
  20. # Items to give to user
  21. Items:
  22. # Item
  23. # This is not item display name
  24. # No duplicate names
  25. Diamond:
  26. # Item Material
  27. # https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  28. Material: 'DIAMOND'
  29. # Item data value (Eg 1:4, data is 4)
  30. Data: 0
  31. # Will only give Amount if min and max amounts are 0
  32. Amount: 1
  33. # Set item durability
  34. # Set to 0 or remove line for no durability
  35. #Durability: 100
  36.  
  37. # Random amount of items between Min and Max will be given
  38. # if min and max are not both 0
  39.  
  40. # Min amount of items
  41. #MinAmount: 1
  42.  
  43. # Max amount of items
  44. #MaxAmount: 4
  45.  
  46. # Item name
  47. # Remove this value to have no name
  48. Name: '&aSpecial Diamond'
  49.  
  50. # Lore
  51. # Remove this value to have no lore
  52. Lore:
  53. - 'Line 1'
  54.  
  55. # Enchants
  56. # use vanilla names
  57. Enchants:
  58. unbreaking: 1
  59.  
  60. # Hide enchants
  61. #ItemFlags:
  62. #- HIDE_ENCHANTS
  63.  
  64. # Set power of firework
  65. #Power: 1
  66.  
  67. # Potions:
  68. # SPEED:
  69. # Duration: 20
  70. # Amplifier: 1
  71.  
  72. # Amount of money to give, requires vault
  73. # Use 0 to give none
  74. # Money is not per world
  75. # Use negative to take money
  76. Money: 1000
  77.  
  78. # Pick random number between min and max money amount
  79. #Money:
  80. # Min: 100
  81. # Max: 3000
  82.  
  83. # Give player experience
  84. EXP: 100
  85.  
  86. # Pick a random number between min and max EXP amount to give
  87. #EXP:
  88. # Min: 100
  89. # Max: 1000
  90.  
  91. # Commands to run
  92. # Use %player% for player name
  93. # Remove for no commands
  94. Commands:
  95. - say hi
  96. #Commands:
  97. # Commands here will be run by console
  98. # Console:
  99. # - 'say %player% was lucky'
  100. # Commands here are run by player
  101. # Player:
  102. # - 'vote total'
  103.  
  104. # The messages are sent when rewards above are given to user
  105. # set to '' to give no message
  106. Messages:
  107. Player: '&aMessage on reward'
  108. Broadcast: '&aThis is a broadcast'
  109.  
  110. # Can also do this
  111. #Message: '&aMessage to player'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement