@Override
 public void help(BotContext ctx) {
   ctx.reply("Braisnchat trivia word game !!");
   ctx.reply("Use +guessword to start and stop the game");
   ctx.reply("Each sentence will have a word replaced with ****. Guess the missing word.");
   ctx.reply("Hint: the number of asterisks matches the number of characters in the word.");
 }
 @Override
 public void success(BotContext ctx, int score) {
   ctx.reply(
       "Correct ! The word was \""
           + missingWord
           + "\". "
           + ctx.sender
           + " now has "
           + score
           + ". Next question...");
 }
 @Override
 public void timeout(BotContext ctx) {
   ctx.reply("The missing word was \"" + missingWord + "\". Losers");
 }
 @Override
 public void ask(BotContext ctx) {
   ctx.reply("Guess : [" + logLine.user + ": " + censored + "]");
 }