-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiscordbot.py
73 lines (62 loc) · 2.16 KB
/
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
#Discord Voice Assistent
#Permissions = 36715520
import discord
import key
from discord.ext import commands
intents = discord.Intents.default()
intents.members = True
client = commands.Bot(command_prefix = '', intents=intents)
textchannel = 0
voicechannel = 0
@client.event
async def on_ready():
global textchannel, voicechannel
a=1
b=1
print(f'We have logged in as {client.user.name}')
for guild in client.guilds:
for channel in guild.channels:
if str(channel.type) == 'text' and a:
textchannel = channel.id
a=0
elif str(channel.type) == 'voice' and b:
voicechannel = channel.id
b=0
channel = client.get_channel(textchannel)
await channel.send('Bot Online', tts=True)
@client.event
async def on_member_join(member):
channel = client.get_channel(textchannel)
await channel.send(f'Hello!, {member.name} welcome', tts=True)
@client.event
async def on_message(message):
if message.author == client.user:
return
if message.content.startswith('hi') :
await message.channel.send(f'Hello! {message.author.name}', tts=True)
else :
await client.process_commands(message)
@client.event
async def on_voice_state_update(member, before, after):
channel = client.get_channel(textchannel)
if before.channel is not None and after.channel is None:
msg = 'left'
elif before.channel is None and after.channel is not None:
msg = 'joined'
await channel.send(f'{member.name} has {msg} the voice', tts=True)
@client.command(pass_context=True)
async def join(ctx):
if ctx.author.voice:
await ctx.message.author.voice.channel.connect()
elif voicechannel:
channel = client.get_channel(voicechannel)
await channel.connect()
else:
await ctx.send('Failed to Join. Join a voice channel and try again')
@client.command(pass_context=True)
async def leave(ctx):
if ctx.voice_client:
await ctx.guild.voice_client.disconnect()
else:
await ctx.send('I am not in voice')
client.run(key.token)