minetestbot-modules/ping.py

28 lines
676 B
Python
Raw Normal View History

2013-01-07 10:00:44 -08:00
#!/usr/bin/env python
"""
ping.py - Phenny Ping Module
Author: Sean B. Palmer, inamidst.com
About: http://inamidst.com/phenny/
"""
import random
def hello(phenny, input):
greeting = random.choice(('Hi', 'Hey', 'Hello', 'sup'))
punctuation = random.choice(('', '!', '.'))
2013-01-07 10:00:44 -08:00
phenny.say(greeting + ' ' + input.nick + punctuation)
hello.rule = r'(?i)(hi|hello|hey) $nickname[ \t]*$'
def interjection(phenny, input):
2013-01-07 10:00:44 -08:00
phenny.say(input.nick + '!')
interjection.rule = r'$nickname!'
interjection.priority = 'high'
def l3(phenny, input):
phenny.say('<3 ' + input.nick)
l3.rule = r'<3 $nickname'
l3.priority = 'low'
2013-01-07 10:00:44 -08:00
if __name__ == '__main__':
2013-01-07 10:00:44 -08:00
print __doc__.strip()