diff --git a/README.md b/README.md index 1aa1c1c..7a863a9 100644 --- a/README.md +++ b/README.md @@ -166,6 +166,10 @@ git clone https://github.com/spudgunman/meshing-around | `tic-tac-toe`| Plays the game classic game | ✅ | | `videopoker` | Plays basic 5-card hold Video Poker | ✅ | +To use QuizMaster the bbs_admin_list is the QuizMaster, who can `q: start` and q: stop` to start and stop the game, `q: broadcast ` to send a message to all players. +Players can `q: join` to join the game, `q: leave` to leave the game, `q: score` to see their score, and `q: top` to see the top 3 players. +To Answer a question, just type the answer prefixed with `q: `. + ## Other Install Options ### Docker Installation - handy for windows diff --git a/mesh_bot.py b/mesh_bot.py index 4fe6d1a..bbf8923 100755 --- a/mesh_bot.py +++ b/mesh_bot.py @@ -875,6 +875,7 @@ def quizHandler(message, nodeID, deviceID): elif user_answer.startswith("broadcast"): broadcast_msg = user_answer.replace("broadcast", "", 1).strip() msg = quizGamePlayer.broadcast(user_id, broadcast_msg) + msg = f"Broadcast message to players spud, finish this later" elif user_answer.startswith("?"): msg = ("Quiz Commands:\n" "q: join - Join the current quiz\n"