1.2.0 • Published 7 years ago
discordytools v1.2.0
#Discordy Tools !
Discordy Tools is a module that makes you use Discord Api (Discord.js) A lot easier! Our (Actually only my) target is to make simple commands to make easier your life!
And Also A Warning : DO NOT think these are only commands! More will be coming soon!
(And Also bugs will be solved!)
How to use:
var Discord = require('discord.js');
var Tools = require('discordytools');
Embeds:
var embed = Tools.embed("content");
message.channel.send(embed);
var embed = Tools.titleEmbed("content");
message.channel.send(embed);
var embed = Tools.footerEmbed("content"); //Warning small charachters!
message.channel.send(embed);
Create Channel:
Tools.createChannel(message.guild, "name", "type").then(channel => {
console.log(channel);
});