Advertisement
Guest User

Untitled

a guest
Jul 13th, 2016
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.59 KB | None | 0 0
  1. # Instead of 1.23 Dollars you will see: 1 Dollar.
  2. # If your money is 0.23 you will see 0 Dollars if Minor is false, 23 Coins if Minor is true.
  3. # !!! Notice: This overrides seperate !!!
  4. Single: false
  5.  
  6. # Logs all monetary transactions passed through iConomy
  7. Logging:
  8. Enabled: false
  9.  
  10. # Purges Default Balances at Loading
  11. # Good way to keep unused accounts or default accounts wiped out and lower database usage.
  12. Purging:
  13. Enabled: true
  14.  
  15. # Controls amount of money gained at a set interval.
  16. Interest:
  17. Enabled: false
  18.  
  19. # Only give interest to players who are currently online?
  20. Online: true
  21.  
  22. Announce:
  23. # Send a message when the player gains interest?
  24. Enabled: false
  25.  
  26. Interval:
  27. # Interval is done in seconds, here is a easy reference table for commonly set intervals:
  28. # 1 minute = 60 seconds
  29. # 1 hour = 1 minute * 60 = 3600 seconds
  30. # 1 day = 1 hour * 24 = 86400 seconds
  31. # 1 week = 1 day * 7 = 604800 seconds
  32. Seconds: 60
  33.  
  34. Amount:
  35. # The balance to be met where we stop giving interest.
  36. # 0.0 for no limit
  37. Cutoff: 0.0
  38.  
  39. # Percentage of holdings to give / take (Negative to take) (Overrides Min/Max)
  40. Percent: 0.0
  41.  
  42. # This is range based, to set a "flat" or "constant" rate, set each (Maximum and Minimum) to the same number.
  43. # If the two numbers are different, it will be a random amount in-between the two.
  44. Maximum: 1
  45. Minimum: 2
  46.  
  47. Database:
  48. # Databases Supported:
  49. # Flatfile, FF, mini, minidb
  50. # - These all equate to miniDB
  51. ##
  52. # item, items, inventory, inventoryDB
  53. # - These all equate to InventoryDB, which uses inventory for storage
  54. ##
  55. # xp, exp, orb, xpdb, expdb, orbdb
  56. # - These all equate to ExperienceDB, which relies on Experience for balance.
  57. ##
  58. # mysql, mysqldb
  59. # - These will attempt to connect to MySQL
  60. ##
  61. # sqlite, sqlite2, sqlite3, sqlitedb
  62. # - These will attempt to create & connect to SQLite
  63. ##
  64. # postgre, postgreSQL, postgreDB
  65. # - These will attempt to connect to PostgreSQL
  66. Type: 'minidb'
  67.  
  68. # These are for InventoryDB only.
  69. #
  70. # InventoryDB is essentially Physical Money.
  71. # It isn't logged in a database, its based on the users inventory
  72. # and the two items selected below.
  73. #
  74. # MajorItem is the item or block ID of the major currency
  75. # MinorItem is the item or block ID of the minor currency
  76. # e.g. MajorItem: 266, MinorItem: 265 for Gold/Iron
  77. MajorItem: 266
  78. MinorItem: 265
  79.  
  80. # This controls the database name, by default it is iConomy
  81. Table: 'iConomy'
  82.  
  83. # URL is for SQL Databases Only
  84. ##
  85. # Path to iConomy folder is easy, it's the COMPLETE path.
  86. # (Mine) G:\MineCraft\plugins\iConomy\
  87. # Won't be the same as yours, but it usually looks like that.
  88. ##
  89. # [H2DB Default] h2:path/to/iConomy/folder/iConomy;AUTO_RECONNECT=TRUE
  90. # [SQLite Default] sqlite:path/to/iConomy/folder/iConomy.db
  91. ##
  92. # Binary Databases use ip:port style connections.
  93. # ip
  94. # - is the connection identifier (internet protocol)
  95. # - for ipv6 usually encased in brackets [::1]
  96. # port
  97. # - the port that the database is listening on
  98. # - defaults: 3306 for mysql, postgre is either 5740 or 5432
  99. ##
  100. # [MySQL Default] mysql://localhost:3306/iConomy
  101. # [Postgre Default] postgresql://localhost:5740/iConomy
  102. URL: 'mysql://localhost:3306/iConomy'
  103.  
  104. # Login details for binary databases
  105. Username: 'root'
  106. Password: ''
  107.  
  108. ##############################################################
  109. # !!! Conversion is not your database settings !!!
  110. ##############################################################
  111. # Conversion allows you to convert your old 5.x to the new 6.x
  112. # All is currently unused.
  113. ##############################################################
  114. # URL is for MySQL only, H2DB doesn't use it.
  115. ##############################################################
  116. Conversion:
  117. # Set to True, After converting, change this back to false!
  118. Enabled: false
  119.  
  120. # Database Type, H2DB or MySQL
  121. Type: 'MySQL'
  122.  
  123. # Database Table
  124. Table: 'namysql.ggservers.com'
  125.  
  126. # Database URL without table at the end.
  127. URL: 'mysql://localhost:3306 - I don't know what to change this to.'
  128.  
  129. # Username / Password
  130. # H2DB does not use this. MySQL Only.
  131. Username: 'p113_716'
  132. Password: 'censored'
  133.  
  134. # Unused ATM.
  135. All: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement