├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── commands ├── ban.js ├── emoji.js ├── eval.js ├── help.js ├── kick.js ├── me.js ├── nick.js ├── paste.js ├── ping.js ├── playing.js ├── prune.js └── streaming.js ├── config ├── avatars │ └── howTo.txt ├── config.json ├── games.json ├── keywords.json └── paste.json ├── installer.bat ├── package.json ├── self.js └── src ├── Command.js ├── plugins ├── KeywordLogger.js ├── Logger.js └── MentionStalker.js └── utils ├── ConfigValidator.js └── Constants.js /.gitignore: -------------------------------------------------------------------------------- 1 | # Dependency directory 2 | node_modules 3 | 4 | # Startup 5 | run.bat -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/README.md -------------------------------------------------------------------------------- /commands/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/commands/ban.js -------------------------------------------------------------------------------- /commands/emoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/commands/emoji.js -------------------------------------------------------------------------------- /commands/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/commands/eval.js -------------------------------------------------------------------------------- /commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/commands/help.js -------------------------------------------------------------------------------- /commands/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/commands/kick.js -------------------------------------------------------------------------------- /commands/me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/commands/me.js -------------------------------------------------------------------------------- /commands/nick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/commands/nick.js -------------------------------------------------------------------------------- /commands/paste.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/commands/paste.js -------------------------------------------------------------------------------- /commands/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/commands/ping.js -------------------------------------------------------------------------------- /commands/playing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/commands/playing.js -------------------------------------------------------------------------------- /commands/prune.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/commands/prune.js -------------------------------------------------------------------------------- /commands/streaming.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/commands/streaming.js -------------------------------------------------------------------------------- /config/avatars/howTo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/config/avatars/howTo.txt -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/config/config.json -------------------------------------------------------------------------------- /config/games.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/config/games.json -------------------------------------------------------------------------------- /config/keywords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/config/keywords.json -------------------------------------------------------------------------------- /config/paste.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/config/paste.json -------------------------------------------------------------------------------- /installer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/installer.bat -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/package.json -------------------------------------------------------------------------------- /self.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/self.js -------------------------------------------------------------------------------- /src/Command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/src/Command.js -------------------------------------------------------------------------------- /src/plugins/KeywordLogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/src/plugins/KeywordLogger.js -------------------------------------------------------------------------------- /src/plugins/Logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/src/plugins/Logger.js -------------------------------------------------------------------------------- /src/plugins/MentionStalker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/src/plugins/MentionStalker.js -------------------------------------------------------------------------------- /src/utils/ConfigValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/src/utils/ConfigValidator.js -------------------------------------------------------------------------------- /src/utils/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRacingLion/Discord-SelfBot/HEAD/src/utils/Constants.js --------------------------------------------------------------------------------