Advertisement
Guest User

Untitled

a guest
Aug 1st, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. ##
  2. # iConomy Settings
  3. ##
  4.  
  5. System:
  6. # The name of your currency
  7. Currency: Coin
  8. # The initial balance a player logs on with
  9. Initial_Balance: 30.0
  10. Logging:
  11. # Should we log transactions?
  12. Enabled: false
  13. Interest:
  14. # Should we use this system?
  15. Enabled: false
  16. # How many seconds for this to happen
  17. IntervalSeconds: 60
  18. # How much minimum money do they get per interval
  19. MinimumPerInterval: 1
  20. # How much maximum money do they get per interval
  21. MaximumPerInterval: 2
  22. Database:
  23. # Can be MySQL, or SQLite
  24. Type: SQLite
  25. # Name of the database
  26. Name: minecraft
  27. # Table, Flatfile uses this as the file name.
  28. Table: iConomy
  29. MySQL:
  30. # MySQL Login Username
  31. Username: root
  32. # MySQL Login Password
  33. Password: pass
  34. # MySQL Connection Hostname (IP)
  35. Hostname: localhost
  36. # MySQL Connection Port Number
  37. Port: 3306
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement