DeViL_SkyNet

cvsp

Nov 24th, 2017
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 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: 'cvsp',
  10. enabled: true,
  11. runIn: ['text', 'dm'],
  12. cooldown: 0,
  13. aliases: [],
  14. permLevel: 0,
  15. botPerms: ['EMBED_LINKS'],
  16. requiredSettings: [],
  17. description: 'Shows the difference between Premium and vip',
  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('辅助的差别在那里','这个辅助分为两种等级Premium 跟 VIP');
  30. embed.addField('Premium','标准版的辅助 拥有全部标准的功能');
  31. embed.addField('VIP','拥有Premium的功能跟更多的功能 比如踢人 无限代码刷屏/无限加载屏幕 更改战局名字 给别人刷钱2500一个袋子 金额更高的隐形模式');
  32. embed.addField('如果还有更多的问题请到 #chinese-support 询问');
  33. msg.send(embed).catch(console.error);
  34. }
  35.  
  36. };
Advertisement
Add Comment
Please, Sign In to add comment