2023-07-25 00:35:27 +02:00
|
|
|
# ================================== #
|
|
|
|
# WinDog multi-purpose chatbot #
|
|
|
|
# Licensed under AGPLv3 by OctoSpacc #
|
|
|
|
# ================================== #
|
2024-06-19 01:40:33 +02:00
|
|
|
""" # windog config start # """
|
2023-07-25 00:35:27 +02:00
|
|
|
|
2024-06-15 02:08:09 +02:00
|
|
|
# If you have modified the bot's code, you should set this
|
2024-06-17 00:32:03 +02:00
|
|
|
ModifiedSourceUrl = ""
|
2024-06-15 02:08:09 +02:00
|
|
|
|
2024-06-19 01:40:33 +02:00
|
|
|
LogToConsole = True
|
|
|
|
LogToFile = True
|
2024-06-17 00:32:03 +02:00
|
|
|
|
2024-06-19 01:40:33 +02:00
|
|
|
DumpToConsole = False
|
|
|
|
DumpToFile = False
|
2023-07-25 00:35:27 +02:00
|
|
|
|
2024-06-20 01:45:51 +02:00
|
|
|
AdminIds = [ "telegram:123456789", "telegram:634314973", "activitypub:admin@mastodon.example.com", ]
|
2023-11-19 00:27:51 +01:00
|
|
|
|
2024-06-16 01:40:30 +02:00
|
|
|
DefaultLang = "en"
|
2023-07-25 00:35:27 +02:00
|
|
|
Debug = False
|
2024-06-16 01:40:30 +02:00
|
|
|
CmdPrefixes = ".!/"
|
2023-07-25 00:35:27 +02:00
|
|
|
# False: ASCII output; True: ANSI Output (must be escaped)
|
2024-06-16 01:40:30 +02:00
|
|
|
ExecAllowed = {"date": False, "fortune": False, "neofetch": True, "uptime": False}
|
|
|
|
WebUserAgent = "WinDog v.Staging"
|
2023-11-18 01:27:42 +01:00
|
|
|
|
2024-06-19 01:40:33 +02:00
|
|
|
#ModuleGroups = (ModuleGroups | {
|
|
|
|
ModuleGroups = {
|
2024-06-17 00:32:03 +02:00
|
|
|
"Basic": "",
|
|
|
|
"Geek": "",
|
2024-06-19 01:40:33 +02:00
|
|
|
}
|
2024-06-17 00:32:03 +02:00
|
|
|
|
2024-06-19 01:40:33 +02:00
|
|
|
# Only for the platforms you want to use, uncomment the below credentials and fill with your own:
|
|
|
|
""" # end windog config # """
|