-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable Easter eggs, add more commands
- Loading branch information
1 parent
17c36a0
commit 8319190
Showing
5 changed files
with
31 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
const Discord = require("discord.js"); | ||
const config = require("../config.json"); | ||
|
||
module.exports = async(bot, msg, args) => { | ||
const embed = new Discord.RichEmbed() | ||
.setAuthor(bot.user.username, bot.user.avatarURL) | ||
.setDescription(`:smirk: **${bot.user.username}** by Gideon#5433, serving ${bot.users.size} Christians | ||
Need help? :confused: Try **${config.prefix}help** to get started.`) | ||
.setFooter(`${bot.user.username} v${config.version}`) | ||
.setColor(0xf1d302) | ||
|
||
msg.channel.send(embed) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
const Discord = require("discord.js"); | ||
const config = require("../config.json"); | ||
|
||
module.exports = async(bot, msg, args) => { | ||
const embed = new Discord.RichEmbed() | ||
.setAuthor(bot.user.username, bot.user.avatarURL) | ||
.setDescription(`Commands you can currently try: ${config.prefix}ping, ${config.prefix}hello, ${config.prefix}qr`) | ||
.setFooter(`${bot.user.username} v${config.version} Help Menu`) | ||
.setColor(0xed1c24) | ||
|
||
msg.channel.send(embed) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"token": "", | ||
"version": "1.0", | ||
"version": "0.2 beta", | ||
"prefix": "!" | ||
} |