-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathstart_discordBot.py
273 lines (204 loc) · 7.68 KB
/
start_discordBot.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
### Summary
# This module initalises the discord commands and waits for
# the send command module to send instructions
# -------------------------------------------------
print("[*] Loading bot...")
import asyncio
from aiohttp import web
import discord #python3 -m pip install -U discord.py[voice]
from discord.ext import commands
from discord.ext.commands import check
from discord import voice_client
from discord import Role
from discord import Guild
from modules.config import *
from modules import module_grabscreen
bot = commands.Bot(command_prefix = ".", help_command=None)
@bot.command()
async def help(ctx):
help_message = """```
# Commands:
.ping | To see if the bot is alive!
.dead | Do this if you are dead, so you stay muted until you win or lose!
.kill @DiscordP1 @DiscordP2 | Alternative to .dead
.ghostmode | Mute mics AND headphones for everyone between rounds except the dead (so they can talk with each other)
.users | See current users in the hosts voice channel
# Python bot commands (you can also use this manually if you dont want to set up the python program!)
.mute | Mutes everyone that is currently not dead
.unmute | Unmutes everyone that is currently not dead
.clear | Unmutes everyone including the dead (This is used when you win or lose!)
```"""
await ctx.send(help_message)
global ghostmode_on
ghostmode_on = False
global dead_members
dead_members = []
global in_discussion
in_discussion = False
global leader
leader = None
@bot.event
async def on_ready():
print("[*] Bot is ready!\n\n[*] Why not join our discord if you have any issues, ideas, \nor for early access to new updates and features!\nhttps://discord.gg/PVfewrM\n\n[*] Press Control+C to exit safely")
@bot.command()
async def host(ctx):
global leader
if leader == None:
leader = ctx.author
await ctx.send(f"```[*] Host connected: {ctx.author.name}```")
elif leader != None and leader != ctx.author:
await ctx.send(f"```[*] Sorry, {leader} is already a host. The host can disconnect by typing .host once more```")
else:
await ctx.send(f"```[*] Disconnected host: {ctx.author.name}```")
leader = None
@bot.command()
async def users(ctx):
global leader
if leader == None:
await ctx.send("[*] The host of the program must connect first using .host")
else:
string = "[*] Users connected: \n"
for member in list(bot.get_channel(leader.voice.channel.id).members):
string = string + f"- {member}\n"
await ctx.send(f"```{string}```")
@bot.command()
async def mute(ctx):
global leader
global ghostmode_on
global in_discussion
in_discussion = False
try:
if ctx.author != leader: #make sure no one else can run these commands
await ctx.send("```[*] Only the host can use this command```")
except: pass
try:
for member in list(bot.get_channel(leader.voice.channel.id).members):
if member.id in dead_members and ghostmode_on:
await member.edit(mute = False)
elif member.id not in dead_members and ghostmode_on:
await member.edit(deafen = True, mute = True)
else:
await member.edit(mute = True)
except AttributeError as e:
print("[*] The host of the program must connect first using .host")
@bot.command()
async def unmute(ctx):
global leader
global dead_members
global ghostmode_on
global in_discussion
in_discussion = True
try:
if ctx.author != leader: #make sure no one else can run these commands
await ctx.send("```[*] Only the host can use this command```")
except: pass
try:
for member in list(bot.get_channel(leader.voice.channel.id).members):
if member.id in dead_members and ghostmode_on:
await member.edit(mute = True)
elif member.id in dead_members and ghostmode_on == False:
await member.edit(mute = True)
elif member.id not in dead_members and ghostmode_on:
await member.edit(deafen = False, mute = False)
else:
await member.edit(mute = False)
except AttributeError:
print("[*] The host of the program must connect first using .host")
@bot.command()
async def clear(ctx): #unmute and clear the dead
global leader
global dead_members
dead_members = []
try:
if ctx.author != leader: #make sure no one else can run these commands
await ctx.send("```[*] Only the host can use this command```")
except: pass
try:
for member in list(bot.get_channel(leader.voice.channel.id).members):
await member.edit(deafen = False, mute = False)
except AttributeError:
print("[*] The host of the program must connect first using .host")
@bot.command()
async def dead(ctx):
global dead_members
global ghostmode_on
if ghostmode_on:
await ctx.author.edit(mute = False, deafen = False)
else:
await ctx.author.edit(mute = True)
if ctx.author.id not in dead_members:
dead_members.append(ctx.author.id)
@bot.command()
async def kill(ctx, *members: discord.Member):
global dead_members
global ghostmode_on
global leader
for member in members:
if member not in list(bot.get_channel(leader.voice.channel.id).members):
await ctx.send(f"[*] User not in channel: {member}")
continue
try:
if ghostmode_on and in_discussion:
await member.edit(mute = True)
valid = True
if ghostmode_on and in_discussion == False:
await member.edit(mute = False, deafen = False)
valid = True
else:
await member.edit(mute = True)
valid = True
except Exception as e:
print(e)
await ctx.send(f"[*] Invalid user: {member}")
valid = False
if valid:
if member.id not in dead_members:
dead_members.append(member.id)
print(dead_members)
@bot.command()
async def ghostmode(ctx):
global ghostmode_on
if ctx.author != leader: #make sure no one else can run these commands
await ctx.send("```[*] Only the host can use this command```")
else:
if ghostmode_on == False:
ghostmode_on = True
await ctx.send("```[*] Ghost mode activated```")
else:
ghostmode_on = False
await ctx.send("```[*] Ghost mode deactivated```")
@bot.command()
async def ping(ctx):
await ctx.send("`[*] Pong`")
async def handle_request(request):
action = request.match_info.get('action', "nothing")
if action == "mute":
await mute(None)
elif action == "unmute":
await unmute(None)
elif action == "clear":
await clear(None)
return web.Response(text=None)
async def run_bot():
app = web.Application()
app.router.add_get('/', handle_request)
app.router.add_get('/{action}', handle_request)
runner = web.AppRunner(app)
await runner.setup()
site = web.TCPSite(runner, '', port)
await site.start()
try:
await bot.start(discord_bot_token)
except KeyboardInterrupt:
bot.close(),
finally:
await runner.cleanup()
try:
loop = asyncio.get_event_loop()
loop.run_until_complete(run_bot())
except OSError:
print("[*] ERROR: address already in use")
except Exception as e:
print(f"{e}\n\n[*] ERROR: invalid discord bot token\n")
except KeyboardInterrupt:
print("\n[*] Exiting..")