// replace space with U+2003 Em Space to separate words, since a single space separates the placeholders, and double spaces are removed during Markdown render
context.sendMessage(`${style.bold(style.green(`${Math.floor(game.timeout/3)*2} seconds`))} left, first hint for ${style.bold(style.purple(`question ${round+1}/${game.questions.length}`))}: ${style.bold(`${question.answer.slice(0,1)}${question.answer.slice(1).replace(/\s/g,'').replace(/[^\s]/g,'_ ').trim()}`)}`,context.room.id);
context.sendMessage(`${style.bold(style.green(`${Math.floor(game.timeout/3)} seconds`))} left, second hint for ${style.bold(style.purple(`question ${round+1}/${game.questions.length}`))}: ${style.bold(`${question.answer.slice(0,1)}${question.answer.slice(1,-1).replace(/\s/g,'').replace(/[^\s]/g,'_ ')}${question.answer.slice(-1)}`)}`,context.room.id);
context.sendMessage(`The game was stopped by ${style.cyan(`${config.usernamePrefix}${game.stopped.username}`)}. The answer to the last question was: ${style.bold(question.answer)}. Best players: ${getLeaders(context)}`,context.room.id);
context.sendMessage(`${style.bold(style.yellow(question.fullAnswer||question.answer))} is the right answer, played in ${style.bold(style.green(`${((newDate()-now)/1000).toFixed(3)}s`))}! ${scores}`,context.room.id);
context.sendMessage(`${style.bold(style.red('STOP!'))} The correct answer is ${style.bold(style.green(question.fullAnswer||question.answer))}. ${scores}`,context.room.id);
context.sendMessage(`The game was stopped by ${config.usernamePrefix}${game.stopped.username}. The answer to the last question was: ${style.bold(question.answer)}. Best players: ${getLeaders(context)}`,context.room.id);
context.sendMessage(`There is already a game going on! Use ${config.prefix}trivia:stop to reset. The current question for round ${game.round+1} is: ${game.questions[game.round].question}`,context.room.id);
if(newRegExp(answer,'i').test(decode(message.originalBody||message.body))&&!game.answers.has(context.user.id)){// resolve HTML entities in case original body is not available, such as & to &
context.sendMessage(`${style.bold(fullAnswer||answer)} is the correct answer! You might want to ${style.bold('/whisper')} the answer to me instead, so others can't leech off your impeccable knowledge. You will receive a point at the end of the round.`,context.room.id,null,context.user.username);
context.sendMessage(`${style.bold(fullAnswer||answer)} is the correct answer! You will receive a point at the end of the round.`,context.room.id,null,context.user.username);