forked from brenneking/TeamPickerDiscordBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTeamPickerDiscordBot.py
More file actions
57 lines (52 loc) · 1.93 KB
/
TeamPickerDiscordBot.py
File metadata and controls
57 lines (52 loc) · 1.93 KB
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
import random
import discord
from discord.ext import commands
intents = discord.Intents.all()
client = commands.Bot(command_prefix='!', intents=intents)
sides = ['Team A', 'Team B']
@client.event
async def on_ready():
print(f'{client.user} has connected to Discord!')
@client.event
async def on_message(ctx):
if ctx.author == client.user:
return
if 'pickteams' in ctx.content:
if ctx.author.voice and ctx.author.voice.channel:
channel = ctx.author.voice.channel
else:
await ctx.channel.send("You are not connected to a voice channel")
return
members = channel.members
for member in list(members):
if member.bot:
members.remove(member)
if 'mobile' in str(member):
members.remove(member)
if int(len(members)) < 2:
await ctx.channel.send('Not enough players to make teams. Try inviting more people to play')
return
memNames = []
for member in members:
if member.nick:
memNames.append(member.nick)
else:
memNames.append(member.name)
random.shuffle(memNames)
half = int(len(memNames) / 2)
i = 0
teamA_Names = []
teamB_Names = []
while i < half:
teamA_Names.append(memNames[i])
i += 1
while i < len(memNames):
teamB_Names.append(memNames[i])
i += 1
teamA_Str = '\n'.join(teamA_Names)
teamB_Srt = '\n'.join(teamB_Names)
embed = discord.Embed(title='Teams', description='Here are the teams. Good luck!', color=discord.Color.red())
embed.add_field(name='Team A', value=teamA_Str, inline=True)
embed.add_field(name='Team B', value=teamB_Srt, inline=True)
await ctx.channel.send(embed=embed)
client.run('Insert Bot Token Here')