Updated Readme

Added Future plans
This commit is contained in:
Tanner 2013-01-06 18:36:00 -06:00
parent 75bfc751f5
commit 4f982d59fc
3 changed files with 13 additions and 9 deletions

View File

@ -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

View File

@ -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.

View File

@ -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