You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
help: `Mastermind, the code-breaking game! Type \`\`${prefix}mastermind (room) guess (your guess; eg 5694)\`\` to make a guess. Rules: https://en.wikipedia.org/wiki/Mastermind_(board_game)`,
noDisplay: true,
permissions: 'none',
commandFunction: function (Bot, by, args, client) {
let room = args.shift();
if (!room) return Bot.pm(by, unxa);
room = tools.getRoom(room);
if (!Bot.rooms[room]) return Bot.pm(by, "Invalid room.");