Advertisement
Guest User

Untitled

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