Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 493 Bytes

WouldYouRather.md

File metadata and controls

23 lines (20 loc) · 493 Bytes

🔖 Would You Rather

const { WouldYouRather } = require('falgames');

const Game = new WouldYouRather({
  message: message,
  isSlashGame: false,
  embed: {
    title: 'Would You Rather',
    color: '#551476',
  },
  buttons: {
    option1: 'Option 1',
    option2: 'Option 2',
  },
  timeoutTime: 60000,
  errMessage: 'Unable to fetch question data! Please try again.',
  playerOnlyMessage: 'Only {player} can use these buttons.'
});

Game.startGame();