Advertisement
tmoflash

Untitled

Dec 14th, 2018
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 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 2 names the same
  25. Diamond:
  26. # Item Material
  27. # List of material for 1.10:
  28. # https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  29. Material: 'DIAMOND'
  30. # Item data value (Eg 1:4, data is 4)
  31. Data: 0
  32. # Will only give Amount if min and max amounts are 0
  33. Amount: 4
  34. # Set item durability
  35. # Set to 0 or remove line for no durability
  36. #Durability: 100
  37.  
  38. # Random amount of items between Min and Max will be given
  39. # if min and max are not both 0
  40.  
  41. # Min amount of items
  42. #MinAmount: 1
  43.  
  44. # Max amount of items
  45. #MaxAmount: 4
  46.  
  47. # Item name
  48. # Remove this value to have no name
  49. Name: '&aSpecial Diamond'
  50.  
  51. # Lore
  52. # Remove this value to have no lore
  53. Lore:
  54. - 'Voting Diamonds, vote each day for more /vote'
  55.  
  56. Commands:
  57. # Commands here will be run by console
  58. Console:
  59. - 'say %player% was lucky'
  60. # Commands here are run by player
  61. Player:
  62. - 'vote total'
  63.  
  64. # The messages are sent when rewards above are given to user
  65. # set to '' to give no message
  66. Messages:
  67. Player: '&aMessage on reward'
  68. Broadcast: '&aThis is a broadcast'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement