SquadJS/plugins/discord-admin-cam-logs/README.md

30 lines
901 B
Markdown
Raw Normal View History

2020-05-15 12:42:39 -05:00
<div align="center">
<img src="../../assets/squadjs-logo.png" alt="Logo" width="500"/>
#### SquadJS - Discord Admin Cam Logs
</div>
## About
The Discord Admin Cam Logs plugin logs admin cam usage to a Discord channel.
## Installation
```js
// Place the following two lines at the top of your index.js file.
import Discord from 'discord.js';
import { discordAdminCamLogs } 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 discordAdminCamLogs(
server,
discordClient,
'discordChannelID',
{ // options - the options included below display the defaults and can be removed for simplicity.
color: 16761867 // color of embed
}
);
```