bfijuewhfgu
v3.0.5
Published
A fun npm package to play games within Discord with buttons!
Downloads
2
Readme
What is weky?
- A fun npm package to play games within Discord with buttons!
- looking for examples? click here: Examples
Features
- 🧑 Beginner friendly
- 🎉 Easy to use
- ✨ Simple
- 🔘 Discord Buttons
- and much more!
Install the package 📥
npm install weky
Usage 📚
const { Calculator } = require("weky");
await Calculator({
message: message,
embed: {
title: 'Calculator | Weky Development',
color: '#7289da',
timestamp: true
},
disabledQuery: 'Calculator is disabled!',
invalidQuery: 'The provided equation is invalid!',
othersMessage: 'Only <@{{author}}> can use the buttons!'
});
Example ✏️
const Discord = require('discord.js');
require('@weky/inlinereply');
const client = new Discord.Client();
const disbut = require('discord-buttons');
const { Calculator } = require('weky');
disbut(client);
client.on('ready', async () => {
console.log(`Logged in as ${client.user.tag}`);
});
client.on('message', async (message) => {
if(message.content === '!calculator') {
await Calculator({
message: message,
embed: {
title: 'Calculator | Weky Development',
color: '#5865F2',
timestamp: true,
},
disabledQuery: 'Calculator is disabled!',
invalidQuery: 'The provided equation is invalid!',
othersMessage: 'Only <@{{author}}> can use the buttons!',
});
}
});
client.login('DISCORD_BOT_TOKEN');
Result 📤
Contributing 🤝
- Contributions, issues and feature requests are welcome!
- Feel free to check issues page.