mirror of
https://github.com/UniverseDevGroup/PokeBot.git
synced 2025-01-22 17:32:00 -05:00
Things
This commit is contained in:
parent
f43114a42d
commit
a4d1af8d48
3 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
exports.run = (bot, msg, args) => {
|
||||
const { RichEmbed } = require('discord.js');
|
||||
bot.channels.get('416726932927938570').send(
|
||||
bot.channels.find('name', 'suggestions').send(
|
||||
new RichEmbed()
|
||||
.setColor (0x00ae86)
|
||||
.setTitle('Suggestion')
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
module.exports = (bot, member) => {
|
||||
const { RichEmbed } = require('discord.js');
|
||||
bot.channels.get('416633835216830495').send(`Welcome to the server **${member.user.tag}**! Make sure to read the rules! We now have ${member.guild.memberCount} members.`);
|
||||
bot.channels.find('name', 'welcome').send(`Welcome to the server **${member.user.tag}**! Make sure to read the rules! We now have ${member.guild.memberCount} members.`);
|
||||
bot.channels.find('name', 'logs').send(
|
||||
new RichEmbed()
|
||||
.setColor(0x00ae86)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
module.exports = (bot, member) => {
|
||||
const { RichEmbed } = require('discord.js');
|
||||
bot.channels.get('416633835216830495').send(`**${member.user.tag}** just left. We now have ${member.guild.memberCount} members left. Aww man...`);
|
||||
bot.channels.find('name', 'welcome').send(`**${member.user.tag}** just left. We now have ${member.guild.memberCount} members left. Aww man...`);
|
||||
bot.channels.find('name', 'logs').send(
|
||||
new RichEmbed()
|
||||
.setColor(0x00ae86)
|
||||
|
|
Loading…
Reference in a new issue