New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@stuntstorm/basic-setup

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stuntstorm/basic-setup

Basic Setup commands for discord bot. A Few Handful commands created for a youtube video

latest
npmnpm
Version
1.0.9
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

StuntStorm's Easy to use Basic Setup NPM

Basic Setup commands for discord bot. A Few Handful commands created for a youtube video

@stuntstormmath (3)

Installation ⚒️

npm i @stuntstorm/basic-setup --save

Usage

Require with any Variable

const package = require("@stuntstorm/basic-setup")

PING COMMAND :

Use this to check the Ping Rate

package.ping(message);

TICKET COMMAND :

Use this to create private ticket with staff members (any user can access this command)

package.ticket(message)

BAN LIST COMMAND :

Use this command to view all the Banned Users from your server

package.banlist(message)

EMOJI LIST COMMAND :

Use this command to view all the Emojis from your server

package.emojilist(message)

RECORDING COMMAND :

Use this command to push the chat upwards and make avoid messages being recorded

package.recording(message)

Setup 🛠️

Setting Up Ping Command

const package = require("@stuntstorm/basic-setup")
const Discord = require('discord.js');
const client = new Discord.Client();

client.on("message", message => {
  if(message.content == "!ping") {
    package.ping(message);
  }
});

client.login("token");

Setting Up Ticket Command

const package = require("@stuntstorm/basic-setup")
const Discord = require('discord.js');
const client = new Discord.Client();

client.on("message", message => {
  if(message.content == "!ticket") {
    package.ticket(message);
  }
});

client.login("token");

Setting Up Ban List Command

const package = require("@stuntstorm/basic-setup")
const Discord = require('discord.js');
const client = new Discord.Client();

client.on("message", message => {
  if(message.content == "!banlist") {
    package.banlist(message);
  }
});

client.login("token");

Setting Up Emoji List Command

const package = require("@stuntstorm/basic-setup")
const Discord = require('discord.js');
const client = new Discord.Client();

client.on("message", message => {
  if(message.content == "!opban") {
    package.emojilist(message);
  }
});

client.login("token");

Setting Up Recording Command

const package = require("@stuntstorm/basic-setup")
const Discord = require('discord.js');
const client = new Discord.Client();

client.on("message", message => {
  if(message.content == "!recording") {
    package.recording(message);
  }
});

client.login("token");

Example Scenerio 💻

Index.js Code :

image

Discord Output :

image

Support 🐱‍💻

Feel free to join the support server : https://discord.gg/u6XzUFkKTn

StuntStorm's Github : https://github.com/StuntStorm

More NPM Packages : https://www.npmjs.com/~stuntstorm

NOTE 🗃️

This package is protected under MIT license. 🔒

Bots using this Project 👾

StuntStorm Discord bot by StuntStorm#7231

Created and Published by StuntStorm

FAQs

Package last updated on 03 Jul 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts