Skip to content

Commit 9e640c0

Browse files
authored
Merge pull request CloudBotIRC#79 from IlGnome/patch-5
Create dwi.py
2 parents 7406703 + 1899038 commit 9e640c0

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

plugins/dwi.py

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
#DWI for the fucking lUsers in my channel, by IlGnome
2+
3+
4+
import random
5+
from cloudbot import hook
6+
7+
8+
9+
DWImacros =['https://i.imgur.com/WhgY2sX.gif',
10+
'https://i.imgur.com/eGInc.jpg',
11+
'https://i.imgur.com/KA3XSt5.gif',
12+
'https://i.imgur.com/rsuXB69.gif',
13+
'https://i.imgur.com/fFXmuSS.jpg',
14+
'https://j.gifs.com/L9mmYr.gif',
15+
'https://i.imgur.com/nxMBqb4.gif']
16+
17+
#This part currently broken
18+
DWIphrases = [ 'Looks like {} needs',
19+
'Ever think that {} just needs to',
20+
'Jesus fuck, {}, just',
21+
22+
]
23+
24+
25+
26+
27+
@hook.command('dwi','dealwithit')
28+
29+
def DWI(text, message):
30+
'''Tell some one in the channel to deal with it'''
31+
PersonNeedsToDeal = text.strip()
32+
33+
message('\x02 {}\x02 {}'.format(PersonNeedsToDeal, random.choice(DWImacros)))

0 commit comments

Comments
 (0)