Guest User

GringottsConfig

a guest
Aug 3rd, 2020
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.26 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. # regex that create a vault if matches with a sign
  7. vault_pattern: '[^\[]*\[(\w*) ?vault\]'
  8.  
  9. # currency name and value config
  10. currency:
  11.  # currency name to use in messages
  12.   name:
  13.     singular: Silver
  14.     plural: Silver
  15.  
  16.   # number of decimal digits supported by currency value (0 for whole numbers only)
  17.   digits: 0
  18.  
  19.   # Display account balances with individual denomination names
  20.   named-denominations: true
  21.  
  22.   # value of individual denominations. default: emerald: 1, emerald block: 9
  23.   denominations:
  24.     - material: emerald
  25.       value: 1
  26.       displayname: Silver
  27.       unit-name: Silver
  28.       unit-name-plural: Silver
  29.    
  30. # tax on /money pay transactions
  31. transactiontax:
  32.   flat: 0.0
  33.   rate: 0.0
  34.  
  35. # balance to start an account with (purely virtual)
  36. startingbalance:
  37.   player: 0
  38.   faction: 0
  39.   town: 0
  40.   nation: 0
  41.  
  42. # globally (dis)allow use of vault types
  43. usevault:
  44.   container: true
  45.   enderchest: true
  46.  
  47. # whether money/balance commands show vault and inventory balance separately
  48. balance:
  49.   show-vault: true
  50.   show-inventory: true
Add Comment
Please, Sign In to add comment