79 lines
No EOL
2.1 KiB
HTML
79 lines
No EOL
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Twitch Quizzer Documentation</title>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/dark.css">
|
|
<style>
|
|
.center {
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="center">
|
|
<h1>Twitch Quizzer Information</h1>
|
|
<p>Made by: Oliver Akins</p>
|
|
</div>
|
|
<hr>
|
|
<div>
|
|
<h2>Commands</h2>
|
|
<p>
|
|
All of the commands are moderator-only
|
|
</p>
|
|
<p>
|
|
<code>!start</code> - Starts the quiz, this must be the first command
|
|
ran in the chat, before this is ran, the bot will <b>NOT</b> keep track
|
|
of any votes.
|
|
</p>
|
|
<p>
|
|
<code>!next</code> - This tells the bot to move to the next question in
|
|
the quiz. This also says how many people got the previous question correct.
|
|
Once there are no more questions in the quiz, this will send a message
|
|
in Discord with additional statistics for Ray to use and then stop the
|
|
quiz, meaning that <code>!start</code> would need to be re-ran for the
|
|
quiz.
|
|
</p>
|
|
<p>
|
|
<code>!reset <User></code> - This reset's the user's vote for
|
|
the current question if the users are not able to change their vote
|
|
after initially voting.
|
|
</p>
|
|
</div>
|
|
<hr>
|
|
<div>
|
|
<h2>How to answer the question</h2>
|
|
<p>
|
|
Just put the letter surrounded by parenthesis anywhere in your chat
|
|
message. The letter is also case-insensitive, so you can use either
|
|
the upper or lowercase letter. Below are some examples of
|
|
<b>VALID</b> chat votes.
|
|
<br>
|
|
<br>
|
|
<code>I'm going to vote for (a)</code>
|
|
<br>
|
|
<code>(D)</code>
|
|
<br>
|
|
<code>maybe I'll vote for (a), but maybe also (b)</code> (this will
|
|
count the first vote it finds, so only the "A" vote will count)
|
|
<br>
|
|
<code>(C) because I have no idea</code>
|
|
<br>
|
|
<br>
|
|
Below is some examples of <b>INVALID</b> chat votes:
|
|
<br>
|
|
<code>( no you )</code>
|
|
<br>
|
|
<code>(1)</code>
|
|
<br>
|
|
<code>(u)</code>
|
|
<br>
|
|
<code>()</code>
|
|
<br>
|
|
<code>(ab)</code>
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html> |