Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 17th, 2012  |  syntax: Lua  |  size: 1.23 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. ############################################################
  2. # +------------------------------------------------------+ #
  3. # |                   EssentialsEco                      | #
  4. # +------------------------------------------------------+ #
  5. ############################################################
  6.  
  7. # Defines the balance with which new players begin.  Defaults to 0.
  8. starting-balance: 0
  9.  
  10. # worth-# defines the value of an item when it is sold to the server via /sell.
  11. # These are now defined in worth.yml
  12.  
  13. # Defines the cost to use the given commands PER USE
  14. command-costs:
  15.   # /example costs $1000 PER USE
  16.   #example: 1000
  17.   # /kit tools costs $1500 PER USE
  18.   #kit-tools: 1500
  19.  
  20. # Set this to a currency symbol you want to use.
  21. currency-symbol: '$'
  22.  
  23. # Set the maximum amount of money a player can have
  24. # The amount is always limited to 10 trillions because of the limitations of a java double
  25. max-money: 10000000000000
  26.  
  27. # Set the minimum amount of money a player can have
  28. # Setting this to 0, will disable overdrafts/loans compeltely.  Users need 'essentials.eco.loan' perm to go below 0.
  29. min-money: -10000000000000
  30.  
  31. # Enable this to log all interactions with trade/buy/sell signs and sell command
  32. economy-log-enabled: false