├── .env.scheme ├── .eslintrc.js ├── .github └── workflows │ ├── codeql-analysis.yml │ └── node.js.yml ├── .gitignore ├── .replit ├── LICENSE ├── README.md ├── package.json ├── renovate.json ├── src ├── Commands │ ├── Music │ │ ├── BoundCommand.js │ │ ├── LoopCommand.js │ │ ├── NowplayCommand.js │ │ ├── PauseCommand.js │ │ ├── PlayCommand.js │ │ ├── QueueCommand.js │ │ ├── ResumeCommand.js │ │ ├── SkipCommand.js │ │ ├── StopCommand.js │ │ └── VolumeCommand.js │ └── Util │ │ ├── HelpCommand.js │ │ ├── PingCommand.js │ │ └── StatsCommand.js ├── Extenders │ └── Node.js ├── Listeners │ ├── Ready.js │ ├── interactionCreate.js │ ├── nodeConnect.js │ ├── nodeDestroy.js │ ├── nodeDisconnect.js │ ├── nodeError.js │ ├── playerMove.js │ ├── queueEnd.js │ ├── raw.js │ ├── socketClosed.js │ └── trackStart.js ├── Plugin │ └── Deezer │ │ ├── index.js │ │ └── plugin.js ├── Struct │ └── NoteClient.js ├── Utility │ ├── Chunk.js │ ├── CreateEmbed.js │ ├── CreatePrompt.js │ ├── Logger.js │ ├── Pagination.js │ └── SlashCommands.js ├── config.js ├── index.js └── main.js └── start.sh /.env.scheme: -------------------------------------------------------------------------------- 1 | DISCORD_TOKEN= 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | logs 4 | src/config -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- 1 | run = "npm start" -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/renovate.json -------------------------------------------------------------------------------- /src/Commands/Music/BoundCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Commands/Music/BoundCommand.js -------------------------------------------------------------------------------- /src/Commands/Music/LoopCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Commands/Music/LoopCommand.js -------------------------------------------------------------------------------- /src/Commands/Music/NowplayCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Commands/Music/NowplayCommand.js -------------------------------------------------------------------------------- /src/Commands/Music/PauseCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Commands/Music/PauseCommand.js -------------------------------------------------------------------------------- /src/Commands/Music/PlayCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Commands/Music/PlayCommand.js -------------------------------------------------------------------------------- /src/Commands/Music/QueueCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Commands/Music/QueueCommand.js -------------------------------------------------------------------------------- /src/Commands/Music/ResumeCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Commands/Music/ResumeCommand.js -------------------------------------------------------------------------------- /src/Commands/Music/SkipCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Commands/Music/SkipCommand.js -------------------------------------------------------------------------------- /src/Commands/Music/StopCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Commands/Music/StopCommand.js -------------------------------------------------------------------------------- /src/Commands/Music/VolumeCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Commands/Music/VolumeCommand.js -------------------------------------------------------------------------------- /src/Commands/Util/HelpCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Commands/Util/HelpCommand.js -------------------------------------------------------------------------------- /src/Commands/Util/PingCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Commands/Util/PingCommand.js -------------------------------------------------------------------------------- /src/Commands/Util/StatsCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Commands/Util/StatsCommand.js -------------------------------------------------------------------------------- /src/Extenders/Node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Extenders/Node.js -------------------------------------------------------------------------------- /src/Listeners/Ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Listeners/Ready.js -------------------------------------------------------------------------------- /src/Listeners/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Listeners/interactionCreate.js -------------------------------------------------------------------------------- /src/Listeners/nodeConnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Listeners/nodeConnect.js -------------------------------------------------------------------------------- /src/Listeners/nodeDestroy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Listeners/nodeDestroy.js -------------------------------------------------------------------------------- /src/Listeners/nodeDisconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Listeners/nodeDisconnect.js -------------------------------------------------------------------------------- /src/Listeners/nodeError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Listeners/nodeError.js -------------------------------------------------------------------------------- /src/Listeners/playerMove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Listeners/playerMove.js -------------------------------------------------------------------------------- /src/Listeners/queueEnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Listeners/queueEnd.js -------------------------------------------------------------------------------- /src/Listeners/raw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Listeners/raw.js -------------------------------------------------------------------------------- /src/Listeners/socketClosed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Listeners/socketClosed.js -------------------------------------------------------------------------------- /src/Listeners/trackStart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Listeners/trackStart.js -------------------------------------------------------------------------------- /src/Plugin/Deezer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Plugin/Deezer/index.js -------------------------------------------------------------------------------- /src/Plugin/Deezer/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Plugin/Deezer/plugin.js -------------------------------------------------------------------------------- /src/Struct/NoteClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Struct/NoteClient.js -------------------------------------------------------------------------------- /src/Utility/Chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Utility/Chunk.js -------------------------------------------------------------------------------- /src/Utility/CreateEmbed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Utility/CreateEmbed.js -------------------------------------------------------------------------------- /src/Utility/CreatePrompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Utility/CreatePrompt.js -------------------------------------------------------------------------------- /src/Utility/Logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Utility/Logger.js -------------------------------------------------------------------------------- /src/Utility/Pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Utility/Pagination.js -------------------------------------------------------------------------------- /src/Utility/SlashCommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/Utility/SlashCommands.js -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/index.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/src/main.js -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KagChi/noteblock/HEAD/start.sh --------------------------------------------------------------------------------