Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const { Command, version: klasaVersion } = require('klasa');
- const { version: discordVersion } = require('discord.js');
- module.exports = class extends Command {
- constructor(...args) {
- super(...args, {
- name: 'cbuy',
- enabled: true,
- runIn: ['text', 'dm'],
- cooldown: 0,
- aliases: [],
- permLevel: 0,
- botPerms: ['EMBED_LINKS'],
- requiredSettings: [],
- description: 'Price of the menu and the payment method',
- quotedStringSupport: false,
- usage: '',
- usageDelim: undefined
- });
- }
- async run(msg, ...params) {
- const embed = new this.client.methods.Embed();
- embed.setColor(Math.floor(Math.random()*16777215))
- embed.setAuthor(this.client.user.username, this.client.user.displayAvatarURL());
- embed.addField('如何购买辅助?支付方式有那些?','你可以使用paypal或者steam礼品卡或者Bitcoin 比特比购买');
- embed.addField('Paypal支付','$15/premium 或者 22.5/Vip');
- embed.addField('Steam 礼品卡','$15/premium 或者 $25/Vip');
- embed.addField('Steam 礼品卡请发给管理Admins 他们会协助你购买辅助');
- embed.addField('Bitcoin 比特比','请私聊管理员 Admins 他们会协助你');
- embed.addField('如果还有更多的问题请到 #chinese-support 询问');
- msg.send(embed).catch(console.error);
- }
- };
Advertisement
Add Comment
Please, Sign In to add comment