Advertisement
Guest User

Untitled

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