/discord-utils

The discord.js utility tool

Primary LanguageJavaScriptOtherNOASSERTION

Discord eutils

Discord utils is a package made to handle general things on your bot

you can find our support server here

Installing

npm i discord-eutils

usage

const Discord = require('discord.js'); // --> require discord.js

const utils = require("discord-eutils") // --> import our module

const client = new Discord.Client(); // --> create a discord bot client

const util = new utils.UtilClient(client, {
   Ownerids: ["your id"] // --> a array
}) // --> create a util client with your client and options

client.util = util // --> bind it to client.util so you can use it any were 


client.once('ready', async () => {
 const activities = [
    `${client.guilds.cache.size} servers!`,
    `${client.channels.cache.size} channels!`,
    `${client.guilds.cache.reduce((a, b) => a + b.memberCount, 0)} users!`
  ]; // --> ex : set a switching status for your bot
client.util.switchingstatus(activities, {
    time: 70000,// --> interval between changes
    type: 'WATCHING' // --> Status type
})
	console.log('Ready!');
});

methods

sendFile()

switchingstatus()