Created
April 15, 2013 14:45
-
-
Save Pacifist117/5388632 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
""" countdown.py - A countdown function for syncing streams | |
""" | |
def countdown(phenny,input): | |
phenny.say("3") | |
phenny.say("2") | |
phenny.say("1") | |
phenny.say("GO!") | |
countdown.commands = ['countdown','sync'] | |
countdown.priority = 'medium' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment