Advertisement
Guest User

Untitled

a guest
Oct 9th, 2017
426
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.38 KB | None | 0 0
  1. ############################################################
  2. # +------------------------------------------------------+ #
  3. # | EssentialsEco | #
  4. # +------------------------------------------------------+ #
  5. ############################################################
  6.  
  7. # For more information, visit http://wiki.ess3.net/wiki/Essentials_Economy
  8.  
  9. # Defines the balance with which new players begin. Defaults to 0.
  10. starting-balance: 0
  11.  
  12. # worth-# defines the value of an item when it is sold to the server via /sell.
  13. # These are now defined in worth.yml
  14.  
  15. # Defines the cost to use the given commands PER USE.
  16. # Some commands like /repair have sub-costs, check the wiki for more information.
  17. command-costs:
  18. # /example costs $1000 PER USE
  19. #example: 1000
  20. # /kit tools costs $1500 PER USE
  21. #kit-tools: 1500
  22.  
  23. # Set this to a currency symbol you want to use.
  24. # Remember, if you want to use special characters in this document,
  25. # such as accented letters, you MUST save the file as UTF-8, not ANSI.
  26. currency-symbol: '$'
  27.  
  28. # Set the maximum amount of money a player can have.
  29. # The amount is always limited to 10 trillion because of the limitations of a java double.
  30. max-money: 10000000000000
  31.  
  32. # Set the minimum amount of money a player can have (must be above the negative of max-money).
  33. # Setting this to 0, will disable overdrafts/loans completely. Users need 'essentials.eco.loan' perm to go below 0.
  34. min-money: 0
  35.  
  36. # Enable this to log all interactions with trade/buy/sell signs and sell command.
  37. economy-log-enabled: false
  38.  
  39. # Use this option to force superperms-based permissions handler regardless of detected installed perms plugin.
  40. # This is useful if you want superperms-based permissions (with wildcards) for custom permissions plugins.
  41. # Default is false.
  42. use-bukkit-permissions: false
  43.  
  44. # Minimum acceptable amount to be used in /pay.
  45. minimum-pay-amount: 0.001
  46.  
  47. # The format of currency, excluding symbols. See currency-sumbol-format-locale for symbol configuration.
  48. #
  49. # "#,##0.00" is how the majority of countries display currency.
  50. currency-format: "#,##0.00"
  51.  
  52. # Format currency symbols. Some locales use , and . interchangeably.
  53. # Some formats do not display properly in-game due to faulty Minecraft font rendering.
  54. #
  55. # For 1.234,50 use de-DE
  56. # For 1,234.50 use en-US
  57. # For 1'234,50 use fr-ch
  58. #currency-symbol-format-locale: en-US
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement