Untitled
By: a guest | Feb 9th, 2010 | Syntax:
Python | Size: 0.53 KB | Hits: 21 | Expires: Never
#!/usr/bin/env python
fap module by Andi Miller, designed to be the alter ego of ZesDa from #42 on AFNet
"""
import random
def interjection(phenny, input):
phenny.say(input.nick + '!')
interjection.rule = r'$nickname!'
interjection.priority = 'high'
interjection.thread = False
def fap(phenny, input):
choice=random.choice(range(0,5))
if choice==1:
phenny.say("FAP")
if choice==2:
list=input.split(" ")
word=random.choice(list)
phenny.say("s/"+word+"/fap/")
fap.rule = r'(.*)'