Advertisement
Guest User

Untitled

a guest
May 3rd, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 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: 0
  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: '&bDiamond'
  50.  
  51. # Enchants
  52. # List of 1.10 Encahants can be found at
  53. # https://hub.spigotmc.org/javadocs/spigot/org/bukkit/enchantments/Enchantment.html
  54. Enchants:
  55. DURABILITY: 1
  56.  
  57. # Amount of money to give, requires vault
  58. # Use 0 to give none
  59. # Money is not per world
  60. # Use negative to take money
  61. Money: 250
  62.  
  63. # Pick random number between min and max amount
  64. #MinMoney: 100
  65. #MaxMoney: 3000
  66.  
  67. # Give player experience
  68. EXP: 200
  69.  
  70. # Pick a random number between min and max amount to give
  71. #MinEXP: 100
  72. #MaxEXP: 1000
  73.  
  74. # Commands to run
  75. # Use %player% for player name
  76. # Set to Console: [] for no commands
  77. Commands:
  78. # Commands here will be run by console
  79. Console:
  80. - 'say %player% Voted and Recieved $250, Exp and a Vote Key!'
  81. - 'crate key %player% vote 1'
  82. # Commands here are run by player
  83. Player:
  84.  
  85. # The messages are sent when rewards above are given to user
  86. # set to '' to give no message
  87. # If no value is set, default in Format.yml is used
  88. Messages:
  89. Player: ''
  90.  
  91.  
  92.  
  93. Sites -
  94. VoteSites:
  95. PlanetMinecraft:
  96. Enabled: true
  97. Name: PlanetMineCraft
  98. Priority: 5
  99. ServiceSite: PlanetMinecraft.com
  100. VoteURL: https://www.planetminecraft.com/server/ausblaze-survival-1-13-2-new-server/vote/
  101. Rewards: ExampleBasic
  102. VoteDelay: 24
  103. VoteDelayDaily: false
  104. MinecraftServersBiz:
  105. Enabled: true
  106. Name: MinecraftServersBiz
  107. Priority: 5
  108. ServiceSite: minecraftservers.biz
  109. VoteURL: https://minecraftservers.biz/servers/143927/
  110. Rewards: ExampleBasic
  111. VoteDelay: 24
  112. VoteDelayDaily: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement