discord_bot/commands/fun/asci.js

28 lines
797 B
JavaScript
Raw Normal View History

2024-02-07 14:45:22 +00:00
const discord = require("discord.js");
const figlet = require("figlet"); // MAKE SURE TO INSTALL FIGLET PACKAGE OR CODE WONT WORK
module.exports = {
name: "ascii",
aliases: [],
category: "fun",
usage: "ascii <text>",
description: "Gibt bereitgestellten Text im ASCII-Format zurück.",
run: async (client, message, args) => {
let text = args.join(" ");
if(!text) {
return message.channel.send(`Bitte Text für die ASCII-Konvertierung angeben!`)
}
let maxlen = 20
if(text.length > 20) {
return message.channel.send(`Bitte geben Sie Text mit 20 Zeichen oder weniger ein, da die Konvertierung nicht gut sein wird!`)
}
// AGAIN, MAKE SURE TO INSTALL FIGLET PACKAGE!
figlet(text, function(err, data) {
message.channel.send(data, {
code: 'AsciiArt'
});
})
}
};