Advertisement
Guest User

Untitled

a guest
Mar 29th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.42 KB | None | 0 0
  1. database:
  2. #Database backend type, can be set to mysql or sqlite
  3. type: mysql
  4. #MySQL database host
  5. mySQLHost: 192.241.74.189
  6. #MySQL connection port number
  7. mySQLPort: 3306
  8. #MySQL database name
  9. mySQLDatabase: mc_user_275
  10. #MySQL database user
  11. mySQLUser: mc_user_275
  12. #MySQL user's password
  13. mySQLPassword: "74b44cf740"
  14. #MySQL table names
  15. tableNames:
  16. auctions: "auctions"
  17. players: "players"
  18.  
  19. #Logging settings
  20. log:
  21. #Define whether transactions will be logged to the console/main server log
  22. toConsole: false
  23. #Define whether transactions will be logged to a separate log
  24. toFile: true
  25. #Date format of transactions (http://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html)
  26. formatDate: "yyyy/MM/dd HH:mm:ss"
  27. #Log message formats
  28. messageFormats:
  29. start: "%player% put up %quantity% x %item% for an auction #%id%! Starting price: $%startingprice%, bid increment: $%increment%, duration: %duration%"
  30. bid: "%player% placed bid of $%amount% on auction #%id% (%quantity% x %item%)."
  31. end: "%buyer% won auction #%id% (%quantity% x %item%) with a bid of $%price%."
  32. endNoBids: "Auction #%id% (%quantity% x %item%) ended with no bids."
  33. cancel: "Auction #%id% (%quantity% x %item%) has been cancelled by the seller."
  34. cancelAdmin: "Auction #%id% (%quantity% x %item%) has been cancelled by %player%."
  35.  
  36. #Default settings for newly created auctions when not specified
  37. defaultSettings:
  38. quantity: 1
  39. price: 100.0
  40. increment: 10.0
  41. #Duration in seconds
  42. duration: 600
  43.  
  44. #Minium settings values for newly created auctions (set to -1 for no limit)
  45. minSettings:
  46. quantity: -1
  47. price: -1
  48. increment: -1
  49. #Duration in seconds
  50. duration: 600
  51.  
  52. #Maximum settings values for newly created auctions (set to -1 for no limit), 64 is the maximal supported quantity
  53. maxSettings:
  54. quantity: 64
  55. price: -1
  56. increment: -1
  57. #Duration in seconds
  58. duration: -1
  59.  
  60. #Choose which actions will be broadcasted
  61. broadcasts:
  62. start: true
  63. bid: false
  64. end: false
  65. endNoBids: false
  66. cancel: false
  67. cancelAdmin: false
  68.  
  69. #Choose how many auctions player will be able to run at the same time, permission format is auctionguiplus.limit.NAME eg. auctionguiplus.limit.default
  70. limits:
  71. #"default" is required
  72. default: 3
  73. donator: 5
  74.  
  75. #Choose what gamemodes will prevent players from accessing auctions. Valid values: ADVENTURE, CREATIVE, SPECTATOR, SURVIVAL
  76. disableInGamemodes:
  77. - ADVENTURE
  78. - CREATIVE
  79. - SPECTATOR
  80.  
  81. #Date format; more info: https://docs.oracle.com/javase/tutorial/i18n/format/simpleDateFormat.html
  82. dateFormat: "dd.MM.yyyy, HH:mm"
  83. #Choose if players will be able to cancel their own auctions
  84. allowCancellingOwnAuctions: true
  85. #Choose if players will be able to bid only fixed amounts (current price + increment) or a custom one using the less/more buttons
  86. fixedBidAmountOnly: false
  87. #Choose if players will be able to bid of any size using the /bid command (when set to true) or only multiplies of the auction increment (when set to false) (takes effect only when fixedBidAmountOnly is disabled)
  88. allowAnyBidAmount: false
  89. #Choose if auctions view will be refresh automatically every X ticks (set below in autoRefreshInterval)
  90. autoRefresh: false
  91. #Interval (in ticks, 20 ticks = 1 second) between refreshing auctions view
  92. #Warning: This can cause log when set to low interval with many players online/auctions running
  93. autoRefreshInterval: 20
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement