tryedandcatched / Heliodor

Average Discord SelfBot (fork to add some features)

Home Page:https://ktntkot.xyz/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Heliodor - Discord SelfBot

Running SelfBot from Source Code

  • Install Node.js
  • Setup Node packages
    • Open cmd and run npm install prompt fs discord.js-selfbot-v13 discord-bettermarkdown gradient-string
  • Run SelfBot
    • Open cmd in SelfBot directory and run node index.js

How to contribute

Creating new commands

  • Inside index.js
commands.push({
  name: "command name",
  aliases: [ "command alias 1", "command alias 2" ],
  description: "command description",
  func: (msg, args) => { // msg - message sent, args - message arguments
    // command code
  }
});
  • Externally
    • Must be in commands directory!
module.exports = {
  name: "command name",
  aliases: [ "command alias 1", "command alias 2" ],
  description: "command description",
  func: (msg, args) => { // msg - message sent, args - message arguments
    // command code
  }
};

Examples

You can find examples here

About

Average Discord SelfBot (fork to add some features)

https://ktntkot.xyz/

License:GNU General Public License v3.0


Languages

Language:JavaScript 100.0%