Advertisement
Guest User

Untitled

a guest
Dec 29th, 2018
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.66 KB | None | 0 0
  1. # UTF-8 require.
  2.  
  3. CreateAccountOnJoin: true
  4.  
  5. DefaultBalance: 10.0
  6.  
  7. TopCommandEntryPerPage: 10
  8.  
  9. Format:
  10.   MergeSpace: true
  11.   Trim: true
  12.   Major:
  13.     Single: "アデナ"
  14.     Plural: "アデナ"
  15.   Minor:
  16.     Single: "ANEDA"
  17.     Plural: "ANEDA"
  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 アデナ 45 ANEDA
  28. #     1.35->1 アデナ 35 ANEDA
  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 アデナ  ]
  41. #   MergeSpace: true  -> [1 アデナ ]
  42. #
  43. # Info: What is Trim?
  44. # Remove the first and last space.
  45. # [1 アデナ ]
  46. #   Trim: false -> [1 アデナ ]
  47. #   Trim: true  -> [1 アデナ]
  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