1
- # Bot token.
2
- # Example: token="MTI5sYExDvhjJK5YxNjA0NDY5NQ.GvsdD5.7taYXjy1zVKDOxAIMc1pX2d_wt86SmCjWi9se556 "
1
+ # Bot token (required)
2
+ # token="YOUR_TELEGRAM_BOT_TOKEN "
3
3
token = " "
4
4
5
- # Choose one type for save users and guilds data. Types: "mysql" | "sql" | "mongodb" | "json"
6
- # Example: database_type="json"
5
+ # Database type (required): options are "mysql" | "sql" | "mongodb" | "json"
6
+ # database_type="json"
7
7
database_type = " "
8
8
9
- # If you choose "mongodb" type place your mongo url.
10
- # Example: database_mongoURL="mongodb+srv://test:123456789@cluster0.b6grdg6.mongodb.net/?retryWrites=true&w=majority "
9
+ # (Optional) If using MongoDB:
10
+ # database_mongoURL="your-mongo-url "
11
11
database_mongoURL = " "
12
12
13
- # If you choose "mysql" type place your Mysql server host name.
14
- # Example: database_msql_host="test"
13
+ # (Optional) If using MySQL:
14
+ # database_msql_host="your-mysql-host"
15
+ # database_msql_user="your-mysql-user"
16
+ # database_msql_password="your-mysql-password"
17
+ # database_msql_database="your-mysql-database"
15
18
database_msql_host = " "
16
-
17
- # If you choose "mysql" type place your Mysql server username.
18
- # Example: database_msql_user="test123"
19
19
database_msql_user = " "
20
-
21
- # If you choose "mysql" type place your Mysql server password.
22
- # Example: database_msql_password="123456789"
23
20
database_msql_password = " "
24
-
25
- # If you choose "mysql" type place your Mysql server database name.
26
- # Example: database_msql_database="database"
27
21
database_msql_database = " "
28
22
29
- # Support server invite link.
30
- # Example: support_url="https://discord.gg/AfkuXgCKAQ "
23
+ # Support server invite link (optional)
24
+ # support_url="https://discord.gg/yourInvite "
31
25
support_url = " "
32
26
33
- # Source owners.
34
- # Example: owners="["546464654564565 ", "88864545646467878"]"
27
+ # Source owners (optional, comma-separated list of owner IDs)
28
+ # owners='["123456789 ", "987654321"]'
35
29
owners = " "
36
30
37
- # Source anti crash controller.
38
- # Example: anti_crash=true
31
+ # Anti crash controller (optional)
32
+ # anti_crash=true
39
33
anti_crash = " "
40
34
41
- # Send console erros to discord.
42
- # Example: logger=true
35
+ # Send console errors to Discord (optional)
36
+ # logger=true
43
37
logger = " "
0 commit comments