2017-03-21 03:59:50 +00:00
# -*- coding: utf-8 -*-
import sopel . module
import random
import re
import requests
import praw
2017-11-08 14:38:11 +00:00
import client
2017-06-01 01:10:54 +00:00
from threading import Timer
2017-03-21 03:59:50 +00:00
2017-04-26 04:29:09 +00:00
@sopel.module.commands ( ' 4matter ' )
def fourmatter ( bot , trigger ) :
bot . say ( ' Irish I be fookin <3 Milo ' )
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' aminorex ' )
def aminorex ( bot , trigger ) :
bot . say ( ' if i could replace my wife with a robot... i might seriously think about it ' )
2017-04-26 04:29:09 +00:00
@sopel.module.commands ( ' ayylmao ' , ' lmao ' )
def lmao ( bot , trigger ) :
bot . say ( ' https://i.redd.it/jjiwl9dbejoy.jpg ' )
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' banana ' )
def banana ( bot , trigger ) :
bot . say ( ' ( ' )
@sopel.module.commands ( ' bananas ' )
def bananas ( bot , trigger ) :
bot . say ( ' ((( ' )
@sopel.module.commands ( ' barolo ' )
def barolo ( bot , trigger ) :
bot . say ( ' I just opened a 2004 barolo in your and all the devs honor -- https://i.ytimg.com/vi/-JvdfsIeb-s/hqdefault.jpg ' )
2017-05-14 19:21:07 +00:00
@sopel.module.commands ( ' bb ' )
def bb ( bot , trigger ) :
bot . say ( ' https://www.youtube.com/watch?v=_VvbP0QNmF0 ' )
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' bear ' )
2017-04-26 04:29:09 +00:00
def bear ( bot , trigger ) :
2017-03-21 03:59:50 +00:00
bot . say ( u ' ʕ ·(エ)· ʔ ' . encode ( ' utf8 ' ) )
2017-04-26 04:29:09 +00:00
@sopel.module.commands ( ' brothers ' )
def brothers ( bot , trigger ) :
bot . say ( u ' http://www.trollaxor.com/2011/11/brief-history-of-ascii-penis.html ' . encode ( ' utf8 ' ) )
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' buyorsell ' )
def buyorsell ( bot , trigger ) :
draw = random . random ( )
if draw < 0.33 :
silly_string = " Sell, sell, sell! "
elif 0.66 > draw > = 0.33 :
silly_string = " Hodl! "
elif 1 > draw > = 0.66 :
silly_string = " Buy, buy, buy! "
bot . say ( silly_string )
2017-09-17 20:46:31 +00:00
@sopel.module.commands ( ' cheerup ' )
def cheerup ( bot , trigger ) :
bot . say ( ' https://www.youtube.com/watch?v=NXfC16rv_fs ' )
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' china ' )
def china ( bot , trigger ) :
2017-07-04 20:54:17 +00:00
bot . say ( ' https://youtu.be/ZrNrleD2ZFs ' )
2017-03-21 03:59:50 +00:00
2017-07-24 05:17:41 +00:00
@sopel.module.commands ( ' cryptosid ' , ' sid ' )
def cryptosid ( bot , trigger ) :
bot . say ( ' https://img.huffingtonpost.com/asset/58acbbd0280000d59899a57a.jpeg?ops=crop_5_33_460_393,scalefit_720_noupscale ' )
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' cursive ' )
def cursive ( bot , trigger ) :
instring = trigger . group ( 2 )
outstring = u ' '
normals = [ ' a ' , ' b ' , ' c ' , ' d ' , ' e ' , ' f ' , ' g ' , ' h ' , ' i ' , ' j ' , ' k ' , ' l ' , ' m ' , ' n ' , ' o ' , ' p ' , ' q ' , ' r ' , ' s ' , ' t ' , ' u ' , ' v ' , ' w ' , ' x ' , ' y ' , ' z ' , ' A ' , ' B ' , ' C ' , ' D ' , ' E ' , ' F ' , ' G ' , ' H ' , ' I ' , ' J ' , ' K ' , ' L ' , ' M ' , ' N ' , ' O ' , ' P ' , ' Q ' , ' R ' , ' S ' , ' T ' , ' U ' , ' V ' , ' W ' , ' X ' , ' Y ' , ' Z ' ]
curses = [ u ' 𝓪 ' , u ' 𝓫 ' , u ' 𝓬 ' , u ' 𝓭 ' , u ' 𝓮 ' , u ' 𝓯 ' , u ' 𝓰 ' , u ' 𝓱 ' , u ' 𝓲 ' , u ' 𝓳 ' , u ' 𝓴 ' , u ' 𝓵 ' , u ' 𝓶 ' , u ' 𝓷 ' , u ' 𝓸 ' , u ' 𝓹 ' , u ' 𝓺 ' , u ' 𝓻 ' , u ' 𝓼 ' , u ' 𝓽 ' , u ' 𝓾 ' , u ' 𝓿 ' , u ' 𝔀 ' , u ' 𝔁 ' , u ' 𝔂 ' , u ' 𝔃 ' , u ' 𝓐 ' , u ' 𝓑 ' , u ' 𝓒 ' , u ' 𝓓 ' , u ' 𝓔 ' , u ' 𝓕 ' , u ' 𝓖 ' , u ' 𝓗 ' , u ' 𝓘 ' , u ' 𝓙 ' , u ' 𝓚 ' , u ' 𝓛 ' , u ' 𝓜 ' , u ' 𝓝 ' , u ' 𝓞 ' , u ' 𝓟 ' , u ' 𝓠 ' , u ' 𝓡 ' , u ' 𝓢 ' , u ' 𝓣 ' , u ' 𝓤 ' , u ' 𝓥 ' , u ' 𝓦 ' , u ' 𝓧 ' , u ' 𝓨 ' , u ' 𝓩 ' ]
for idx , val in enumerate ( instring ) :
if val in normals :
outstring + = curses [ normals . index ( val ) ]
else :
outstring + = val
bot . say ( outstring )
@sopel.module.commands ( ' dash ' )
def dash ( bot , trigger ) :
bot . say ( ' http://www.dash-wash.com/it-it ' )
@sopel.module.commands ( ' dealwithit ' )
def dealwithit ( bot , trigger ) :
bot . say ( u ' (•_•) ( •_•)>⌐■-■ (⌐■_■) ' . encode ( ' utf8 ' ) )
2017-06-24 01:16:43 +00:00
@sopel.module.commands ( ' diiorio ' )
def diiorio ( bot , trigger ) :
bot . say ( u ' http://www.contravex.com/2016/06/29/from-the-scammer-files-anthony-di-iorio/ ' . encode ( ' utf8 ' ) )
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' disapprove ' )
def disapprove ( bot , trigger ) :
bot . say ( u ' ಠ_ಠ ' . encode ( ' utf8 ' ) )
@sopel.module.commands ( ' ded ' )
def ded ( bot , trigger ) :
if random . random ( ) < 0.5 :
bot . say ( ' http://i3.kym-cdn.com/photos/images/original/000/715/140/3b2.jpg ' )
else :
bot . say ( ' https://imgur.com/a/yzNZW ' )
@sopel.module.commands ( ' donate ' , ' donation ' )
2017-04-26 04:29:09 +00:00
def donate ( bot , trigger ) :
2017-10-19 02:25:13 +00:00
bot . say ( ' XMR: 45SkxgDmcLmW5ByS7w9AG78JuJRvCoVKCdGJWnd4US95CBUAtvdGAdM2oHgZgTGjkEAUcwdqcryM819aqdeiKxHSQC8HkmS ' , trigger . nick )
bot . say ( ' BTC: 14X8aMUtuxH2HWLtsNAxxN7j9uqQNUdMzB ' , trigger . nick )
2017-03-21 03:59:50 +00:00
2017-04-26 04:29:09 +00:00
@sopel.module.commands ( ' dump ' )
def dump ( bot , trigger ) :
bot . say ( ' https://www.youtube.com/watch?v=RHg8qIKJo1I ' )
2017-11-08 04:36:08 +00:00
@sopel.module.commands ( ' encrypt ' )
def encrypt ( bot , trigger ) :
bot . say ( " https doesn ' t hide the fact that i ' m using https so that ' s why i don ' t use encryption because everyone is trying to crack encryption so i just don ' t use encryption because no one is looking at unencrypted data because everyone wants encrypted data to crack " )
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' eth ' )
def eth ( bot , trigger ) :
bot . say ( u ' The world computer 💻🌐 ' . encode ( ' utf8 ' ) )
2017-04-26 04:29:09 +00:00
@sopel.module.commands ( ' fib ' , ' fibonacci ' )
def fib ( bot , trigger ) :
bot . say ( u ' Pardon me, do you have a moment to discuss our lord and savior ✞Cheesus Monero✞? ' . encode ( ' utf8 ' ) )
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' flip ' )
def flip ( bot , trigger ) :
bot . say ( u ' (╯°□°)╯︵ ┻━┻ ' . encode ( ' utf8 ' ) )
2017-05-03 03:37:16 +00:00
@sopel.module.commands ( ' fuck ' )
def fuck ( bot , trigger ) :
bot . say ( " Fuck your {} if you want fuck! " . format ( trigger . group ( 2 ) ) )
2017-03-21 03:59:50 +00:00
fuckyouoptions = [
" http://imgur.com/Kt8os8v " ,
" https://pbs.twimg.com/profile_images/502111486915788801/DtB5ruDz_400x400.jpeg " ,
" http://s2.quickmeme.com/img/70/7073ff0ce9c54f6672f157ebef668c1b6bb123d15fc2e2bc062ec1558f964820.jpg " ,
" http://static.deathandtaxesmag.com/uploads/2015/01/staff-troll-fuck-you.png " ,
]
@sopel.module.commands ( ' fuckyou ' )
def fuckyou ( bot , trigger ) :
bot . say ( random . choice ( fuckyouoptions ) )
2017-04-26 04:29:09 +00:00
@sopel.module.commands ( ' gay ' )
def gay ( bot , trigger ) :
bot . say ( ' https://i.imgur.com/RHbXrLa.png ' )
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' gui ' )
def gui ( bot , trigger ) :
bot . say ( ' http://imgur.com/a/hnxfS ' )
2017-06-01 01:10:54 +00:00
hitleroptions = [
' https://www.youtube.com/watch?v=L2WfedZG7bo ' ,
r " There ' s always Aeon " ,
' http://adolfcoin.camp/ '
]
@sopel.module.commands ( ' hitler ' , ' adolf ' )
def hitler ( bot , trigger ) :
bot . say ( random . choice ( hitleroptions ) )
2017-04-26 04:29:09 +00:00
@sopel.module.commands ( ' hmm ' , ' hmmm ' )
def hmm ( bot , trigger ) :
2017-11-08 14:38:11 +00:00
reddit = praw . Reddit ( client_id = client . client_id , client_secret = client . client_secret , user_agent = ' asdfasdfasdfjhwrgth ' , username = client . username , password = client . password )
#try:
sub = reddit . subreddit ( ' hmmm ' )
posts = sub . new ( limit = 100 )
n = random . randint ( 0 , 100 )
for i , post in enumerate ( posts ) :
if i == n :
bot . say ( post . url )
#except:
# bot.say("Something something reddit's servers")
2017-04-26 04:29:09 +00:00
2017-07-15 00:57:04 +00:00
herooptions = [
2017-07-24 05:17:41 +00:00
" https://video.twimg.com/tweet_video/DEnItJjV0AI81CK.mp4 " ,
2017-07-15 00:57:04 +00:00
" https://media.giphy.com/media/REH3MZp1FeCM8/giphy.gif " ,
]
@sopel.module.commands ( ' hero ' )
def hero ( bot , trigger ) :
bot . say ( random . choice ( herooptions ) )
2017-05-14 19:21:07 +00:00
@sopel.module.commands ( ' hotline ' )
def hotline ( bot , trigger ) :
bot . say ( u ' ☎ Call 1-800-273-8255 to reach the National Suicide Prevention Lifeline ☎ ' . encode ( ' utf8 ' ) )
2017-09-10 06:13:43 +00:00
@sopel.module.commands ( ' news ' )
2017-09-14 02:43:48 +00:00
def news ( bot , trigger ) :
2017-09-10 06:13:43 +00:00
bot . say ( " https://www.youtube.com/watch?v=Gr_WtFW0a8Y " )
2017-05-09 00:00:00 +00:00
@sopel.module.commands ( ' invest ' )
def invest ( bot , trigger ) :
bot . say ( ' i think invest in bitcoin is much more safe and profitable because bitcoin price rising to higher value and we do not face to any risk when we invest our money in bitcoin and i if we invest our money in bitcoin we will be get a good profit from bitcoin in the future so i think bitcoin is much more profitable currency than altcoins. ' )
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' isittrue ' )
def isittrue ( bot , trigger ) :
draw = random . random ( )
if draw < 0.33 :
silly_string = " True as the day is long. "
elif 0.66 > draw > = 0.33 :
silly_string = " Irrelevant question in this post-truth world. "
elif 1 > draw > = 0.66 :
silly_string = " Lies! Damn Lies! It ' s statitistics! "
bot . say ( silly_string )
@sopel.module.commands ( ' jaxx ' )
def jaxx ( bot , trigger ) :
bot . say ( u ' This command will be implemented soon. Honest. Especially if the devs can provide some unpaid assistance. Soon™... ' )
2017-10-11 13:43:01 +00:00
@sopel.module.commands ( ' jimbell ' )
def jaxx ( bot , trigger ) :
if not trigger . group ( 2 ) :
bot . say ( u ' https://en.wikipedia.org/wiki/Jim_Bell ' )
else :
2017-10-11 13:44:53 +00:00
bot . say ( u ' {} has opened an assassination futures market predicting the impending demise of {} . ' . format ( trigger . nick , trigger . group ( 2 ) ) )
2017-10-11 13:43:01 +00:00
2017-09-23 00:11:43 +00:00
@sopel.module.commands ( ' john_alan ' )
2017-04-26 04:29:09 +00:00
def joshua ( bot , trigger ) :
2017-09-23 00:11:43 +00:00
bot . say ( u ' I like smooth. ' )
2017-03-21 03:59:50 +00:00
2017-04-26 04:29:09 +00:00
@sopel.module.commands ( ' jwinterm ' )
def jwinterm ( bot , trigger ) :
bot . say ( u ' j_winter_m ' )
2017-05-03 03:37:16 +00:00
@sopel.module.commands ( ' kid ' , ' rehrar ' )
def kid ( bot , trigger ) :
bot . say ( u ' What up kid? ' )
2017-06-09 11:06:25 +00:00
@sopel.module.commands ( ' kramer ' )
def kramer ( bot , trigger ) :
bot . say ( " Waiting for a retrace to 0.007 " )
2017-05-03 03:37:16 +00:00
2017-08-16 03:16:11 +00:00
@sopel.module.commands ( ' lambo ' )
def lambo ( bot , trigger ) :
bot . say ( u ' Our mission is to give you a taste of the lambo dream 🏎 ' . encode ( ' utf8 ' ) )
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' lenny ' )
def lenny ( bot , trigger ) :
bot . say ( u ' ( ͡° ͜ʖ ͡°) ' . encode ( ' utf8 ' ) )
2017-06-24 01:16:43 +00:00
@sopel.module.commands ( ' livermore ' )
def livermore ( bot , trigger ) :
bot . say ( u ' https://en.wikipedia.org/wiki/Reminiscences_of_a_Stock_Operator ' . encode ( ' utf8 ' ) )
2017-06-01 01:10:54 +00:00
@sopel.module.commands ( ' luigi ' )
def luigi ( bot , trigger ) :
bot . say ( u ' 🍄 luigi is doing. mario is not doing luigi is doing 🍄 ' . encode ( ' utf8 ' ) )
2017-04-26 04:29:09 +00:00
@sopel.module.commands ( ' ltc ' , ' chikun ' )
def ltc ( bot , trigger ) :
bot . say ( u ' 🐔🐔🐔 https://cdn.meme.am/cache/instances/folder100/48222100.jpg 🐔🐔🐔 ' . encode ( ' utf8 ' ) )
2017-06-01 01:10:54 +00:00
@sopel.module.commands ( ' major ' )
def major ( bot , trigger ) :
bot . say ( r " Showed them a sneak peak of the MAJOR Monero announcement that is happening at tomorrow ' s meetup, they ' re excited! " )
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' masternode ' , ' masternodes ' )
def masternode ( bot , trigger ) :
bot . say ( ' http://hadoopilluminated.com/hadoop_illuminated/images/hdfs3.jpg ' )
@sopel.module.commands ( ' moon ' )
def moon ( bot , trigger ) :
bot . say ( u ' ┗(°0°)┛ ' . encode ( ' utf8 ' ) )
@sopel.module.commands ( ' multisig ' )
def multisig ( bot , trigger ) :
bot . say ( u ' 𝓼 𝓲 𝓰 𝓷 𝓪 𝓽 𝓾 𝓻 𝓮 𝓼 𝓲 𝓰 𝓷 𝓪 𝓽 𝓾 𝓻 𝓮 ' . encode ( ' utf8 ' ) )
2017-06-01 01:10:54 +00:00
@sopel.module.commands ( ' myriad ' , ' myr ' , ' myriadcoin ' )
def myriad ( bot , trigger ) :
bot . say ( u ' Myriad - A coin for everyone 🖐 ' . encode ( ' utf8 ' ) )
@sopel.module.commands ( ' needmoney ' , ' needmoney90 ' , ' nm90 ' )
def needmoney ( bot , trigger ) :
bot . say ( u ' cash rules everything around me C.R.E.A.M get the money 💵 💵 bill yall ' . encode ( ' utf8 ' ) )
@sopel.module.commands ( ' nioc ' )
def nioc ( bot , trigger ) :
bot . say ( u ' If I had a monero for every time I went to the salt mines...I would have a lot of moneros ' . encode ( ' utf8 ' ) )
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' nomnomnom ' )
def nomnomnom ( bot , trigger ) :
bot . say ( u ' ᗧ•••ᗣ ' . encode ( ' utf8 ' ) )
@sopel.module.commands ( ' noom ' )
def noom ( bot , trigger ) :
bot . say ( u ' ┏(.0.)┓ ' . encode ( ' utf8 ' ) )
2017-04-26 04:29:09 +00:00
odboptions = [
" FBI don ' t you be watching me " ,
" Ooo baby I like it raw " ,
" Jacques Cousteau could never get this low "
]
@sopel.module.commands ( ' odb ' , ' oldirty ' )
def odb ( bot , trigger ) :
2017-06-01 01:10:54 +00:00
bot . say ( random . choice ( odboptions ) )
2017-04-26 04:29:09 +00:00
2017-11-02 23:13:00 +00:00
@sopel.module.commands ( ' orff ' )
def orff ( bot , trigger ) :
bot . say ( " O Fortuna velut luna statu variabilis, semper crescis aut decrescis; vita detestabilis nunc obdurat et tunc curat ludo mentis aciem, egestatem, potestatem dissolvit ut glaciem. " )
2017-06-09 11:06:25 +00:00
@sopel.module.commands ( ' pamp ' )
def pamp ( bot , trigger ) :
bot . say ( " Pamp o clock yet? " )
2017-04-26 04:29:09 +00:00
perooptions = [
' https://www.youtube.com/watch?v=QqreRufrkxM ' ,
2017-07-05 13:48:56 +00:00
' https://www.youtube.com/watch?v=ZnPrtiLy0uU ' ,
' https://www.youtube.com/watch?v=d8qOV1z7ZA0 '
2017-04-26 04:29:09 +00:00
]
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' pero ' )
def pero ( bot , trigger ) :
2017-04-26 04:29:09 +00:00
bot . say ( random . choice ( perooptions ) )
@sopel.module.commands ( ' pivx ' )
def pivc ( bot , trigger ) :
bot . say ( " Masternodes + PoS...what could possibly go wrong? " )
2017-06-09 11:06:25 +00:00
@sopel.module.commands ( ' pony ' )
def pony ( bot , trigger ) :
bot . say ( " https://www.youtube.com/watch?v=O3rpmctmC_M " )
2017-06-09 11:14:00 +00:00
@sopel.module.commands ( ' primer ' )
def primer ( bot , trigger ) :
bot . say ( " The point is not how much i made, point is fluffy did this on purpose, more than 10 people were in on it. His commit access needs to be revoked asap! " )
2017-06-09 11:06:25 +00:00
2017-11-03 15:16:18 +00:00
@sopel.module.commands ( ' pubg ' )
def pubg ( bot , trigger ) :
bot . say ( " https://i.redd.it/o6o5gqmetacz.jpg " )
2017-04-26 04:29:09 +00:00
confirmoptions = [
" I can confirm that it is true " ,
" This is true " ,
" Fake news " ,
" Alternative fact " ,
" The outlook is murky, ask again later "
]
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' pleaseconfirm ' , ' confirm ' )
def confirm ( bot , trigger ) :
2017-04-26 04:29:09 +00:00
bot . say ( random . choice ( confirmoptions ) )
2017-03-21 03:59:50 +00:00
2017-07-04 20:54:17 +00:00
projectingoptions = [
" https://i.warosu.org/data/fa/img/0059/31/1365465556033.jpg " ,
" https://thenicessist.files.wordpress.com/2015/12/screen-shot-2015-12-15-at-8-03-04-pm.png?w=748 " ,
" https://4.bp.blogspot.com/-cMYssGE9g6w/VNru-2E-bDI/AAAAAAAAA3Y/fM91wN757Z0/s1600/Projection.PNG " ,
" https://s-media-cache-ak0.pinimg.com/originals/b7/fa/f3/b7faf3aac68dc3f15d3526ecb292dc8b.jpg " ,
" https://s-media-cache-ak0.pinimg.com/originals/17/40/e1/1740e15f12c153c00a041d95978f831c.gif "
]
@sopel.module.commands ( ' projecting ' )
def projecting ( bot , trigger ) :
bot . say ( random . choice ( projectingoptions ) )
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' rarepepe ' , ' rare ' )
def rarepepe ( bot , trigger ) :
try :
r = requests . get ( ' https://rarepepewallet.com/feed ' )
j = r . json ( )
except :
bot . say ( " Problem getting rarepepe data :sadfrogface: " )
try :
if trigger . group ( 2 ) == None :
name = random . choice ( j . keys ( ) )
else :
name = trigger . group ( 2 ) . upper ( )
pepe = j [ name ]
bot . say ( " {0} is the # {1} card in series {2} of which {3} exist {4} " . format ( name , pepe [ ' order ' ] , pepe [ ' series ' ] , pepe [ ' quantity ' ] , pepe [ ' img_url ' ] . replace ( ' \\ ' , ' ' ) ) )
except :
bot . say ( " {0} rare pepe doesn ' t seem to exist " . format ( trigger . group ( 2 ) ) )
@sopel.module.commands ( ' rip ' )
def rip ( bot , trigger ) :
bot . say ( u ' (X_X) ☜ (◉▂◉ ) we hardly knew ye ' . encode ( ' utf8 ' ) )
2017-09-01 01:10:57 +00:00
@sopel.module.commands ( ' risto ' , ' rpietila ' )
def risto ( bot , trigger ) :
bot . say ( u ' Zionists own the media, including Hollywood. It is nothing extraordinary for them to use it to further their goals. Just see what they are propagating every day in every media outlet. And the compulsory disclaimer: Zionist != Jew. Zionists in my understanding are typically mostly not even ethnic Jews, and the supermajority of Jews certainly are not Zionists. Zionism is a purely political supremacy movement. ' . encode ( ' utf8 ' ) )
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' romerito ' , ' romero ' )
def romerito ( bot , trigger ) :
draw = random . random ( )
if draw < 0.25 :
silly_string = " O Romerito, Romerito! wherefore art thou Romerito? "
elif 0.5 > draw > = 0.25 :
silly_string = " To buy or not to buy: that is the question "
elif 0.75 > draw > = 0.5 :
silly_string = " Cowards die many times before their deaths; the Romerito never taste of death "
elif 1 > draw > = 0.75 :
silly_string = " Et tu, Romerito! "
bot . say ( silly_string )
@sopel.module.commands ( ' scam ' )
def scam ( bot , trigger ) :
bot . say ( u ' http://i.imgflip.com/is8.jpg ' )
@sopel.module.commands ( ' soon ' )
def soon ( bot , trigger ) :
bot . say ( u ' Two weeks™ ' . encode ( ' utf8 ' ) )
@sopel.module.commands ( ' shrug ' )
def shrug ( bot , trigger ) :
bot . say ( u ' ¯ \ _(ツ)_/¯ ' . encode ( ' utf8 ' ) )
2017-09-10 06:16:57 +00:00
@sopel.module.commands ( ' softich ' )
def softich ( bot , trigger ) :
bot . say ( u ' 🐻🐻🐻 https://imgflip.com/i/1ve397 🐻🐻🐻 ' . encode ( ' utf8 ' ) )
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' summon ' )
def summon ( bot , trigger ) :
if trigger . group ( 2 ) == None :
bot . say ( " {0} has summoned...no one " . format ( trigger . nick ) )
else :
try :
trigger . group ( 2 ) . decode ( ' ascii ' )
bot . say ( " {0} has summoned {1} , ༼つ ◕_◕ ༽つ come to us {1} ༼つ ◕_◕ ༽つ " . format ( trigger . nick , trigger . group ( 2 ) ) )
except :
bot . say ( " Stop using non-ascii characters! (╯°□°)╯︵ ( . 0 .) " )
2017-09-01 01:10:57 +00:00
suraeoptions = [
" you are speaking with such generalities, it ' s impossible to confirm or deny any of what you are saying, so i ' ll just nod and give you the benefit of the doubt and assume we are in agreement on something unspoken. haha " ,
" The Buddha, the Godhead, resides quite as comfortably in the circuits of a digital computer or the gears of a cycle transmission as he does at the top of the mountain, or in the petals of a flower. To think otherwise is to demean the Buddha - which is to demean oneself. " ,
" update coefList[k] = COEFPROD(coefList, q[j][k]). Can you spot a problem with that? The method signature of COEFPROD is scalar[] COEFPROD(scalar[] c, scalar[] d) <--- yeah, pass it coefList[k]. "
]
@sopel.module.commands ( ' surae ' )
def surae ( bot , trigger ) :
bot . say ( random . choice ( suraeoptions ) )
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' timetravelpp ' )
def timetravelpp ( bot , trigger ) :
bot . say ( " A journey is best measured in pepes, rather than miles http://rarepepedirectory.com/wp-content/uploads/2016/09/timetravelpepe.jpg " )
2017-06-01 01:10:54 +00:00
@sopel.module.commands ( ' trivia ' )
def trivia ( bot , trigger ) :
try :
triviaurl = ' https://opentdb.com/api.php?amount=1&type=multiple '
r = requests . get ( triviaurl )
j = r . json ( )
category = j [ ' results ' ] [ 0 ] [ ' category ' ]
difficulty = j [ ' results ' ] [ 0 ] [ ' difficulty ' ]
question = j [ ' results ' ] [ 0 ] [ ' question ' ]
correct_answer = j [ ' results ' ] [ 0 ] [ ' correct_answer ' ]
incorrect_answers = j [ ' results ' ] [ 0 ] [ ' incorrect_answers ' ]
bot . say ( " This question is in the field of {} and is of {} difficulty: {} " . format ( category , difficulty , question ) )
replystr = " If you said {} you are correct, but if you said {} , {} , or {} you should call your parents and complain. " . format ( correct_answer , incorrect_answers [ 0 ] , incorrect_answers [ 1 ] , incorrect_answers [ 2 ] )
def f ( ) :
bot . say ( replystr )
t = Timer ( 10.0 , f )
t . start ( )
except :
bot . say ( " No trivia for you! " )
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' tinytrump ' )
def tinytrump ( bot , trigger ) :
2017-11-08 14:38:11 +00:00
reddit = praw . Reddit ( client_id = client . client_id , client_secret = client . client_secret , user_agent = ' asdfasdfasdfjhwrgth ' , username = client . username , password = client . password )
2017-03-21 03:59:50 +00:00
try :
2017-05-07 18:00:44 +00:00
sub = reddit . subreddit ( ' tinytrump ' )
posts = sub . new ( limit = 100 )
2017-03-21 03:59:50 +00:00
n = random . randint ( 0 , 100 )
for i , post in enumerate ( posts ) :
if i == n :
bot . say ( post . url )
except :
bot . say ( " Something something reddit ' s servers " )
@sopel.module.commands ( ' trump ' )
def trump ( bot , trigger ) :
bot . say ( " Monero is the best crypto, believe me, I know crypto and it ' s going to be yuuuuuuuge! " )
2017-04-26 04:29:09 +00:00
@sopel.module.commands ( ' tumbleweed ' )
2017-05-09 00:00:00 +00:00
def trumbleweed ( bot , trigger ) :
2017-04-26 04:29:09 +00:00
bot . say ( " https://rootco.de/2016-03-28-why-use-tumbleweed/ " )
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' unflip ' )
def unflip ( bot , trigger ) :
bot . say ( u ' ┬─┬ノ( º _ ºノ) ' . encode ( ' utf8 ' ) )
urmomoptions = [
" ur mom is so stupid she bought all the dash " ,
" ur momma got a peg leg with a kickstand " ,
" ur mom is so fat it looks like she ' s just gliding across the floor " ,
" your mother is so obese she would have mass whether or not the Higgs boson exists " ,
" ur mom is so fat that her blood type is nutella " ,
" ur mama is so fat she wears neck deoderant " ,
" ur mom ' s middle name is Mudbone " ,
" ur momma has a glass eye with a fish in it " ,
" ur mama is so stupid she sold her romero for bitcoins " ,
" ur momma look like a Simpsons character " ,
2017-04-26 04:29:09 +00:00
" ur mom is so ugly Donald Trump wouldn ' t even grab her by the pussy " ,
" ur momma is so stupid she listens to rpietila " ,
" ur mom is Amanda B Johnson " ,
" US ur mom if u want to U! " ,
" ur mom is so stupid she thinks Craig Wright is Satoshi "
2017-03-21 03:59:50 +00:00
]
@sopel.module.commands ( ' urmom ' , ' yourmom ' , ' yomom ' , ' yomomma ' )
def urmom ( bot , trigger ) :
bot . say ( random . choice ( urmomoptions ) )
2017-10-07 13:42:27 +00:00
@sopel.module.commands ( ' verge ' , ' xvg ' , ' wraith ' )
def verge ( bot , trigger ) :
bot . say ( u " 👻🐕 Don ' t wraith my dark doge bro! 👻🐕 " . encode ( ' utf8 ' ) )
2017-04-26 04:29:09 +00:00
vitalikoptions = [
" https://pbs.twimg.com/media/CrWjczJXgAExF2S.jpg " ,
" mETH, not even once: https://cdn-az.allevents.in/banners/e7df519e0808bac49fa3aaf503aff87d " ,
2017-06-04 09:57:34 +00:00
" Betteridge ' s law of headlines: https://fortunedotcom.files.wordpress.com/2016/09/blo_startups_2520x1667.png " ,
" Casper can survive 51 % a ttacks happening once in a while; we can just delete the attackers ' deposits and keep going. "
2017-04-26 04:29:09 +00:00
]
@sopel.module.commands ( ' vitalik ' , ' buterin ' )
def vitalik ( bot , trigger ) :
bot . say ( random . choice ( vitalikoptions ) )
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' wat ' )
def wat ( bot , trigger ) :
bot . say ( " https://www.destroyallsoftware.com/talks/wat " )
2017-06-09 11:06:25 +00:00
2017-09-01 01:10:57 +00:00
@sopel.module.commands ( ' yoda ' )
2017-09-23 22:01:56 +00:00
def yoda ( bot , trigger ) :
2017-09-01 01:10:57 +00:00
bot . say ( " The optimism is strong in this one " )
2017-06-09 11:06:25 +00:00
@sopel.module.commands ( ' xrp ' )
def xrp ( bot , trigger ) :
bot . say ( " We have the best C++ dev team in the world! " )
2017-03-21 03:59:50 +00:00
2017-04-26 04:29:09 +00:00
zcashoptions = [
" Trust us guys, we totally smashed that computer up, with like...magnetic baseball bats. " ,
" https://youtu.be/A51Bl3jkF0c "
]
2017-03-21 03:59:50 +00:00
@sopel.module.commands ( ' zec ' , ' zcash ' )
def zcash ( bot , trigger ) :
2017-04-26 04:29:09 +00:00
bot . say ( random . choice ( zcashoptions ) )
2017-03-21 03:59:50 +00:00
2017-06-01 01:10:54 +00:00
@sopel.module.commands ( ' zooko ' )
def zcash ( bot , trigger ) :
bot . say ( " And by the way, I think we can successfully make Zcash too traceable for criminals like WannaCry, but still completely private & fungible. " )
2017-03-21 03:59:50 +00:00
@sopel.module.rule ( ' monerobux o \ / ' )
def wave ( bot , trigger ) :
#bot.reply(u'‹ ^› ‹ (•_•)› ‹ ^› '.encode('utf8'))
bot . reply ( ' hello ' )
#@sopel.module.rule('[Tt]rump')
#def politics(bot, trigger):
# bot.reply("politics is the mind killer")
2017-10-19 02:25:13 +00:00
@sopel.module.rule ( ' .*1Dj34exPs3S9qAV1aiGAAADzbashsSVKVP*. ' )
def scamdouble ( bot , trigger ) :
bot . say ( " {} is a scammer and bitcoin is a scam " . format ( trigger . nick ) )
2017-06-08 21:04:08 +00:00
2017-05-02 20:43:02 +00:00
@sopel.module.commands ( ' asp ' )
def asp ( bot , trigger ) :
polourl = " https://poloniex.com/public?command=returnTicker "
stampurl = ' https://www.bitstamp.net/api/ticker/ '
2017-05-05 12:33:11 +00:00
cmcurl = " https://api.coinmarketcap.com/v1/ticker/monero/ "
2017-06-24 01:22:21 +00:00
trexurl = " https://bittrex.com/api/v1.1/public/getmarketsummary?market=btc-ans "
2017-05-02 20:43:02 +00:00
2017-05-05 12:33:11 +00:00
try :
r = requests . get ( cmcurl )
j = r . json ( )
2017-05-05 12:52:37 +00:00
xmrbtc_price = float ( j [ 0 ] [ ' price_btc ' ] )
2017-05-05 12:33:11 +00:00
except :
bot . say ( " Error connecting to CoinMarketCap " )
2017-06-24 01:22:21 +00:00
try :
r = requests . get ( trexurl )
j = r . json ( )
ans = j [ ' result ' ] [ 0 ]
last = float ( ans [ ' Last ' ] )
value_ans = float ( last * 231.6 )
except :
print ( " Error retrieving data from Bittrex " )
2017-05-02 20:43:02 +00:00
try :
r = requests . get ( polourl )
2017-05-03 03:42:08 +00:00
j = r . json ( )
except :
bot . say ( " Error connecting to Poloniex " )
2017-05-02 20:43:02 +00:00
2017-05-03 03:42:08 +00:00
label_dash = " BTC_DASH "
label_decred = " BTC_DCR "
label_factom = " BTC_FCT "
label_golem = " BTC_GNT "
label_maidsafecoin = " BTC_MAID "
label_augur = " BTC_REP "
label_stellar = " BTC_STR "
label_nem = " BTC_XEM "
label_ripple = " BTC_XRP "
label_zcash = " BTC_ZEC "
2017-06-24 01:22:21 +00:00
label_nxt = " BTC_NXT "
label_sia = " BTC_SC "
label_dgb = " BTC_DGB "
label_sys = " BTC_SYS "
2017-05-02 20:43:02 +00:00
# Bitstamp
try :
stampresult = requests . get ( stampurl )
stampjson = stampresult . json ( )
except :
stampjson = False
if stampjson :
stamp_price = float ( stampjson [ ' last ' ] )
# Poloniex
try :
ticker_dash = j [ label_dash ]
ticker_decred = j [ label_decred ]
ticker_factom = j [ label_factom ]
ticker_golem = j [ label_golem ]
ticker_maidsafecoin = j [ label_maidsafecoin ]
ticker_augur = j [ label_augur ]
ticker_stellar = j [ label_stellar ]
ticker_nem = j [ label_nem ]
ticker_ripple = j [ label_ripple ]
ticker_zcash = j [ label_zcash ]
2017-06-24 01:22:21 +00:00
ticker_nxt = j [ label_nxt ]
ticker_sia = j [ label_sia ]
ticker_dgb = j [ label_dgb ]
ticker_sys = j [ label_sys ]
2017-05-02 20:43:02 +00:00
last_dash = float ( ticker_dash [ ' last ' ] )
last_decred = float ( ticker_decred [ ' last ' ] )
last_factom = float ( ticker_factom [ ' last ' ] )
last_golem = float ( ticker_golem [ ' last ' ] )
last_maidsafecoin = float ( ticker_maidsafecoin [ ' last ' ] )
last_augur = float ( ticker_augur [ ' last ' ] )
last_stellar = float ( ticker_stellar [ ' last ' ] )
last_nem = float ( ticker_nem [ ' last ' ] )
last_ripple = float ( ticker_ripple [ ' last ' ] )
last_zcash = float ( ticker_zcash [ ' last ' ] )
2017-06-24 01:22:21 +00:00
last_nxt = float ( ticker_nxt [ ' last ' ] )
last_sia = float ( ticker_sia [ ' last ' ] )
last_dgb = float ( ticker_dgb [ ' last ' ] )
last_sys = float ( ticker_sys [ ' last ' ] )
2017-05-02 20:43:02 +00:00
value_dash = float ( last_dash * 18.84760476 )
value_decred = float ( last_decred * 93.74095377 )
value_factom = float ( last_factom * 207.78912373 )
value_golem = float ( last_golem * 7374.44608569 )
value_maidsafecoin = float ( last_maidsafecoin * 5973.05389222 )
value_augur = float ( last_augur * 94.01892768 )
2017-05-14 12:52:43 +00:00
value_stellar = float ( last_stellar * 318974.81202454 )
2017-05-14 12:54:13 +00:00
value_stellar_h = float ( 8.34800202 )
2017-05-02 20:43:02 +00:00
value_nem = float ( last_nem * 29892.11866946 )
2017-05-14 12:52:43 +00:00
value_ripple = float ( last_ripple * 27962.37965895 )
2017-05-14 12:54:13 +00:00
value_ripple_h = float ( 3.17485452 )
2017-05-02 20:43:02 +00:00
value_zcash = float ( last_zcash * 16.47649534 )
2017-06-24 01:22:21 +00:00
value_nxt = float ( last_nxt * 14932.63473053 )
value_sia = float ( last_sia * 129377.43190662 )
value_dgb = float ( last_dgb * 84177.21518989 )
value_sys = float ( last_sys * 10523.26194748 )
total = value_dash + value_decred + value_factom + value_golem + value_maidsafecoin + value_augur + value_stellar + value_nem + value_ripple + value_zcash
total_h = value_dash + value_decred + value_factom + value_golem + value_maidsafecoin + value_augur + value_stellar_h + value_nem + value_ripple_h + value_zcash
total_june = value_nxt + value_sia + value_dgb + value_sys + value_ans
2017-05-05 12:52:37 +00:00
xmr_totalvalue = float ( total / xmrbtc_price )
2017-06-24 01:22:21 +00:00
asppercent = ( ( ( ( stamp_price * total ) / 14950 ) - 1 ) * 100 ) + ( ( ( ( stamp_price * total_june ) / 13240 ) - 1 ) * 100 )
2017-05-05 12:33:11 +00:00
if asppercent > = 0 :
aspsign = ' + '
else :
aspsign = ' - '
2017-06-24 01:22:21 +00:00
xmrpercent = ( ( ( ( 650 * ( xmrbtc_price * stamp_price ) / 14950 ) - 1 ) * 100 ) ) + ( ( ( 250 * ( xmrbtc_price * stamp_price ) / 13240 ) - 1 ) * 100 )
2017-05-05 12:33:11 +00:00
if xmrpercent > = 0 :
xmrsign = ' + '
2017-05-03 14:51:17 +00:00
else :
2017-05-05 12:33:11 +00:00
xmrsign = ' - '
2017-06-24 01:22:21 +00:00
asppercent_h = ( ( ( ( stamp_price * total_h ) / 14950 ) - 1 ) * 100 ) + ( ( ( ( stamp_price * total_june ) / 13240 ) - 1 ) * 100 )
if asppercent_h > = 0 :
aspsign_h = ' + '
else :
aspsign_h = ' - '
bot . say ( " {0} {1:.2f} BTC; {2} {3:.2f} BTC; {4} {5:.2f} BTC; {6} {7:.2f} BTC; {8} {9:.2f} BTC; {10} {11:.2f} BTC; {12} {13:.2f} [ {14:.2f} ]BTC; {15} {16:.2f} BTC; {17} {18:.2f} [ {19:.2f} ]BTC; {20} {21:.2f} BTC; {22} {23:.2f} BTC; {24} {25:.2f} BTC; {26} {27:.2f} BTC; {28} {29:.2f} BTC; {30} {31:.2f} BTC; ASP Total: {32:.2f} [ {33:.2f} ]BTC/ {34:,.0f} USD/ {35:,.1f} XMR (02-May+20-Jun outlay, 10BTC+5BTC/14,950USD+13,240USD/650XMR+250XMR) (Since begin ASP: {36} {37:.2f} [ {38} {39:.2f} ] % X MR: {40} {41:.2f} % , Harvested 11.52BTC) " . format ( " DASH " , value_dash , " DCR " , value_decred , " FCT " , value_factom , " GNT " , value_golem , " MAID " , value_maidsafecoin , " REP " , value_augur , " STR " , value_stellar , value_stellar_h , " XEM " , value_nem , " XRP " , value_ripple , value_ripple_h , " ZEC " , value_zcash , " NXT " , value_nxt , " SIA " , value_sia , " DGB " , value_dgb , " SYS " , value_sys , " ANS " , value_ans , total + total_june , total_h + total_june , stamp_price * ( total + total_june ) , xmr_totalvalue , aspsign , asppercent , aspsign_h , asppercent_h , xmrsign , xmrpercent ) )
2017-05-02 20:43:02 +00:00
except :
bot . say ( " ERROR! " )
2017-06-24 01:22:21 +00:00
@sopel.module.commands ( ' wtfisasp ' )
def wtfisasp ( bot , trigger ) :
bot . say ( " ASP means the Angry Shitcoin Portfolio, a list of the top 15 coins that piss me off as people mindlessly pour money into them. " )
@sopel.module.commands ( ' asprules ' )
def asprules ( bot , trigger ) :
bot . say ( " 1. Shitcoins only, eg. a premine, ICO, Corporate, APPCoin, Buzzwordy, Copycat, etc. . 2. Must have high volume, it needs staying power to be considered as the ASP is a longterm thing. 3. 1 BTC gets bought of each coin on the list, as this list is not fictional, laughable as that is. 4. No trading, buy and hold only. 5. Can be liquidated at my discretion, but preferably once it ' s fleeced users of 4> BTC in value or more, or almost nothing is left (<0.1 BTC in value). 5. Each shitcoin should preferably should have a poor/toxic community, and or dev group shilling, censoring, etc. . 6. I must literally hate the idea of this coins existence. " )
2017-07-02 17:40:38 +00:00
@sopel.module.commands ( ' whaleornot ' )
def whaleornot ( bot , trigger ) :
if not trigger . group ( 2 ) :
bot . say ( " Gotta have skin in the game to be a big fish! Add some XMR after the command to see what level the player is at! " )
2017-07-02 19:57:12 +00:00
else :
try :
2017-07-24 15:34:38 +00:00
xmr_size = float ( trigger . group ( 2 ) )
if xmr_size < = 0 :
fish_string = " amoeba "
elif xmr_size < 0.1 :
2017-07-02 19:57:12 +00:00
fish_string = " plankton "
elif xmr_size > = 0.1 and xmr_size < 0.2 :
fish_string = " Paedocypris "
elif xmr_size > = 0.2 and xmr_size < 0.5 :
fish_string = " Dwarf Goby "
elif xmr_size > = 0.5 and xmr_size < 1 :
fish_string = " European Pilchard "
elif xmr_size > = 1 and xmr_size < 2 :
fish_string = " Goldfish "
elif xmr_size > = 2 and xmr_size < 5 :
fish_string = " Herring "
elif xmr_size > = 5 and xmr_size < 10 :
fish_string = " Atlantic Macerel "
elif xmr_size > = 10 and xmr_size < 20 :
fish_string = " Gilt-head Bream "
elif xmr_size > = 20 and xmr_size < 50 :
fish_string = " Salmonidae "
elif xmr_size > = 50 and xmr_size < 100 :
fish_string = " Gadidae "
elif xmr_size > = 100 and xmr_size < 200 :
fish_string = " Norwegian Delicious Salmon "
elif xmr_size > = 200 and xmr_size < 500 :
fish_string = " Electric eel "
elif xmr_size > = 500 and xmr_size < 1000 :
fish_string = " Tuna "
elif xmr_size > = 1000 and xmr_size < 2000 :
fish_string = " Wels catfish "
elif xmr_size > = 2000 and xmr_size < 5000 :
fish_string = " Black marlin "
elif xmr_size > = 5000 and xmr_size < 10000 :
fish_string = " Shark "
elif xmr_size > = 10000 and xmr_size < 20000 :
fish_string = " Dolphin "
elif xmr_size > = 20000 and xmr_size < 40000 :
fish_string = " Narwhal "
elif xmr_size > = 40000 and xmr_size < 60000 :
fish_string = " Orca "
elif xmr_size > = 60000 and xmr_size < 100000 :
fish_string = " Blue Whale "
elif xmr_size > = 100000 and xmr_size < 200000 :
fish_string = " Leviathan "
elif xmr_size > = 200000 :
fish_string = " Cthulu "
bot . say ( " {0} level. " . format ( fish_string ) )
except :
bot . say ( " Try a base ten representation of a number " )
2017-07-24 15:34:38 +00:00
@sopel.module.commands ( ' trebuchet ' )
def trebuchet ( bot , trigger ) :
bot . say ( " Can YOU use a counterweight to launch a 90 kg projectile over 300 meters? Yeah, I thought not. " )