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: 'cstealth',
- enabled: true,
- runIn: ['text', 'dm'],
- cooldown: 0,
- aliases: [],
- permLevel: 0,
- botPerms: ['EMBED_LINKS'],
- requiredSettings: [],
- description: 'How to use stealth in chinese.',
- 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('怎么在游戏里面刷钱','1.前往Recovery>Stealth>');
- embed.addField('2. 找到Auto Trigger Transcation Delay 并把它提升到250+');
- embed.addField('3. 启动Stealth Mode 启动Auto Trigger Transcations.');
- embed.addField('如果还有什么问题请到 #chinese-support 询问');
- msg.send(embed).catch(console.error);
- }
Advertisement
Add Comment
Please, Sign In to add comment