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.
19 lines
523 B
19 lines
523 B
import discord
|
|
|
|
class MyClient(discord.Client):
|
|
async def on_ready(self):
|
|
print('Logged in as')
|
|
print(self.user.name)
|
|
print(self.user.id)
|
|
print('------')
|
|
|
|
async def on_message(self, message):
|
|
# we do not want the bot to reply to itself
|
|
if message.author.id == self.user.id:
|
|
return
|
|
|
|
if message.content.startswith('!hello'):
|
|
await message.channel.send('Hello {0.author.mention}'.format(message))
|
|
|
|
client = MyClient()
|
|
client.run('token')
|
|
|