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: 'ckeys',
- enabled: true,
- runIn: ['text', 'dm'],
- cooldown: 0,
- aliases: [],
- permLevel: 0,
- botPerms: ['EMBED_LINKS'],
- requiredSettings: [],
- description: 'Shows the shorcut of the menu',
- 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('这个辅助的快捷键是什么?','*或者ins 可以开启/关闭辅助');
- embed.addField('小键盘快捷键','8或者↑可以在辅助界面往上移动');
- embed.addField('2或者↓可以再辅助界面往下移动');
- embed.addField('5或者回车 锁定选着');
- embed.addField('0或者ESC返回上一个界面');
- embed.addField('- 使用載具武器');
- embed.addField('7 秒刹车 要求开启7&9 supercar mode');
- embed.addField('9 飚车 要求开启 7&9supercar mode');
- embed.addField('1 打左转灯 要求开启 car indicator');
- embed.addField('3 打右转灯 要求开启 car indicator');
- embed.addField('传送快捷键','F7');
- embed.addField('往上升的快捷键','F8');
- embed.addField('如果还有更多的问题请到 #chinese-support 询问');
- msg.send(embed).catch(console.error);
- }
- };
Advertisement
Add Comment
Please, Sign In to add comment