Compare commits
2 Commits
5336070245
...
8ac844ecde
Author | SHA1 | Date |
---|---|---|
|
8ac844ecde | |
|
2a9311f021 |
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "schat2-clive",
|
"name": "schat2-clive",
|
||||||
"version": "1.4.2",
|
"version": "1.4.3",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "schat2-clive",
|
"name": "schat2-clive",
|
||||||
"version": "1.4.2",
|
"version": "1.4.3",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bhttp": "^1.2.8",
|
"bhttp": "^1.2.8",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "schat2-clive",
|
"name": "schat2-clive",
|
||||||
"version": "1.4.2",
|
"version": "1.4.3",
|
||||||
"description": "Game host for SChat 2-powered chat sites",
|
"description": "Game host for SChat 2-powered chat sites",
|
||||||
"main": "src/app.js",
|
"main": "src/app.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -123,7 +123,9 @@ function onJoin(data, bot) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function onLeave(data, bot) {
|
function onLeave(data, bot) {
|
||||||
bot.rooms[data.roomId].users = bot.rooms[data.roomId].users.filter((userId) => userId !== data.userId);
|
if (bot.rooms[data.roomId]) {
|
||||||
|
bot.rooms[data.roomId].users = bot.rooms[data.roomId].users.filter((userId) => userId !== data.userId);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function onMessage(message, bot, games) {
|
function onMessage(message, bot, games) {
|
||||||
|
|
|
@ -5,11 +5,7 @@ const timers = require('timers/promises');
|
||||||
|
|
||||||
const questions = require('../../assets/jeopardy.json');
|
const questions = require('../../assets/jeopardy.json');
|
||||||
|
|
||||||
const settings = {
|
const settings = { ...config.trivia };
|
||||||
rounds: config.trivia.rounds,
|
|
||||||
timeout: config.trivia.timeout,
|
|
||||||
mode: config.trivia.mode,
|
|
||||||
};
|
|
||||||
|
|
||||||
let game = null;
|
let game = null;
|
||||||
|
|
||||||
|
@ -100,6 +96,8 @@ async function playRound(context, round = 0) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
await timers.setTimeout(2000);
|
||||||
|
|
||||||
const leaders = Object.entries(game.points).sort(([, scoreA], [, scoreB]) => scoreB - scoreA).map(([username, score], index) => {
|
const leaders = Object.entries(game.points).sort(([, scoreA], [, scoreB]) => scoreB - scoreA).map(([username, score], index) => {
|
||||||
if (index === 0) {
|
if (index === 0) {
|
||||||
return `**@${username}** with **${score}** points`;
|
return `**@${username}** with **${score}** points`;
|
||||||
|
@ -107,6 +105,7 @@ async function playRound(context, round = 0) {
|
||||||
|
|
||||||
return `**@${username}** with **${score}** points`;
|
return `**@${username}** with **${score}** points`;
|
||||||
}).join(', ');
|
}).join(', ');
|
||||||
|
|
||||||
context.sendMessage(`That's the end of the game! Best players: ${leaders}`, context.room.id);
|
context.sendMessage(`That's the end of the game! Best players: ${leaders}`, context.room.id);
|
||||||
|
|
||||||
game = null;
|
game = null;
|
||||||
|
|
Loading…
Reference in New Issue