import discord
from discord.ext import commands
client = discord.Client()
Bot = commands.Bot(command_prefix='!m ')
selam = ["selam","Selam","slm","SELAM"]
@Bot.event
async def on_ready():
print("Bot çalışıyor." + str(Bot.user))
#------------------------------------------------------------------------
@Bot.event
async def on_message(message):
if message.author.id == Bot.user.id:
return
if message.content in selam:
await message.channel.send("Selam Gardaşım")
await Bot.process_commands(message)
Bot.run("")