Second commit
This commit is contained in:
parent
4eb1ab4ec4
commit
8d4e8a6c82
3 changed files with 4 additions and 3 deletions
|
@ -7,7 +7,7 @@
|
||||||
> Bot responds with "Hello!"
|
> Bot responds with "Hello!"
|
||||||
|
|
||||||
>**!ping**
|
>**!ping**
|
||||||
> Bot responds with "Pong!" and botlatency
|
> Bot responds with "Pong!" and botlatency + a gif from Ping Pong The Animation
|
||||||
|
|
||||||
>**!github**
|
>**!github**
|
||||||
> Flexes github link
|
> Flexes github link
|
||||||
|
|
5
main.py
5
main.py
|
@ -25,9 +25,10 @@ async def on_message(message):
|
||||||
if message.content.lower().startswith('!hello'):
|
if message.content.lower().startswith('!hello'):
|
||||||
await message.channel.send('Hello!')
|
await message.channel.send('Hello!')
|
||||||
|
|
||||||
# user sends "!ping", bot responds w/ "Pong" + bot latency
|
# user sends "!ping", bot responds w/ "Pong" + bot latency and a gif
|
||||||
elif message.content.lower().startswith('!ping'):
|
elif message.content.lower().startswith('!ping'):
|
||||||
await message.channel.send(f'Pong :ping_pong: (Bot latency: **{round(client.latency * 1000)}ms**)')
|
await message.channel.send(f'Pong :ping_pong: (Bot latency: **{round(client.latency * 1000)}ms**)')
|
||||||
|
await message.channel.send(file=discord.File('resources/pingpong.gif'))
|
||||||
|
|
||||||
# user sends "!help", bot sends commands file
|
# user sends "!help", bot sends commands file
|
||||||
elif message.content.lower().startswith("!help"):
|
elif message.content.lower().startswith("!help"):
|
||||||
|
@ -47,4 +48,4 @@ async def on_message(message):
|
||||||
|
|
||||||
|
|
||||||
# run bot
|
# run bot
|
||||||
client.run(my_secret)
|
client.run(my_secret)
|
BIN
resources/pingpong.gif
Normal file
BIN
resources/pingpong.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 MiB |
Reference in a new issue