Advertisement
Guest User

Untitled

a guest
Aug 7th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. ##
  2. # iConomy Settings
  3. ##
  4.  
  5. System:
  6. # The name of your currency
  7. Currency: GBP
  8. # The initial balance a player logs on with
  9. Initial_Balance: 100.0
  10. # Should we log transactions?
  11. Logging:
  12. # Logging is logged to a database table named [table]_Transactions
  13. # It will not be in a file like before it is all through the transaction
  14. # system which other plugins can tie into.
  15. Enabled: false
  16. # Should we use this system?
  17. Interest:
  18. # Default is false
  19. Enabled: true
  20. # How many seconds for this to happen
  21. IntervalSeconds: 3600
  22. # Leave this at 0.0 if you wish to use Min/Max!
  23. # Otherwise, this will over-ride that.
  24. # This is the DIRECT amount, it's not dynamic and will not change.
  25. FlatRate: 0.0
  26. # How much minimum money do they get per interval
  27. MinimumPerInterval: 0.01
  28. # How much maximum money do they get per interval
  29. MaximumPerInterval: 2
  30. Percentage: 1%
  31. Database:
  32. # Can be MySQL, or SQLite
  33. Type: MySQL
  34. # Name of the database
  35. Name: minecraft
  36. # Table name
  37. Table: iConomy
  38. # Mysql Details
  39. MySQL:
  40. # MySQL Login Username
  41. Username: 'iConomy'
  42. # MySQL Login Password
  43. Password: '33512121'
  44. # MySQL Connection Hostname (IP)
  45. Hostname: 'localhost'
  46. # MySQL Connection Port Number
  47. Port: 3306
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement