├── .replit ├── Commands ├── Config │ └── setprefix.js ├── Music │ ├── bassboost.js │ ├── clean.js │ ├── clearqueue.js │ ├── filters.js │ ├── join.js │ ├── leave.js │ ├── loop.js │ ├── lyrics.js │ ├── nightcore.js │ ├── nowplaying.js │ ├── pause.js │ ├── play.js │ ├── queue.js │ ├── resume.js │ ├── search.js │ ├── shuffle.js │ ├── skip.js │ └── volume.js └── Other │ ├── help.js │ ├── invite.js │ ├── ping.js │ └── uptime.js ├── LICENSE ├── Player.js ├── README.md ├── config.js ├── database.json ├── index.js └── package.json /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/.replit -------------------------------------------------------------------------------- /Commands/Config/setprefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Commands/Config/setprefix.js -------------------------------------------------------------------------------- /Commands/Music/bassboost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Commands/Music/bassboost.js -------------------------------------------------------------------------------- /Commands/Music/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Commands/Music/clean.js -------------------------------------------------------------------------------- /Commands/Music/clearqueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Commands/Music/clearqueue.js -------------------------------------------------------------------------------- /Commands/Music/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Commands/Music/filters.js -------------------------------------------------------------------------------- /Commands/Music/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Commands/Music/join.js -------------------------------------------------------------------------------- /Commands/Music/leave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Commands/Music/leave.js -------------------------------------------------------------------------------- /Commands/Music/loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Commands/Music/loop.js -------------------------------------------------------------------------------- /Commands/Music/lyrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Commands/Music/lyrics.js -------------------------------------------------------------------------------- /Commands/Music/nightcore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Commands/Music/nightcore.js -------------------------------------------------------------------------------- /Commands/Music/nowplaying.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Commands/Music/nowplaying.js -------------------------------------------------------------------------------- /Commands/Music/pause.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Commands/Music/pause.js -------------------------------------------------------------------------------- /Commands/Music/play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Commands/Music/play.js -------------------------------------------------------------------------------- /Commands/Music/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Commands/Music/queue.js -------------------------------------------------------------------------------- /Commands/Music/resume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Commands/Music/resume.js -------------------------------------------------------------------------------- /Commands/Music/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Commands/Music/search.js -------------------------------------------------------------------------------- /Commands/Music/shuffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Commands/Music/shuffle.js -------------------------------------------------------------------------------- /Commands/Music/skip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Commands/Music/skip.js -------------------------------------------------------------------------------- /Commands/Music/volume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Commands/Music/volume.js -------------------------------------------------------------------------------- /Commands/Other/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Commands/Other/help.js -------------------------------------------------------------------------------- /Commands/Other/invite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Commands/Other/invite.js -------------------------------------------------------------------------------- /Commands/Other/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Commands/Other/ping.js -------------------------------------------------------------------------------- /Commands/Other/uptime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Commands/Other/uptime.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/Player.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/README.md -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/config.js -------------------------------------------------------------------------------- /database.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendaryEmoji/Music-Bot/HEAD/package.json --------------------------------------------------------------------------------