Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.77 KB | None | 0 0
  1. A: Money on hand can be lost, money in banks should not
  2. # be altered upon plugin specifictions in iConomy 5.0
  3. # - Interest amount is done in seconds.
  4. # - Online
  5. # If only true, only one bank / account will recieve money for that player.
  6. # If only false, it will go through each bank / account and deposit money.
  7. # - Announce
  8. # Sends message each time a player recieves money.
  9. # - Amount
  10. # - On
  11. # Each time interest runs you can either deposit the money into a bank (Interest)
  12. # or directly into a players holdings (Wage).
  13. # - Interval
  14. # - Seconds
  15. # Basic Table:
  16. # 1 minute = 60 seconds
  17. # 1 hour = 1 minute * 60 = 3600 seconds
  18. # 1 day = 1 hour * 24 = 86400 seconds
  19. # 1 week = 1 day * 7 = 604800 seconds
  20. # - Database
  21. # - Type
  22. # Can only be h2 or MySQL, no longer supports SQLite.
  23. # - Settings
  24. # If you choose h2, only the first two are needed, do not alter MySQL.
  25. # - MySQL
  26. # Do not use remote databases from free sites, please use either a
  27. # remote database from a personal hosted VPS or DEDI or a local
  28. # database. This will prevent any 'timeout' or 'invalid settings'
  29. # or 'cannot connect to database' issues. Thank you :)!
  30. ##
  31.  
  32. System:
  33. Default:
  34. Currency:
  35. Major: [ 'Dollar', 'Dollars' ] # Major ([Major].Minor) 1.00 Dollar (With Seperate 1 Dollar)
  36. Minor: [ 'Coin', 'Coins' ] # Minor (Major.[Minor]) 0.23 Coins (With Seperate 0 Dollars, 23 Coins)
  37. Account:
  38. Holdings: 200.0 # Default holdings on hand upon join / creation.
  39. Bank:
  40. Name: Bank of Notch # Default Bank Name
  41. Currency:
  42. Major: [ 'Dollar', 'Dollars' ]
  43. Minor: [ 'Coin', 'Coins' ]
  44. Account:
  45. Fee: 20.0 # Default cost to register an account
  46. Holdings: 50.0 # Default initial account holdings
  47. Formatting:
  48. Minor: false # Example (true) 0.23 Coins and 1.23 Dollars (false) 0.23 Dollars and 1.23 Dollars
  49. Seperate: false # Example (true) 1 Dollar, 23 Coins (false) 1.23 Dollars (Only if Minor is true)
  50. Logging:
  51. Enabled: false # Logs transactions done inside iConomy only, other plugins must utilize the api. (Logs to SQL)
  52. Banking:
  53. Enabled: true
  54. Accounts:
  55. Multiple: false
  56. Interest:
  57. Enabled: true
  58. Online: false # Only give to players who are online?
  59. Announce:
  60. Enabled: false
  61. Interval:
  62. Seconds: 216000
  63. Amount:
  64. Cutoff: 50000.0 # Amount limit to be met until we stop giving interest. (0.0 for no limit)
  65. On: 'banks' # Banks or Players
  66. Percent: 1.0 # Percent of holdings to give / take (Negative to take) (Overrides Min/Max)
  67. Maximum: 1 # (Range) Maximum amount for random in between. (Make Max/Min equal for a flat-rate amount ie: 5/5)
  68. Minimum: 2 # (Range) Minimum amount for random in between.
  69. Database:
  70. Type: 'H2SQL' # H2 or MySQL
  71. Settings:
  72. Name: 'minecraft'
  73. Table: 'iConomy'
  74. MySQL:
  75. Username: 'root'
  76. Password: 'pass'
  77. Hostname: 'localhost'
  78. Port: 3306
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement