Skip to content

Commit

Permalink
Update selfbot.py
Browse files Browse the repository at this point in the history
  • Loading branch information
steelmaker86 authored Feb 26, 2017
1 parent 7502f9f commit e595783
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion selfbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,12 @@ async def on_message(message):
import antigravity
elif command.startswith('+lenny'):
await reply(message, '( ͡° ͜ʖ ͡°)')
elif command.startswith('+blank'):
await reply(message, '')

##async def reply(message, text):
## await client.send_message(message.channel, message.author.mention + ', ' + text)
async def reply(message, text):
await client.edit_message(message, message.author.mention + ', ' + text)
await client.edit_message(message, text)

client.run('email','password')

0 comments on commit e595783

Please sign in to comment.