1.0.4 • Published 2 years ago

discord-v13-interaction v1.0.4

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

discord-v13-interaction

Looking for v13 Slash command Module for your Discord Bot All Shortcuts Are Here!

Slash Command Loader;

const CSYBOT = require("discord-v13-interaction");
const csybot = new CSYBOT(client, interaction);

/* All Your Commands Are Reloaded */
await csybot.reloadcommand("./commands");
/* All Your Commands Are Reloaded */

Interaction Message Send;

const CSYBOT = require("discord-v13-interaction");
const csybot = new CSYBOT(client, interaction);

/* İnteraction Message Edit! */
await csybot.send("hi");
/* İnteraction Message Edit! */

Interaction Message Edit;

const CSYBOT = require("discord-v13-interaction");
const csybot = new CSYBOT(client, interaction);

/* İnteraction Message Edit! */
await csybot.send("hi");
await csybot.edit("hi 2");
/* İnteraction Message Edit! */

Interaction Number Formatter;

const CSYBOT = require("discord-v13-interaction");
const csybot = new CSYBOT(client, interaction);

/* Number Formatter */
await csybot.numformat(100000) // 100k
/* Number Formatter */

Interaction Random Geranator;

const CSYBOT = require("discord-v13-interaction");
const csybot = new CSYBOT(client, interaction);

/* Random Geranator */
await csybot.random(16) // ELM0BCDE678EAB235
/* Random Geranator */

Interaction Filter;

const CSYBOT = require("discord-v13-interaction");
const csybot = new CSYBOT(client, interaction);

/* Interaction Filter */
await csybot.filter("`${}\n(9999 charters)") // [...]
/* Interaction Filter */