Advertisement
DeViL_SkyNet

csolutions

Nov 24th, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 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: 'csolutions',
  10. enabled: true,
  11. runIn: ['text', 'dm'],
  12. cooldown: 0,
  13. aliases: [],
  14. permLevel: 0,
  15. botPerms: ['EMBED_LINKS'],
  16. requiredSettings: [],
  17. description: 'provide information on how to fix the injection problem.',
  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('辅助注入成功 但是游戏没反应 我应该怎么办?','1.请确保你安装了 https://www.microsoft.com/en-gb/download/details.aspx?id=49981');
  30. embed.addField('跟 https://www.microsoft.com/en-us/download/details.aspx?id=52685');
  31. embed.addField('如果没有安装请安装一下在注入。');
  32. embed.addField('我电脑上早就安装好了?','请卸载了重新安装一下Miscrosoft Visual C++ 2015');
  33. embed.addField('安装好了重新试一下');
  34. embed.addField('我都试过了还是没用 请问怎么办?','前往%appdata%/Roaming 删除d3sk1ng 文件夹');
  35. embed.addField('然后在重新注入,激活码的网站为: https://d3sk1ng.com/index.php?account/personal-details');
  36. embed.addField('如果还有更多的问题请到 #chinese-support 询问');
  37.  
  38. msg.send(embed).catch(console.error);
  39. }
  40.  
  41. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement