-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbot.py
100 lines (76 loc) · 3.97 KB
/
bot.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
import discord
import game
import character
import asyncio
import fate
from setting_storage import settings_from_user_id, target_settings_from_user_id
import setting_storage
import stats_storage
import stats
import settings
import json
import help
from settings import Settings
class MyClient(discord.Client):
async def on_ready(self):
print('Logged on as', self.user)
setting_storage.load_settings()
stats_storage.load_stats()
async def setup_hook(self) -> None:
# create the background task and run it in the background
self.bg_task = self.loop.create_task(self.autosave_task())
async def autosave_task(self):
print('Starting autosave task')
await self.wait_until_ready()
while not self.is_closed():
await asyncio.sleep(120)
print ('Autosaving')
await setting_storage.save_settings()
await stats_storage.save_stats()
async def on_message(self, message):
# don't respond to ourselves
if message.author == self.user:
return
if message.content.startswith('!join'):
await game.join_game(message)
if message.content.startswith('!leave'):
await game.leave_game(message)
if message.content.startswith('!char'):
await character.handle_char(message)
if message.content == '!quit':
if message.author.id != 261495649327906816:
return
await message.channel.send('shutting down')
await self.close()
if message.content == '!roll':
await game.player_roll(message)
if message.content == '!pass' or message.content == '!bank':
await game.player_pass(message)
if message.content.startswith('!helpless'):
await settings.handle_helpless(client, message, message.author.name, message.channel, settings_from_user_id(message.author))
elif message.content.startswith('!h'):
await help.handle_help(client, message, message.author.name, message.channel, settings_from_user_id(message.author))
if message.content.startswith('!fate'):
await fate.handle_fate(client, message, message.author.name, message.channel, settings_from_user_id(message.author))
if message.content.startswith('!set'):
await settings.handle_set(client, message, message.author.name, message.channel, settings_from_user_id(message.author))
if message.content.startswith('!viewsettings'):
await settings.handle_view_settings(client, message, message.author.name, message.channel, settings_from_user_id(message.author))
if message.content.startswith('!tfate'):
await fate.handle_target_fate(client, message, message.author.name, message.channel, target_settings_from_user_id(message.author))
if message.content.startswith('!tset'):
await settings.handle_set(client, message, message.author.name, message.channel, target_settings_from_user_id(message.author))
if message.content.startswith('!tviewsettings'):
await settings.handle_view_settings(client, message, message.author.name, message.channel, target_settings_from_user_id(message.author))
if message.content.startswith('!stats'):
await stats.handle_view_stats(client, message, message.author.name, message.channel)
if message.content.startswith('!save'):
await setting_storage.save_settings()
if message.content.startswith('!wfate'):
await fate.handle_whisper_fate(client, message, message.author.name, message.channel, target_settings_from_user_id(message.author))
with open('.connections.json') as json_data:
connections = json.load(json_data)
intents = discord.Intents.default()
intents.message_content = True
client = MyClient(intents=intents)
client.run(connections["MAIN"])