xopbot
Version:
XOPBOT Is A Multipurpose Bot With Over 200+ Commands That Make You Love The Bot!
16 lines ⢠1.73 kB
JavaScript
const color = process.env.Color;
const lineReplyNoMention = require("discord-reply");
const logChannel = process.env.logChannel;
module.exports = {
name: "shop",
permissions: ["SEND_MESSAGES"],
clientpermissions: ["SEND_MESSAGES", "EMBED_LINKS"],
cooldown: 20,
description: "Buy From Shop",
async execute(client, message, cmd, args, Discord) {
const loggerchannel = client.channels.cache.get(logChannel);
const shope = new Discord.MessageEmbed().setTimestamp().setAuthor(`${message.author.username}`, message.author.displayAvatarURL({ dynamic: true })).setThumbnail(message.author.displayAvatarURL({ dynamic: true })).setColor(`${color}`).setTitle('The Dealers Shop').setDescription(`**Items Available:\n\nš„ļø Computer \nPrice:\`4000\`\nUse \`x!buy š„ļø\`To Get It!\n\nš£ Fishing Rod \nPrice:\`6000\`\nUse \`x!buy š£\`To Get It!\n\nšŖ Battle Axe \nPrice:\`8000\`\nUse \`x!buy šŖ\`To Get It!\n\nš« Hunting Gun \nPrice:\`15000\`\nUse \`x!buy š«\`To Get It!\n\nš¹ Crossbow \nPrice:\`22000\`\nUse \`x!buy š¹\`To Get It!\n\nšŗ Cat \nPrice:\`30000\`\nUse \`x!buy šŗ\`To Get It!\n\nš¶ Dog \nPrice:\`38000\`\nUse \`x!buy š¶\`To Get It!\n\nš¤ Robot \nPrice:\`45000\`\nUse \`x!buy š¤\`To Get It!\n\nšø Dank Frog \nPrice:\`80000\`\nUse \`x!buy šø\`To Get It!\n\n<:FBI_OPEN_UP:824886936862457897>FBI Patrick \nPrice:\`120000\`\nUse \`x!buy<:FBI_OPEN_UP:824886936862457897>\`To Get It!**`).setFooter('No Refunds - Dealer')
message.lineReplyNoMention({ embed: shope })
loggerchannel.send({ content: `**${message.author.username}#${message.author.discriminator} used the command ${this.name} in ${message.guild.name}**` })
}
}