Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2019
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. # UTF-8 require.
  2.  
  3. CreateAccountOnJoin: true
  4.  
  5. DefaultBalance: 5000.0
  6.  
  7. TopCommandEntryPerPage: 10
  8.  
  9. Format:
  10. MergeSpace: true
  11. Trim: true
  12. Major:
  13. Single: "dollar"
  14. Plural: "dollars"
  15. Minor:
  16. Single: "cent"
  17. Plural: "cents"
  18. Format: "[%Major%] [%MajorCurrency%] [%Minor%] [%MinorCurrency%]"
  19. # Format macro(Example: 123.45)
  20. # [%Major%]->123
  21. # [%Minor%]->45
  22. # [%All%]->123.45
  23. # [%MajorCurrency%]->Major currency.
  24. # [%MinorCurrency%]->Minor currency.
  25. # Format example:
  26. # "[%Major%] [%MajorCurrency%] [%Minor%] [%MinorCurrency%]":
  27. # 123.45->123 dollars 45 cents
  28. # 1.35->1 dollar 35 cents
  29. # "[%Major%] YEN":
  30. # 123.45->123 YEN
  31. # 1.35->1 YEN
  32. # "$[%All%]":
  33. # 123.45->$123.45
  34. # 1.35->$1.35
  35.  
  36. # Info: What is MergeSpace?
  37. # Summarizes the consecutive space.
  38. # [%Minor%] and [%MinorCurrency%] will be replaced in the blank in the case of a 0.
  39. # Example(amount:1.0,Format:"[%Major%] [%MajorCurrency%] [%Minor%] [%MinorCurrency%]")
  40. # MergeSpace: false -> [1 doller ]
  41. # MergeSpace: true -> [1 doller ]
  42. #
  43. # Info: What is Trim?
  44. # Remove the first and last space.
  45. # [1 doller ]
  46. # Trim: false -> [1 doller ]
  47. # Trim: true -> [1 doller]
  48.  
  49. Database:
  50. # If it is less than 1, the default value is used.(default:10)
  51. Poolsize: -1
  52. # Timeout in milliseconds.(default:600000(10 minutes))
  53. Timeout: -1
  54. # Database type. (sqlite/mysql)
  55. Type: sqlite
  56. SQLite:
  57. File: "jecon.db"
  58. MySQL:
  59. Host: "localhost:3306"
  60. Name: "jecon"
  61. User: "root"
  62. Pass: "your_mysql_password"
  63. Prefix: "jecon_"
  64. Propaties:
  65. "useSSL": "false"
  66. "useServerPrepStmts": "true"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement