From 02593ed278af0ff97ed7ae3ba9542c130155a992 Mon Sep 17 00:00:00 2001 From: pocketjawa Date: Tue, 21 Feb 2017 14:28:18 +0000 Subject: [PATCH] Added pokeme and wtf (navy seal copypasta) commands --- pocketbot.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pocketbot.py b/pocketbot.py index 5d942cf..2d2f43a 100644 --- a/pocketbot.py +++ b/pocketbot.py @@ -31,6 +31,13 @@ def on_message(message): yield from client.send_message(message.channel, 'Done sleeping') elif message.content.lower().startswith('!mixes'): yield from client.send_message(message.channel, 'You can download mp3s of any of my mixes at http://maki.pocketjawa.com/mixes/') + elif message.content.lower().startswith('!pokeme'): + yield from client.send_message(message.channel, "_pokes <@"+message.author.id+">_") + elif message.content.lower().startswith('!wtf'): + yield from client.send_typing(message.channel) + yield from asyncio.sleep(3) + yield from client.send_message(message.channel, 'What the fuck did you just fucking say about me, you little bitch? I’ll have you know I graduated top of my class in the Navy Seals, and I’ve been involved in numerous secret raids on Al-Quaeda, and I have over 300 confirmed kills. I am trained in gorilla warfare and I’m the top sniper in the entire US armed forces. You are nothing to me but just another target. I will wipe you the fuck out with precision the likes of which has never been seen before on this Earth, mark my fucking words. You think you can get away with saying that shit to me over the Internet? Think again, fucker. As we speak I am contacting my secret network of spies across the USA and your IP is being traced right now so you better prepare for the storm, maggot. The storm that wipes out the pathetic little thing you call your life. You’re fucking dead, kid. I can be anywhere, anytime, and I can kill you in over seven hundred ways, and that’s just with my bare hands. Not only am I extensively trained in unarmed combat, but I have access to the entire arsenal of the United States Marine Corps and I will use it to its full extent to wipe your miserable ass off the face of the continent, you little shit. If only you could have known what unholy retribution your little “clever” comment was about to bring down upon you, maybe you would have held your fucking tongue. But you couldn’t, you didn’t, and now you’re paying the price, you goddamn idiot. I will shit fury all over you and you will drown in it. You’re fucking dead, kiddo.') + client.run(token) \ No newline at end of file