-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbotconfig_template.py
60 lines (53 loc) · 1.42 KB
/
botconfig_template.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
52
53
54
55
56
57
58
59
60
logo = '''
__ __ _ _ ______ _
\ \ / / | (_) | ____| |
\ \ /\ / /__ ___ __| |_ ___ | |__ | | _____ _____ _ __ ___
\ \/ \/ / _ \ / _ \ / _` | |/ _ \ | __| | |/ _ \ \ /\ / / _ \ '__/ __|
\ /\ / (_) | (_) | (_| | | __/ | | | | (_) \ V V / __/ | \__ \\
\/ \/ \___/ \___/ \__,_|_|\___| |_| |_|\___/ \_/\_/ \___|_| |___/
'''
TOKEN = ''
VERSION = 'v3.0'
logfile = 'logfile.json'
plugins = []
def init_plugins(bot):
plugins = [
]
# Database Information
database = {
'link': 'woodie.db',
'tables': {
'teams': {
'name': 'memberteams',
'columns': ['uid', 'team']
},
'ranks': {
'name': 'ranks',
'columns': ['uid', 'rank']
},
'stickers': {
'name': 'stickerbinds',
'columns': ['sticker', 'command']
},
'xp': {
'name': 'userxp',
'columns': ['uid', 'xp']
},
'messages': {
'name': 'messages',
'columns': ['key', 'message']
},
'requests': {
'name': 'requests',
'columns': ['uid', 'request']
},
'usernames': {
'name': 'usernames',
'columns': ['username', 'uid']
},
'warns': {
'name': 'warns',
'columns': ['uid', 'num']
}
}
}