-
Notifications
You must be signed in to change notification settings - Fork 0
/
bot_config.py
executable file
·46 lines (45 loc) · 1.58 KB
/
bot_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
import time
import subprocess
bot_config = {
"prefix":"+",
"footer":"© rullinoiz - {0}".format(subprocess.run(['git','log','--pretty=format:"commit: %h"','-1'], capture_output=True, text=True).stdout[1:-1]),
"version":"40%",
"datapath":"user.db",
"serverpath":"serverdata.db",
"botlogs":"botlogs.txt",
"dailymoney":500,
"expincrement":50,
"expstart":100,
"moneyexp":20,
"server_data_desc":{
"levelmsg": {
"desc": "Set the level up message. Comes with variables {user} and {level}.",
"type": "str",
},
"levelup_announce": {
"desc": "Whether or not to announce that a user has leveled up",
"type": "bool"
},
"bruhreact": {
"desc": "Set whether the bot reacts to any message with the word \"bruh\" in it",
"type": "bool",
},
"speech_bubble": {
"desc": "Set whether the bot randomly (1% chance) sends a speech bubble gif to destroy an argument",
"type": "bool",
},
"i_saw_what_you_deleted": {
"desc": "Set whether to post 'i saw what you deleted' gif when a user deletes a message",
"type": "bool",
},
"lowtiergod": {
"desc": "Set whether to reply to messages with various horrible game titles in them with lowtiergod",
"type": "bool",
},
"lingering_levelup": {
"desc": "Set whether levelup messages are deleted after some time",
"type": "bool",
},
},
"le_admin":441422344851030046
}