Advertisement
Guest User

Untitled

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