DeViL_SkyNet

cbuy

Nov 24th, 2017
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. const { Command, version: klasaVersion } = require('klasa');
  2. const { version: discordVersion } = require('discord.js');
  3.  
  4.  
  5. module.exports = class extends Command {
  6.  
  7. constructor(...args) {
  8. super(...args, {
  9. name: 'cbuy',
  10. enabled: true,
  11. runIn: ['text', 'dm'],
  12. cooldown: 0,
  13. aliases: [],
  14. permLevel: 0,
  15. botPerms: ['EMBED_LINKS'],
  16. requiredSettings: [],
  17. description: 'Price of the menu and the payment method',
  18. quotedStringSupport: false,
  19. usage: '',
  20. usageDelim: undefined
  21. });
  22. }
  23.  
  24. async run(msg, ...params) {
  25. const embed = new this.client.methods.Embed();
  26. embed.setColor(Math.floor(Math.random()*16777215))
  27. embed.setAuthor(this.client.user.username, this.client.user.displayAvatarURL());
  28.  
  29. embed.addField('如何购买辅助?支付方式有那些?','你可以使用paypal或者steam礼品卡或者Bitcoin 比特比购买');
  30. embed.addField('Paypal支付','$15/premium 或者 22.5/Vip');
  31. embed.addField('Steam 礼品卡','$15/premium 或者 $25/Vip');
  32. embed.addField('Steam 礼品卡请发给管理Admins 他们会协助你购买辅助');
  33. embed.addField('Bitcoin 比特比','请私聊管理员 Admins 他们会协助你');
  34. embed.addField('如果还有更多的问题请到 #chinese-support 询问');
  35.  
  36. msg.send(embed).catch(console.error);
  37. }
  38.  
  39. };
Advertisement
Add Comment
Please, Sign In to add comment