Advertisement
Guest User

config

a guest
Mar 28th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.97 KB | None | 0 0
  1. database:
  2. #Database backend type, can be set to mysql or sqlite
  3. type: sqlite
  4. #MySQL database host
  5. mySQLHost: localhost
  6. #MySQL connection port number
  7. mySQLPort: 3306
  8. #MySQL database name
  9. mySQLDatabase: db
  10. #MySQL database user
  11. mySQLUser: root
  12. #MySQL user's password
  13. mySQLPassword: ""
  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: true
  23. #Define whether transactions will be logged to a separate log
  24. toFile: false
  25. #Date format of transactions (http://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html)
  26. formatDate: "dd/MM/yyyy HH:mm:ss"
  27. #Log message formats
  28. messageFormats:
  29. start: "%player% dépose %quantity% x %item% pour une enchère #%id%! Prix de départ: %startingprice% Cubixx, Surenchère minimum: %increment% Cubixx, durée: %duration%"
  30. bid: "%player% surenchérie de %amount% Cubixx sur l'enchère #%id% (%quantity% x %item%)."
  31. end: "%buyer% gagne l'enchère #%id% (%quantity% x %item%) pour la somme de %price% Cubixx."
  32. endNoBids: "L'enchère #%id% (%quantity% x %item%) c'est terminé sans aucune offre."
  33. cancel: "L'enchère #%id% (%quantity% x %item%) a été annulé par son propriétaire."
  34. cancelAdmin: "L'enchère #%id% (%quantity% x %item%) a été annulé par %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: -1
  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: true
  64. end: true
  65. endNoBids: true
  66. cancel: true
  67. cancelAdmin: true
  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. 2: 2
  73. 4: 4
  74. 6: 6
  75. 8: 8
  76. 10: 10
  77. 12: 12
  78. 14: 14
  79. 16: 16
  80. 18: 18
  81. 20: 20
  82.  
  83. #Choose what gamemodes will prevent players from accessing auctions. Valid values: ADVENTURE, CREATIVE, SPECTATOR, SURVIVAL
  84. disableInGamemodes:
  85. - ADVENTURE
  86. - CREATIVE
  87. - SPECTATOR
  88.  
  89. #Date format; more info: https://docs.oracle.com/javase/tutorial/i18n/format/simpleDateFormat.html
  90. dateFormat: "dd.MM.yyyy, HH:mm"
  91. #Choose if players will be able to cancel their own auctions
  92. allowCancellingOwnAuctions: true
  93. #Choose if players will be able to bid only fixed amounts (current price + increment) or a custom one using the less/more buttons
  94. fixedBidAmountOnly: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement