SquadJS/plugins/discord-rcon
2020-08-05 22:18:53 +01:00
..
index.js Add Discord RCON plugin to RCON commands via Discord 2020-08-05 22:18:53 +01:00
README.md Add Discord RCON plugin to RCON commands via Discord 2020-08-05 22:18:53 +01:00

Logo

SquadJS - Discord RCON

About

The Discord RCON plugin allows you to run RCON commands through a Discord channel.

Installation

// Place the following two lines at the top of your index.js file.
import Discord from 'discord.js';
import { discordRCON } from 'plugins';

// Place the following two lines in your index.js file before using a Discord plugins.
const discordClient = new Discord.Client();
await discordClient.login('Discord Login Token'); // insert your Discord bot's login token here.

// Place the following lines after all of the above.
await discordRCON(
  server,
  discordClient,
  'discordChannelID'
);