Advertisement
Guest User

Untitled

a guest
Aug 10th, 2017
386
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. ##
  2.  
  3. # iConomy Settings
  4.  
  5. ##
  6.  
  7.  
  8.  
  9. System:
  10.  
  11. # The name of your currency
  12.  
  13. Currency: Adelia(s)
  14.  
  15. # The initial balance a player logs on with
  16.  
  17. Initial_Balance: 100.0
  18.  
  19. Logging:
  20.  
  21. # Should we log transactions?
  22.  
  23. Enabled: true
  24.  
  25. Interest:
  26.  
  27. # Should we use this system?
  28.  
  29. Enabled: true
  30.  
  31. # How many seconds for this to happen
  32.  
  33. IntervalSeconds: 600
  34.  
  35. # Leave this at 0.0 if you wish to use Min/Max!
  36.  
  37. # Otherwise, this will over-ride that.
  38.  
  39. # This is the DIRECT amount, it's not dynamic and will not change.
  40.  
  41. FlatRate: 5.0
  42.  
  43. # How much minimum money do they get per interval
  44.  
  45. MinimumPerInterval: 1
  46.  
  47. # How much maximum money do they get per interval
  48.  
  49. MaximumPerInterval: 2
  50.  
  51. Database:
  52.  
  53. # Can be MySQL, or SQLite
  54.  
  55. Type: MySQL
  56.  
  57. # Should balances be cached and saved when requested (true)
  58.  
  59. # Or do you wish for it to be constantly grabbing the balance
  60.  
  61. # from the database (false)
  62.  
  63. Cache: true
  64.  
  65. # Name of the database
  66.  
  67. Name: minecraft
  68.  
  69. # Table, Flatfile uses this as the file name.
  70.  
  71. Table: iConomy
  72.  
  73. MySQL:
  74.  
  75. # MySQL Login Username
  76.  
  77. Username: ***
  78. # MySQL Login Password
  79.  
  80. Password: ***
  81. # MySQL Connection Hostname (IP)
  82.  
  83. Hostname: 127.0.0.1
  84.  
  85. # MySQL Connection Port Number
  86.  
  87. Port: 3306
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement