Advertisement
maturus

Untitled

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