EmojiCaptchaBot/config_example.json

157 lines
3.0 KiB
JSON
Raw Normal View History

2023-08-10 14:05:40 +03:00
{
"locale": "en",
"bot": {
"owner": 0,
"api_id": 0,
"api_hash": "",
"bot_token": "",
"workers": 1,
"max_concurrent_transmissions": 1,
"scoped_commands": true
},
"reports": {
"chat_id": "owner"
},
"database": {
"user": null,
"password": null,
"host": "127.0.0.1",
"port": 27017,
"name": "captchabot"
},
2023-08-14 12:56:59 +03:00
"defaults": {
"group": {
"locale": null,
"locale_auto": true,
"ban_failed": true,
"timeout_join": 180,
"timeout_verify": 300
}
2023-08-10 14:05:40 +03:00
},
"whitelist": {
"enabled": false,
"groups": []
},
"disabled_plugins": [],
"emojis": [
"☁️",
2023-08-10 14:11:58 +03:00
"⛑️",
"❄️",
2023-08-10 14:05:40 +03:00
"🌀",
"🌏",
"🌕",
"🌙",
2023-08-10 14:11:58 +03:00
"🌚",
2023-08-10 14:05:40 +03:00
"🌝",
2023-08-10 14:11:58 +03:00
"🍎",
"🍑",
2023-08-10 14:05:40 +03:00
"🍒",
2023-08-10 14:11:58 +03:00
"🍔",
"🍕",
2023-08-10 14:05:40 +03:00
"🍟",
"🍧",
2023-08-10 14:11:58 +03:00
"🍩",
"🍫",
2023-08-10 14:05:40 +03:00
"🍵",
2023-08-10 14:11:58 +03:00
"🍷",
"🍺",
"🎃",
"🎒",
"🎩",
"🎹",
"🎻",
"🐀",
"🐇",
"🐊",
2023-08-10 14:05:40 +03:00
"🐋",
2023-08-10 14:11:58 +03:00
"🐍",
"🐔",
"🐗",
"🐚",
"🐟",
"🐠",
"🐢",
"🐧",
2023-08-10 14:05:40 +03:00
"🐱",
2023-08-10 14:11:58 +03:00
"🐵",
"🐶",
"🐸",
"🐻",
"👑",
2023-08-10 14:05:40 +03:00
"👠",
2023-08-10 14:11:58 +03:00
"👮",
"💀",
"💄",
"💋",
"💎",
"💣",
2023-08-10 14:05:40 +03:00
"💰",
"💸",
"📍",
2023-08-10 14:11:58 +03:00
"📦",
"🔮",
2023-08-10 14:05:40 +03:00
"🥻",
2023-08-10 14:11:58 +03:00
"🥼",
"🦈",
2023-08-10 14:05:40 +03:00
"🦋",
2023-08-10 14:11:58 +03:00
"🦎",
2023-08-10 14:05:40 +03:00
"🦐",
"🦔",
2023-08-10 14:11:58 +03:00
"🦕",
"🦖",
"🦡",
2023-08-10 14:05:40 +03:00
"🦦",
"🦫",
2023-08-10 14:11:58 +03:00
"🦷",
"🧵",
"🧶",
"🪡",
"🪢",
"😀",
"🙊"
2023-08-10 14:05:40 +03:00
],
2023-08-11 16:04:21 +03:00
"commands": {
2023-08-12 19:45:23 +03:00
"help": {
"scopes": [
{
"name": "BotCommandScopeDefault"
}
]
},
2023-08-14 12:56:59 +03:00
"ban_failed": {
"scopes": [
{
"name": "BotCommandScopeAllChatAdministrators"
}
]
},
2023-08-11 16:04:21 +03:00
"language": {
"scopes": [
{
"name": "BotCommandScopeAllChatAdministrators"
}
]
},
"language_auto": {
"scopes": [
{
"name": "BotCommandScopeAllChatAdministrators"
}
]
2023-08-14 12:56:59 +03:00
},
"timeout_join": {
"scopes": [
{
"name": "BotCommandScopeAllChatAdministrators"
}
]
},
"timeout_verify": {
"scopes": [
{
"name": "BotCommandScopeAllChatAdministrators"
}
]
2023-08-11 16:04:21 +03:00
}
}
2023-08-10 14:05:40 +03:00
}