Advertisement
Guest User

gringotts config

a guest
Jan 27th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. # for details on configuration, see https://github.com/MinecraftWars/Gringotts/blob/master/doc/configuration.md
  2.  
  3. # supported languages: "custom" (default, english) and "de" (german)
  4. language: custom
  5.  
  6. #currency name and value config
  7. currency:
  8. # currency name to use in messages
  9. name: Galleon
  10. plural: Galleons
  11.  
  12. # number of decimal digits supported by currency value (0 for whole numbers only)
  13. digits: 0
  14.  
  15. # Display account balances with individual denomination names
  16. named-denominations: false
  17.  
  18. # value of individual denominations. default: emerald: 1, emerald block: 9
  19. denominations:
  20. - material: iron_ingot
  21. value: 1
  22. - material: gold_nugget
  23. value: 17
  24. - material: gold_ingot
  25. value: 29
  26. - displayname: 'Galleon'
  27. - lore: ['A shiny Galleon']
  28.  
  29. # tax on /money pay transactions
  30. transactiontax:
  31. flat: 0.0
  32. rate: 0.0
  33.  
  34. # balance to start an account with (purely virtual)
  35. startingbalance:
  36. player: 24
  37. faction: 0
  38. town: 0
  39. nation: 0
  40.  
  41. # globally (dis)allow use of vault types
  42. usevault:
  43. container: true
  44. enderchest: true
  45.  
  46. # whether money/balance commands show vault and inventory balance separately
  47. balance:
  48. show-vault: true
  49. show-inventory: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement