Advertisement
Guest User

Config

a guest
May 22nd, 2015
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. # Auction plugin by SainttX
  2.  
  3. settings:
  4. use-shortened-times: false
  5.  
  6. # General Auction information
  7. auction-start-fee: 0
  8. auction-tax-percentage: 0
  9. default-auction-start-time: 30
  10. delay-between-auctions-seconds: 5
  11. default-bid-increment: 50
  12. minimum-bid-increment: 10
  13. maximum-bid-increment: 100
  14. minimum-auction-start-price: 10
  15. maximum-auction-start-price: 30000
  16.  
  17. # Enabling and disabling certain features
  18. allow-auctioning-named-items: true
  19. allow-auction-auto-winning: true
  20. allow-creative-auctioning: false
  21. allow-auction-help-command: true
  22. allow-auction-end-command: false
  23. allow-auction-cancel-command: true
  24. allow-using-bid-auto-command: true
  25. allow-damaged-items: true
  26.  
  27. # Blocking commands
  28. block-commands-when-auctioning: false
  29. block-commands-if-auction-queued: false
  30. blocked-commands:
  31. - "/test"
  32.  
  33. # Per world Auctioning
  34. disabled-worlds:
  35. - 'testworld'
  36.  
  37. # Broadcast times
  38. broadcast-times:
  39. - '60'
  40. - '10'
  41. - '3'
  42. - '2'
  43. - '1'
  44.  
  45. # Other
  46. auction-queue-limit: 3
  47. must-cancel-auction-before: 15
  48.  
  49. # Anti-snipe
  50. # max-per-auction is the max amount of times an auction can have time added
  51. # add-seconds is the amount of time in seconds to add each time the auction is sniped
  52. enable-anti-snipe: true
  53. anti-snipe-max-per-auction: 3
  54. anti-snipe-add-seconds: 5
  55.  
  56. # Use http://jd.bukkit.org/rb/apidocs/org/bukkit/Material.html
  57. banned-items:
  58. - BEDROCK
  59.  
  60. # If an items lore contains any of the texts here, the item
  61. # won't be allowed to be put into an auction
  62. banned-lore:
  63. - 'A string of lore'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement