Guest User

Untitled

a guest
Oct 16th, 2017
845
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.09 KB | None | 0 0
  1. # iConomy 6.0
  2.  
  3. # @author Nijikokun <nijikokun@gmail.com>
  4.  
  5. # @license GPLv2
  6.  
  7. # @copyright Copyright AniGaiku LLC (C) 2010-2011
  8.  
  9. ##
  10.  
  11. # Setup Notes
  12.  
  13. # - Seconds
  14.  
  15. # Basic Table:
  16.  
  17. # 1 minute = 60 seconds
  18.  
  19. # 1 hour = 1 minute * 60 = 3600 seconds
  20.  
  21. # 1 day = 1 hour * 24 = 86400 seconds
  22.  
  23. # 1 week = 1 day * 7 = 604800 seconds
  24.  
  25. # - Database
  26.  
  27. # Do not use remote databases from free sites, please use either a
  28.  
  29. # remote database from a personal hosted VPS or DEDI or a local
  30.  
  31. # database. This will prevent any 'timeout' or 'invalid settings'
  32.  
  33. # or 'cannot connect to database' issues. Thank you :)!
  34.  
  35. ##
  36.  
  37.  
  38.  
  39. System:
  40.  
  41. Default:
  42.  
  43. Currency:
  44.  
  45. # Major is the first segment [Major].Minor
  46.  
  47. Major: [ 'Probux', 'Probux' ] # Major ([Major].Minor) 1.00 Dollar (With Seperate 1 Dollar)
  48.  
  49. Minor: [ 'Coin', 'Coins' ] # Minor (Major.[Minor]) 0.23 Coins (With Seperate 0 Dollars, 23 Coins)
  50.  
  51.  
  52.  
  53. Account:
  54.  
  55. # Default account balance when created
  56.  
  57. Holdings: 1000.0
  58.  
  59.  
  60.  
  61. # Controls how money is formatted through methods
  62.  
  63. Formatting:
  64.  
  65. # Minor allows you to use the Minor amounts for amounts <1
  66.  
  67. # Example (true) 0.23 Coins and 1.23 Dollars (false) 0.23 Dollars and 1.23 Dollars
  68.  
  69. Minor: false
  70.  
  71.  
  72.  
  73. # Seperate allows your money to be shown in an alternative way,
  74.  
  75. # instead of 1.32 it will show as 1 Dollar 23 Coins
  76.  
  77. # !!! NOTICE: This only works if Minor is set to true !!!
  78.  
  79. Seperate: false # Example (true) 1 Dollar, 23 Coins (false) 1.23 Dollars (Only if Minor is true)
  80.  
  81.  
  82.  
  83. # Single shows your money in another alternative way.
  84.  
  85. # Instead of 1.23 Dollars you will see: 1 Dollar.
  86.  
  87. # If your money is 0.23 you will see 0 Dollars if Minor is false, 23 Coins if Minor is true.
  88.  
  89. # !!! Notice: This overrides seperate !!!
  90.  
  91. Single: false
  92.  
  93.  
  94.  
  95. # Logs all monetary transactions passed through iConomy
  96.  
  97. Logging:
  98.  
  99. Enabled: false
  100.  
  101.  
  102.  
  103. # Controls amount of money gained at a set interval.
  104.  
  105. Interest:
  106.  
  107. Enabled: false
  108.  
  109.  
  110.  
  111. # Only give interest to players who are currently online?
  112.  
  113. Online: true
  114.  
  115.  
  116.  
  117. Announce:
  118.  
  119. # Send a message when the player gains interest?
  120.  
  121. Enabled: false
  122.  
  123.  
  124.  
  125. Interval:
  126.  
  127. # Interval is done in seconds, here is a easy reference table for commonly set intervals:
  128.  
  129. # 1 minute = 60 seconds
  130.  
  131. # 1 hour = 1 minute * 60 = 3600 seconds
  132.  
  133. # 1 day = 1 hour * 24 = 86400 seconds
  134.  
  135. # 1 week = 1 day * 7 = 604800 seconds
  136.  
  137. Seconds: 60
  138.  
  139.  
  140.  
  141. Amount:
  142.  
  143. # The balance to be met where we stop giving interest.
  144.  
  145. # 0.0 for no limit
  146.  
  147. Cutoff: 0.0
  148.  
  149.  
  150.  
  151. # Percentage of holdings to give / take (Negative to take) (Overrides Min/Max)
  152.  
  153. Percent: 0.0
  154.  
  155.  
  156.  
  157. # This is range based, to set a "flat" or "constant" rate, set each (Maximum and Minimum) to the same number.
  158.  
  159. # If the two numbers are different, it will be a random amount in-between the two.
  160.  
  161. Maximum: 1
  162.  
  163. Minimum: 2
  164.  
  165.  
  166.  
  167. Database:
  168.  
  169. # Databases Supported:
  170.  
  171. # Flatfile, FF, mini, minidb
  172.  
  173. # - These all equate to miniDB
  174.  
  175. ##
  176.  
  177. # item, items, inventory, inventoryDB
  178.  
  179. # - These all equate to InventoryDB, which uses inventory for storage
  180.  
  181. ##
  182.  
  183. # mysql, mysqldb
  184.  
  185. # - These will attempt to connect to MySQL
  186.  
  187. ##
  188.  
  189. # sqlite, sqlite2, sqlite3, sqlitedb
  190.  
  191. # - These will attempt to create & connect to SQLite
  192.  
  193. ##
  194.  
  195. # postgre, postgreSQL, postgreDB
  196.  
  197. # - These will attempt to connect to PostgreSQL
  198.  
  199. Type: 'mysql'
  200.  
  201.  
  202.  
  203. # These are for InventoryDB only.
  204.  
  205. # MajorItem is the item or block ID of the major currency
  206.  
  207. # MinorItem is the item or block ID of the minor currency
  208.  
  209. # e.g. MajorItem: 266, MinorItem: 265 for Gold/Iron
  210.  
  211. MajorItem: 266
  212.  
  213. MinorItem: 265
  214.  
  215.  
  216.  
  217. # This controls the database name, by default it is iConomy
  218.  
  219. Table: 'iConomy'
  220.  
  221.  
  222.  
  223. # URL is for SQL Databases Only
  224.  
  225. ##
  226.  
  227. # Path to iConomy folder is easy, it's the COMPLETE path.
  228.  
  229. # (Mine) G:\MineCraft\plugins\iConomy\
  230.  
  231. # Won't be the same as yours, but it usually looks like that.
  232.  
  233. ##
  234.  
  235. # [H2DB Default] h2:path/to/iConomy/folder/iConomy;AUTO_RECONNECT=TRUE
  236.  
  237. # [SQLite Default] sqlite:path/to/iConomy/folder/iConomy.db
  238.  
  239. ##
  240.  
  241. # Binary Databases use ip:port style connections.
  242.  
  243. # ip
  244.  
  245. # - is the connection identifier (internet protocol)
  246.  
  247. # - for ipv6 usually encased in brackets [::1]
  248.  
  249. # port
  250.  
  251. # - the port that the database is listening on
  252.  
  253. # - defaults: 3306 for mysql, postgre is either 5740 or 5432
  254.  
  255. ##
  256.  
  257. # [MySQL Default] mysql://localhost:3306/iConomy
  258.  
  259. # [Postgre Default] postgresql://localhost:5740/iConomy
  260.  
  261. URL: '"§#%!"&"/#!#¤%!#¤&/'
  262.  
  263.  
  264.  
  265. # Login details for binary databases
  266.  
  267. Username: '!#¤%!"&'
  268.  
  269. Password: '!#""!#%'
Add Comment
Please, Sign In to add comment