Skip to content
Permalink
1b3ef61e9a
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
20 lines (17 sloc) 493 Bytes
import discord
from discord.ext import commands
#from Melads import *
client = discord.Client()
@client.event
async def on_ready():
print("The bot is ready.")
@client.event
async def on_message(message):
a=int(message)
a=a*a
message.channel.send(str(a))
if message.author == client.user:
return
if message.content.startswith('Wake up professor'):
await message.channel.send('THE PROFESSOR IS AWAKE')
client.run("DISCORD_API_KEY")