Add a help page
This commit is contained in:
parent
2c31d93d98
commit
c919cecd2e
1 changed files with 74 additions and 0 deletions
74
docs/index.html
Normal file
74
docs/index.html
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
<!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>
|
||||
</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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue