You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
518 B
22 lines
518 B
import discord
|
|
|
|
client = discord.Client()
|
|
|
|
@client.event
|
|
async def on_message(message):
|
|
# we do not want the bot to reply to itself
|
|
if message.author == client.user:
|
|
return
|
|
|
|
if message.content.startswith('!hello'):
|
|
msg = 'Hello {0.author.mention}'.format(message)
|
|
await client.send_message(message.channel, msg)
|
|
|
|
@client.event
|
|
async def on_ready():
|
|
print('Logged in as')
|
|
print(client.user.name)
|
|
print(client.user.id)
|
|
print('------')
|
|
|
|
client.run('email', 'password')
|
|
|