buttontest, serversetup

This commit is contained in:
Sophie M 2021-08-27 16:14:52 -05:00 committed by GitHub
parent af3b23f843
commit 25ea95bbd8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 0 deletions

16
commands/buttontest.js Normal file
View file

@ -0,0 +1,16 @@
module.exports = {
name: "buttontest",
description: "buttontest",
execute(client, message, args) {
const buttonembed = {
"title": "buttontest",
"description": "anitrox buttontest",
"color": 9442302,
"footer": {
"icon_url": "https://cdn.discordapp.com/embed/avatars/0.png",
"text": "footertext"
}
};
message.channel.send({ embed: buttonembed });
}
}

18
commands/createserver.js Normal file
View file

@ -0,0 +1,18 @@
module.exports = {
name: 'serversetup',
description: 'Sets up channels and roles for your newly created server',
execute(client, message, args) {
const start = {
"title": "<a:AnitroxWorking:697147309531594843> Beginning Server Setup...",
"description": "This will set up the following:\nStaff Roles\nStaff Channels\nServer Channels\nThis will not set up:\nAdvertisements (if applicable)\nModeration bots\n\nClick :white_check_mark: to Continue\nClick :x: to Cancel",
"color": 12390624,
"footer": {
"icon_url": "https://media.discordapp.net/attachments/549707869138714635/793524910172667964/Screenshot_26.png",
"text": "Made with ❤ in Illinois | Anitrox by IDeletedSystem64"
}
};
// Embeds
message.channel.send({ embed: start });
}
}