azury-djs
Version:
Azury-djs, the best NPM Package you can have, with fun Minigames, button interactions, and more! Fun for your bot!
24 lines (22 loc) • 707 B
Markdown
# Example for Shuffle Guess
```js
await ShuffleGuess({
message: message,
embed: {
title: 'Shuffle Guess | Weky Development',
color: '#5865F2',
footer: '©️ Weky Development',
timestamp: true
},
word: ['voice'],
button: { cancel: 'Cancel', reshuffle: 'Reshuffle' },
startMessage:
'I shuffled a word it is **`{{word}}`**. You have **{{time}}** to find the correct word!',
winMessage:
'GG, It was **{{word}}**! You gave the correct answer in **{{time}}.**',
loseMessage: 'Better luck next time! The correct answer was **{{answer}}**.',
incorrectMessage: "No {{author}}! The word isn't `{{answer}}`",
othersMessage: 'Only <@{{author}}> can use the buttons!',
time: 60000
});
```