-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
51 lines (48 loc) · 1.23 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Tinychat account.
ACCOUNT = 'username'
# Password for account
PASSWORD = 'pass'
BOTNICK = 'nick'
ROOM = 'room'
# Fallback rtc version.
FALLBACK_RTC_VERSION = '2.0.22-4'
# Log chat messages and events.
CHAT_LOGGING = True
# Show additional info/errors in console.
DEBUG_MODE = False
# Log debug info to file.
DEBUG_TO_FILE = True
# Logging level for the debug file.
DEBUG_LEVEL = 30
# Use colors for the console.
CONSOLE_COLORS = True
# Time format.
USE_24HOUR = True
# The name of pinylib's debug log file.
DEBUG_FILE_NAME = 'pinylib_debug.log'
# The path to the config folder.
CONFIG_PATH = 'rooms/'
B_PREFIX = '!'
# If you're running two bots, set one to Master. Splits the functionality
B_IS_MASTER = True
# The maximum amount of match bans.
B_MAX_MATCH_BANS = 1
# Public commands enabled.
B_PUBLIC_CMD = True
# Greet user when joining.
B_GREET = True
# Farewell users when they leave.
B_FAREWELL = True
# Allow newuser to join the room.
B_ALLOW_NEWUSERS = True
# Allow broadcasting.
B_ALLOW_BROADCASTS = True
# Allow guests to enter the room.
B_ALLOW_GUESTS = True
# Allow lurkers to enter the room.
B_ALLOW_LURKERS = True
# Allow guest nicks.
B_ALLOW_GUESTS_NICKS = True
B_USE_KICK_AS_AUTOBAN = False
# Forgive auto bans.
B_FORGIVE_AUTO_BANS = False