From 663a73a48fb097cc11d2fc3ca6067f182bd5ed5e Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Tue, 15 Dec 2020 14:28:05 +0530 Subject: added a fairly simple bot --- bot.py | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 bot.py (limited to 'bot.py') diff --git a/bot.py b/bot.py new file mode 100644 index 0000000..858731c --- /dev/null +++ b/bot.py @@ -0,0 +1,50 @@ +import discord +import random +# import os # why +# from hentai import hentai +# from dotenv import load_dotenv + +# z!info +INFO_MESSAGE = "Discord bot created by Vidhu Kant Sharma" + +greetings = ["Greetings", "Hello", "Hey", "Yahallo", "Namaskar", "Konnichiwa", "Yo"] + + + +# load_dotenv() +# TOKEN = + + + + + + + + +# frontend stuff +client = discord.Client() + +# events +@client.event +async def on_ready(): + print(f'{client.user} has connected to Discord!') + + + +@client.event +async def on_message(message): + if message.author == client.user: + return + + if message.content[0:6] == 'z!say ': + response = message.content[5:] + await message.channel.send(response) + + + if message.content == 'z!info': + response = INFO_MESSAGE + await message.channel.send(response) + + + +client.run(TOKEN) -- cgit v1.2.3