Advertisement
Guest User

Untitled

a guest
Feb 7th, 2017
518
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.57 KB | None | 0 0
  1. # iConomy 6.0.8b
  2. # @author Nijikokun <nijikokun@gmail.com>
  3. # @license GPLv2
  4. # @copyright Copyright AniGaiku LLC (C) 2010-2011
  5. ##
  6. # Setup Notes
  7. # - Seconds
  8. # Basic Table:
  9. # 1 minute = 60 seconds
  10. # 1 hour = 1 minute * 60 = 3600 seconds
  11. # 1 day = 1 hour * 24 = 86400 seconds
  12. # 1 week = 1 day * 7 = 604800 seconds
  13. # - Database
  14. # Do not use remote databases from free sites, please use either a
  15. # remote database from a personal hosted VPS or DEDI or a local
  16. # database. This will prevent any 'timeout' or 'invalid settings'
  17. # or 'cannot connect to database' issues. Thank you :)!
  18. ##
  19.  
  20. System:
  21. Permissions:
  22. Use:
  23. # Should a user have the 'iConomy.holdings' to use /money
  24. # By default this is false, so that people stop complaining that
  25. # iConomy doesn't work. Yes, people actually report that.
  26. # If you are one of those people, leave this false.
  27. Holdings: false
  28.  
  29. Default:
  30. Currency:
  31. # Major is the first segment [Major].Minor
  32.  
  33. # Major ([Major].Minor) 1.00 Dollar (With Seperate 1 Dollar)
  34. Major: [ 'Money', 'Money' ]
  35.  
  36. # Minor (Major.[Minor]) 0.23 Coins (With Seperate 0 Dollars, 23 Coins)
  37. Minor: [ 'Money', 'Money' ]
  38.  
  39. Account:
  40. # Default account balance when created
  41. Holdings: 50.0
  42.  
  43. # Rank Size
  44. Rank-Size: 5
  45.  
  46. # Controls how money is formatted through methods
  47. Formatting:
  48. # Minor allows you to use the Minor amounts for amounts <1
  49. # Example (true) 0.23 Coins and 1.23 Dollars (false) 0.23 Dollars and 1.23 Dollars
  50. Minor: false
  51.  
  52. # Seperate allows your money to be shown in an alternative way,
  53. # instead of 1.32 it will show as 1 Dollar 23 Coins
  54. # !!! NOTICE: This only works if Minor is set to true !!!
  55. Seperate: false # Example (true) 1 Dollar, 23 Coins (false) 1.23 Dollars (Only if Minor is true)
  56.  
  57. # Single shows your money in another alternative way.
  58. # Instead of 1.23 Dollars you will see: 1 Dollar.
  59. # If your money is 0.23 you will see 0 Dollars if Minor is false, 23 Coins if Minor is true.
  60. # !!! Notice: This overrides seperate !!!
  61. Single: false
  62.  
  63. # Logs all monetary transactions passed through iConomy
  64. Logging:
  65. Enabled: true
  66.  
  67. # Purges Default Balances at Loading
  68. # Good way to keep unused accounts or default accounts wiped out and lower database usage.
  69. Purging:
  70. Enabled: false
  71.  
  72. # Controls amount of money gained at a set interval.
  73. Interest:
  74. Enabled: false
  75.  
  76. # Only give interest to players who are currently online?
  77. Online: true
  78.  
  79. Announce:
  80. # Send a message when the player gains interest?
  81. Enabled: false
  82.  
  83. Interval:
  84. # Interval is done in seconds, here is a easy reference table for commonly set intervals:
  85. # 1 minute = 60 seconds
  86. # 1 hour = 1 minute * 60 = 3600 seconds
  87. # 1 day = 1 hour * 24 = 86400 seconds
  88. # 1 week = 1 day * 7 = 604800 seconds
  89. Seconds: 90
  90.  
  91. Amount:
  92. # The balance to be met where we stop giving interest.
  93. # 0.0 for no limit
  94. Cutoff: 0.0
  95.  
  96. # Percentage of holdings to give / take (Negative to take) (Overrides Min/Max)
  97. Percent: 0.0
  98.  
  99. # This is range based, to set a "flat" or "constant" rate, set each (Maximum and Minimum) to the same number.
  100. # If the two numbers are different, it will be a random amount in-between the two.
  101. Maximum: 1
  102. Minimum: 2
  103.  
  104. Database:
  105. # Databases Supported:
  106. # Flatfile, FF, mini, minidb
  107. # - These all equate to miniDB
  108. ##
  109. # item, items, inventory, inventoryDB
  110. # - These all equate to InventoryDB, which uses inventory for storage
  111. ##
  112. # xp, exp, orb, xpdb, expdb, orbdb
  113. # - These all equate to ExperienceDB, which relies on Experience for balance.
  114. ##
  115. # mysql, mysqldb
  116. # - These will attempt to connect to MySQL
  117. ##
  118. # sqlite, sqlite2, sqlite3, sqlitedb
  119. # - These will attempt to create & connect to SQLite
  120. ##
  121. # postgre, postgreSQL, postgreDB
  122. # - These will attempt to connect to PostgreSQL
  123. Type: 'mysql'
  124.  
  125. # These are for InventoryDB only.
  126. #
  127. # InventoryDB is essentially Physical Money.
  128. # It isn't logged in a database, its based on the users inventory
  129. # and the two items selected below.
  130. #
  131. # MajorItem is the item or block ID of the major currency
  132. # MinorItem is the item or block ID of the minor currency
  133. # e.g. MajorItem: 266, MinorItem: 265 for Gold/Iron
  134. MajorItem: 266
  135. MinorItem: 265
  136.  
  137. # This controls the database name, by default it is iConomy
  138. Table: 'iConomy'
  139.  
  140. # URL is for SQL Databases Only
  141. ##
  142. # Path to iConomy folder is easy, it's the COMPLETE path.
  143. # (Mine) G:\MineCraft\plugins\iConomy\
  144. # Won't be the same as yours, but it usually looks like that.
  145. ##
  146. # [H2DB Default] h2:path/to/iConomy/folder/iConomy;AUTO_RECONNECT=TRUE
  147. # [SQLite Default] sqlite:path/to/iConomy/folder/iConomy.db
  148. ##
  149. # Binary Databases use ip:port style connections.
  150. # ip
  151. # - is the connection identifier (internet protocol)
  152. # - for ipv6 usually encased in brackets [::1]
  153. # port
  154. # - the port that the database is listening on
  155. # - defaults: 3306 for mysql, postgre is either 5740 or 5432
  156. ##
  157. # [MySQL Default] mysql://localhost:3306/iConomy
  158. # [Postgre Default] postgresql://localhost:5740/iConomy
  159. URL: 'mysql://149.56.225.175:3306/mc_177'
  160.  
  161. # Login details for binary databases
  162. Username: 'mc_177'
  163. Password: 'minhasenha'
  164.  
  165. ##############################################################
  166. # !!! Conversion is not your database settings !!!
  167. ##############################################################
  168. # Conversion allows you to convert your old 5.x to the new 6.x
  169. # All is currently unused.
  170. ##############################################################
  171. # URL is for MySQL only, H2DB doesn't use it.
  172. ##############################################################
  173. Conversion:
  174. # Set to True, After converting, change this back to false!
  175. Enabled: true
  176.  
  177. # Database Type, H2DB or MySQL
  178. Type: 'MySQL'
  179.  
  180. # Database Table
  181. Table: 'iConomy'
  182.  
  183. # Database URL without table at the end.
  184. URL: 'http://149.56.225.175:3306/mc_177'
  185.  
  186. # Username / Password
  187. # H2DB does not use this. MySQL Only.
  188. Username: 'mc_177'
  189. Password: 'minhasenha'
  190.  
  191. # Unused ATM.
  192. All: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement