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: 'cvsp',
- enabled: true,
- runIn: ['text', 'dm'],
- cooldown: 0,
- aliases: [],
- permLevel: 0,
- botPerms: ['EMBED_LINKS'],
- requiredSettings: [],
- description: 'Shows the difference between Premium and vip',
- 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('辅助的差别在那里','这个辅助分为两种等级Premium 跟 VIP');
- embed.addField('Premium','标准版的辅助 拥有全部标准的功能');
- embed.addField('VIP','拥有Premium的功能跟更多的功能 比如踢人 无限代码刷屏/无限加载屏幕 更改战局名字 给别人刷钱2500一个袋子 金额更高的隐形模式');
- embed.addField('如果还有更多的问题请到 #chinese-support 询问');
- msg.send(embed).catch(console.error);
- }
- };
Advertisement
Add Comment
Please, Sign In to add comment