diff --git a/README.md b/README.txt similarity index 57% rename from README.md rename to README.txt index 8ee3eb8..034bc7b 100644 --- a/README.md +++ b/README.txt @@ -1,9 +1,13 @@ -TriviaTime -========== +NOTE: This plugin cannot do anything yet, as no work has been put into it. + This plugin will be a feature packed trivia script for Supybot in the future. Plans -========== +-Main Priority + -add start command + -create file for questions and kaos; use files + -allow answer of questions + -add stop command Auto-voice weekly/monthly/yearly top players show individual player stats for week/month/year/ever show global top day/month/year/ever diff --git a/__init__.py b/__init__.py index 4921d49..a30b37a 100644 --- a/__init__.py +++ b/__init__.py @@ -29,8 +29,7 @@ ### """ -Add a description of the plugin (to be presented to the user inside the wizard) -here. This should describe *what* the plugin does. +An advanced trivia script for all to use. """ import supybot @@ -38,10 +37,11 @@ import supybot.world as world # Use this for the version of this plugin. You may wish to put a CVS keyword # in here if you're keeping the plugin in CVS or some similar system. -__version__ = "" +__version__ = "0.1" # XXX Replace this with an appropriate author or supybot.Author instance. -__author__ = supybot.authors.unknown +__author__ = supybot.Author('Tanner', 'tann', + 'tann@trivialand.org') # This is a dictionary mapping supybot.Author instances to lists of # contributions. diff --git a/plugin.py b/plugin.py index 491184e..6450237 100644 --- a/plugin.py +++ b/plugin.py @@ -33,11 +33,11 @@ from supybot.commands import * import supybot.plugins as plugins import supybot.ircutils as ircutils import supybot.callbacks as callbacks +import random class TriviaTime(callbacks.Plugin): - """Add the help for "@plugin help TriviaTime" here - This should describe *how* to use this plugin.""" + """This plugin is an advanced trivia game. Currently, there are no commands.""" threaded = True