Recent Posts
C | 13 sec ago
Erlang | 20 sec ago
Ruby | 23 sec ago
None | 46 sec ago
None | 58 sec ago
None | 58 sec ago
None | 1 min ago
Ruby | 1 min ago
None | 1 min ago
None | 1 min ago
Sitereport
Find cool info about any domain on the internet?
visit sitereport
Free Subdomains
Want a pastebin.com sub-domain for your community?
learn more...
What is pastebin?
Pastebin is a website that hosts all your text & code on dedicated servers for easy sharing.
learn more...
By Anonymous on the 9th of Feb 2010 11:49:43 PM
Download |
Raw |
Embed |
Report
#!/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'(.*)'
Submit a correction or amendment below.
Make A New Post