-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
22 additions
and
985 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
|
||
/** | ||
* Module: trivia | ||
* This is a trivia module, setup to handle a game of trivia. | ||
* Players compete to be first to answer the question to get points! | ||
* 3 points for answering before the first hint | ||
* 2 points for answering after the first hint but before the second | ||
* 1 point for answering after the second hit before time is up | ||
* The winner is the first to the designated total of points | ||
* | ||
* This trivia module uses a database to track usernames and career scores | ||
* The database is defined in the variables in the class | ||
* Schema is in another file in the folder called db.sql for a default setup | ||
* | ||
*/ | ||
|
||
class trivia extends ircModule { | ||
|
||
} | ||
|
Oops, something went wrong.