mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-26 14:19:11 +02:00
first message command, various single response commands
This commit is contained in:
@@ -49,7 +49,7 @@ the [home server](https://discord.gg/sbMe32W).
|
|||||||
6. Run `npm i -g pm2` to install PM2.
|
6. Run `npm i -g pm2` to install PM2.
|
||||||
7. Run `pm2 start Xiao.js --name xiao` to run the bot.
|
7. Run `pm2 start Xiao.js --name xiao` to run the bot.
|
||||||
|
|
||||||
## Commands (329)
|
## Commands (333)
|
||||||
### Utility:
|
### Utility:
|
||||||
|
|
||||||
* **eval:** Executes JavaScript code.
|
* **eval:** Executes JavaScript code.
|
||||||
@@ -68,6 +68,7 @@ the [home server](https://discord.gg/sbMe32W).
|
|||||||
* **emoji-image:** Responds with an emoji's full-scale image.
|
* **emoji-image:** Responds with an emoji's full-scale image.
|
||||||
* **emoji-list:** Responds with a list of the server's custom emoji.
|
* **emoji-list:** Responds with a list of the server's custom emoji.
|
||||||
* **emoji-info:** Responds with detailed information on an emoji.
|
* **emoji-info:** Responds with detailed information on an emoji.
|
||||||
|
* **first-message:** Responds with the first message ever sent to a channel.
|
||||||
* **id:** Responds with a user's ID.
|
* **id:** Responds with a user's ID.
|
||||||
* **message-info:** Responds with detailed information on a message.
|
* **message-info:** Responds with detailed information on a message.
|
||||||
* **role-info:** Responds with detailed information on a role.
|
* **role-info:** Responds with detailed information on a role.
|
||||||
@@ -136,9 +137,12 @@ the [home server](https://discord.gg/sbMe32W).
|
|||||||
* **its-joke:** It's joke!
|
* **its-joke:** It's joke!
|
||||||
* **just-do-it:** Sends a link to the "Just Do It!" motivational speech.
|
* **just-do-it:** Sends a link to the "Just Do It!" motivational speech.
|
||||||
* **lenny:** Responds with the lenny face.
|
* **lenny:** Responds with the lenny face.
|
||||||
|
* **nom:** Posts a GIF of Kanna eating a crab.
|
||||||
|
* **source:** Hello! Can you give me the source?
|
||||||
* **spam:** Responds with a picture of Spam.
|
* **spam:** Responds with a picture of Spam.
|
||||||
* **tableflip:** Flips a table... With animation!
|
* **tableflip:** Flips a table... With animation!
|
||||||
* **wynaut:** Why not? Wynaut?
|
* **wynaut:** Why not? Wynaut?
|
||||||
|
* **yoff:** Posts a picture that truly defines modern art.
|
||||||
|
|
||||||
### Events:
|
### Events:
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 1.8 MiB |
Binary file not shown.
|
After Width: | Height: | Size: 273 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 655 KiB |
@@ -0,0 +1,38 @@
|
|||||||
|
const Command = require('../../structures/Command');
|
||||||
|
const { MessageEmbed } = require('discord.js');
|
||||||
|
|
||||||
|
module.exports = class FirstMessageCommand extends Command {
|
||||||
|
constructor(client) {
|
||||||
|
super(client, {
|
||||||
|
name: 'first-message',
|
||||||
|
aliases: ['first-msg'],
|
||||||
|
group: 'info',
|
||||||
|
memberName: 'first-message',
|
||||||
|
description: 'Responds with the first message ever sent to a channel.',
|
||||||
|
clientPermissions: ['EMBED_LINKS'],
|
||||||
|
args: [
|
||||||
|
{
|
||||||
|
key: 'channel',
|
||||||
|
prompt: 'Which channel would you like to get the first message of?',
|
||||||
|
type: 'channel',
|
||||||
|
default: msg => msg.channel
|
||||||
|
}
|
||||||
|
]
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async run(msg, { channel }) {
|
||||||
|
const messages = await channel.messages.fetch({ after: 1, limit: 1 });
|
||||||
|
const message = messages.first();
|
||||||
|
const format = message.author.avatar && message.author.avatar.startsWith('a_') ? 'gif' : 'png';
|
||||||
|
const embed = new MessageEmbed()
|
||||||
|
.setColor(message.member ? message.member.displayHexColor : 0x00AE86)
|
||||||
|
.setThumbnail(message.author.displayAvatarURL({ format }))
|
||||||
|
.setAuthor(msg.author.tag, msg.author.displayAvatarURL({ format }))
|
||||||
|
.setDescription(message.content)
|
||||||
|
.setTimestamp(message.createdAt)
|
||||||
|
.setFooter(`ID: ${message.id}`)
|
||||||
|
.addField('❯ Jump', message.url);
|
||||||
|
return msg.embed(embed);
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -25,7 +25,7 @@ module.exports = class MessageInfoCommand extends Command {
|
|||||||
const embed = new MessageEmbed()
|
const embed = new MessageEmbed()
|
||||||
.setColor(message.member ? message.member.displayHexColor : 0x00AE86)
|
.setColor(message.member ? message.member.displayHexColor : 0x00AE86)
|
||||||
.setThumbnail(message.author.displayAvatarURL({ format }))
|
.setThumbnail(message.author.displayAvatarURL({ format }))
|
||||||
.setAuthor(msg.author.tag, msg.author.displayAvatarURL({ format }))
|
.setAuthor(message.author.tag, message.author.displayAvatarURL({ format }))
|
||||||
.setDescription(message.content)
|
.setDescription(message.content)
|
||||||
.setTimestamp(message.createdAt)
|
.setTimestamp(message.createdAt)
|
||||||
.setFooter(`ID: ${message.id}`)
|
.setFooter(`ID: ${message.id}`)
|
||||||
|
|||||||
@@ -0,0 +1,19 @@
|
|||||||
|
const Command = require('../../structures/Command');
|
||||||
|
const path = require('path');
|
||||||
|
|
||||||
|
module.exports = class NomCommand extends Command {
|
||||||
|
constructor(client) {
|
||||||
|
super(client, {
|
||||||
|
name: 'nom',
|
||||||
|
aliases: ['kanna-crab'],
|
||||||
|
group: 'single',
|
||||||
|
memberName: 'nom',
|
||||||
|
description: 'Posts a GIF of Kanna eating a crab.',
|
||||||
|
clientPermissions: ['ATTACH_FILES']
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
run(msg) {
|
||||||
|
return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'nom.gif')] });
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
const Command = require('../../structures/Command');
|
||||||
|
const path = require('path');
|
||||||
|
|
||||||
|
module.exports = class SourceCommand extends Command {
|
||||||
|
constructor(client) {
|
||||||
|
super(client, {
|
||||||
|
name: 'source',
|
||||||
|
aliases: ['sauce'],
|
||||||
|
group: 'single',
|
||||||
|
memberName: 'source',
|
||||||
|
description: 'Hello! Can you give me the source?',
|
||||||
|
clientPermissions: ['ATTACH_FILES']
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
run(msg) {
|
||||||
|
return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'source.png')] });
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
const Command = require('../../structures/Command');
|
||||||
|
const path = require('path');
|
||||||
|
|
||||||
|
module.exports = class SourceCommand extends Command {
|
||||||
|
constructor(client) {
|
||||||
|
super(client, {
|
||||||
|
name: 'yoff',
|
||||||
|
group: 'single',
|
||||||
|
memberName: 'yoff',
|
||||||
|
description: 'Posts a picture that truly defines modern art.',
|
||||||
|
clientPermissions: ['ATTACH_FILES']
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
run(msg) {
|
||||||
|
return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'yoff.png')] });
|
||||||
|
}
|
||||||
|
};
|
||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "xiao",
|
"name": "xiao",
|
||||||
"version": "96.1.1",
|
"version": "96.2.0",
|
||||||
"description": "Your personal server companion.",
|
"description": "Your personal server companion.",
|
||||||
"main": "Xiao.js",
|
"main": "Xiao.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Reference in New Issue
Block a user