├── .github ├── FUNDING.yml └── workflows │ └── welcome-first-time-contributors.yml ├── .gitignore ├── .replit ├── Base ├── Functions.js └── Permissions.js ├── CODE_OF_CONDUCT.md ├── Commands ├── Anime │ ├── anime.js │ ├── baka.js │ ├── fact.js │ ├── hug.js │ ├── karma.js │ ├── kiss.js │ ├── neko.js │ ├── pat.js │ ├── poke.js │ ├── slap.js │ ├── smug.js │ ├── tickle.js │ ├── waifu.js │ ├── whatanime.js │ └── wink.js ├── Buttons │ ├── snake.js │ └── wyr.js ├── Chatbot │ ├── chatbot.js │ ├── disablechatbotchannel.js │ └── setchatbotchannel.js ├── Fun │ ├── binary.js │ ├── clyde.js │ ├── comment.js │ ├── country.js │ ├── eject.js │ ├── emojify.js │ ├── github.js │ ├── iq.js │ ├── npm.js │ ├── osu.js │ ├── ping.js │ ├── reddit.js │ ├── weather.js │ └── zalgo.js ├── Image │ ├── affect.js │ ├── beautiful.js │ ├── delete.js │ ├── fire.js │ ├── respect.js │ ├── rip.js │ ├── scary.js │ ├── trash.js │ └── triggered.js ├── Info │ ├── help.js │ ├── info.js │ ├── invite.js │ ├── repo.js │ └── uptime.js ├── Music │ ├── clear-queue.js │ ├── filter.js │ ├── filters.js │ ├── leave.js │ ├── loop.js │ ├── lyrics.js │ ├── np.js │ ├── pause.js │ ├── play.js │ ├── queue.js │ ├── resume.js │ ├── search.js │ ├── shuffle.js │ ├── skip.js │ └── volume.js ├── Nsfw │ ├── bondage.js │ ├── hentai.js │ └── thigh.js ├── Other │ ├── addemoji.js │ ├── avatar.js │ ├── emojilist.js │ ├── profile.js │ ├── snipe.js │ ├── urban.js │ └── wiki.js └── Owner │ ├── eval.js │ └── reload.js ├── Configs ├── config.js ├── emotes.js └── filters.js ├── Events ├── message.js ├── messageDelete.js └── ready.js ├── Installation.md ├── LICENSE ├── Loader.js ├── README.md ├── Structures ├── Client.js └── Database.js ├── Utils ├── Global.js └── Logger.js ├── index.js ├── node.sh ├── package.json └── player-events ├── botDisconnect.js ├── channelEmpty.js ├── error.js ├── noResults.js ├── playlistAdd.js ├── queueEnd.js ├── searchCancel.js ├── searchInvalidResponse.js ├── searchResults.js ├── trackAdd.js └── trackStart.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/welcome-first-time-contributors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/.github/workflows/welcome-first-time-contributors.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/.gitignore -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- 1 | run="bash node.sh" 2 | -------------------------------------------------------------------------------- /Base/Functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Base/Functions.js -------------------------------------------------------------------------------- /Base/Permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Base/Permissions.js -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Commands/Anime/anime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Anime/anime.js -------------------------------------------------------------------------------- /Commands/Anime/baka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Anime/baka.js -------------------------------------------------------------------------------- /Commands/Anime/fact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Anime/fact.js -------------------------------------------------------------------------------- /Commands/Anime/hug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Anime/hug.js -------------------------------------------------------------------------------- /Commands/Anime/karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Anime/karma.js -------------------------------------------------------------------------------- /Commands/Anime/kiss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Anime/kiss.js -------------------------------------------------------------------------------- /Commands/Anime/neko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Anime/neko.js -------------------------------------------------------------------------------- /Commands/Anime/pat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Anime/pat.js -------------------------------------------------------------------------------- /Commands/Anime/poke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Anime/poke.js -------------------------------------------------------------------------------- /Commands/Anime/slap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Anime/slap.js -------------------------------------------------------------------------------- /Commands/Anime/smug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Anime/smug.js -------------------------------------------------------------------------------- /Commands/Anime/tickle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Anime/tickle.js -------------------------------------------------------------------------------- /Commands/Anime/waifu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Anime/waifu.js -------------------------------------------------------------------------------- /Commands/Anime/whatanime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Anime/whatanime.js -------------------------------------------------------------------------------- /Commands/Anime/wink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Anime/wink.js -------------------------------------------------------------------------------- /Commands/Buttons/snake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Buttons/snake.js -------------------------------------------------------------------------------- /Commands/Buttons/wyr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Buttons/wyr.js -------------------------------------------------------------------------------- /Commands/Chatbot/chatbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Chatbot/chatbot.js -------------------------------------------------------------------------------- /Commands/Chatbot/disablechatbotchannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Chatbot/disablechatbotchannel.js -------------------------------------------------------------------------------- /Commands/Chatbot/setchatbotchannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Chatbot/setchatbotchannel.js -------------------------------------------------------------------------------- /Commands/Fun/binary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Fun/binary.js -------------------------------------------------------------------------------- /Commands/Fun/clyde.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Fun/clyde.js -------------------------------------------------------------------------------- /Commands/Fun/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Fun/comment.js -------------------------------------------------------------------------------- /Commands/Fun/country.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Fun/country.js -------------------------------------------------------------------------------- /Commands/Fun/eject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Fun/eject.js -------------------------------------------------------------------------------- /Commands/Fun/emojify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Fun/emojify.js -------------------------------------------------------------------------------- /Commands/Fun/github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Fun/github.js -------------------------------------------------------------------------------- /Commands/Fun/iq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Fun/iq.js -------------------------------------------------------------------------------- /Commands/Fun/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Fun/npm.js -------------------------------------------------------------------------------- /Commands/Fun/osu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Fun/osu.js -------------------------------------------------------------------------------- /Commands/Fun/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Fun/ping.js -------------------------------------------------------------------------------- /Commands/Fun/reddit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Fun/reddit.js -------------------------------------------------------------------------------- /Commands/Fun/weather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Fun/weather.js -------------------------------------------------------------------------------- /Commands/Fun/zalgo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Fun/zalgo.js -------------------------------------------------------------------------------- /Commands/Image/affect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Image/affect.js -------------------------------------------------------------------------------- /Commands/Image/beautiful.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Image/beautiful.js -------------------------------------------------------------------------------- /Commands/Image/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Image/delete.js -------------------------------------------------------------------------------- /Commands/Image/fire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Image/fire.js -------------------------------------------------------------------------------- /Commands/Image/respect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Image/respect.js -------------------------------------------------------------------------------- /Commands/Image/rip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Image/rip.js -------------------------------------------------------------------------------- /Commands/Image/scary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Image/scary.js -------------------------------------------------------------------------------- /Commands/Image/trash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Image/trash.js -------------------------------------------------------------------------------- /Commands/Image/triggered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Image/triggered.js -------------------------------------------------------------------------------- /Commands/Info/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Info/help.js -------------------------------------------------------------------------------- /Commands/Info/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Info/info.js -------------------------------------------------------------------------------- /Commands/Info/invite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Info/invite.js -------------------------------------------------------------------------------- /Commands/Info/repo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Info/repo.js -------------------------------------------------------------------------------- /Commands/Info/uptime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Info/uptime.js -------------------------------------------------------------------------------- /Commands/Music/clear-queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Music/clear-queue.js -------------------------------------------------------------------------------- /Commands/Music/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Music/filter.js -------------------------------------------------------------------------------- /Commands/Music/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Music/filters.js -------------------------------------------------------------------------------- /Commands/Music/leave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Music/leave.js -------------------------------------------------------------------------------- /Commands/Music/loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Music/loop.js -------------------------------------------------------------------------------- /Commands/Music/lyrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Music/lyrics.js -------------------------------------------------------------------------------- /Commands/Music/np.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Music/np.js -------------------------------------------------------------------------------- /Commands/Music/pause.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Music/pause.js -------------------------------------------------------------------------------- /Commands/Music/play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Music/play.js -------------------------------------------------------------------------------- /Commands/Music/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Music/queue.js -------------------------------------------------------------------------------- /Commands/Music/resume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Music/resume.js -------------------------------------------------------------------------------- /Commands/Music/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Music/search.js -------------------------------------------------------------------------------- /Commands/Music/shuffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Music/shuffle.js -------------------------------------------------------------------------------- /Commands/Music/skip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Music/skip.js -------------------------------------------------------------------------------- /Commands/Music/volume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Music/volume.js -------------------------------------------------------------------------------- /Commands/Nsfw/bondage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Nsfw/bondage.js -------------------------------------------------------------------------------- /Commands/Nsfw/hentai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Nsfw/hentai.js -------------------------------------------------------------------------------- /Commands/Nsfw/thigh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Nsfw/thigh.js -------------------------------------------------------------------------------- /Commands/Other/addemoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Other/addemoji.js -------------------------------------------------------------------------------- /Commands/Other/avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Other/avatar.js -------------------------------------------------------------------------------- /Commands/Other/emojilist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Other/emojilist.js -------------------------------------------------------------------------------- /Commands/Other/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Other/profile.js -------------------------------------------------------------------------------- /Commands/Other/snipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Other/snipe.js -------------------------------------------------------------------------------- /Commands/Other/urban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Other/urban.js -------------------------------------------------------------------------------- /Commands/Other/wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Other/wiki.js -------------------------------------------------------------------------------- /Commands/Owner/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Owner/eval.js -------------------------------------------------------------------------------- /Commands/Owner/reload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Commands/Owner/reload.js -------------------------------------------------------------------------------- /Configs/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Configs/config.js -------------------------------------------------------------------------------- /Configs/emotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Configs/emotes.js -------------------------------------------------------------------------------- /Configs/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Configs/filters.js -------------------------------------------------------------------------------- /Events/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Events/message.js -------------------------------------------------------------------------------- /Events/messageDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Events/messageDelete.js -------------------------------------------------------------------------------- /Events/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Events/ready.js -------------------------------------------------------------------------------- /Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Installation.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/LICENSE -------------------------------------------------------------------------------- /Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Loader.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/README.md -------------------------------------------------------------------------------- /Structures/Client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Structures/Client.js -------------------------------------------------------------------------------- /Structures/Database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Structures/Database.js -------------------------------------------------------------------------------- /Utils/Global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Utils/Global.js -------------------------------------------------------------------------------- /Utils/Logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/Utils/Logger.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/index.js -------------------------------------------------------------------------------- /node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/node.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/package.json -------------------------------------------------------------------------------- /player-events/botDisconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/player-events/botDisconnect.js -------------------------------------------------------------------------------- /player-events/channelEmpty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/player-events/channelEmpty.js -------------------------------------------------------------------------------- /player-events/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/player-events/error.js -------------------------------------------------------------------------------- /player-events/noResults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/player-events/noResults.js -------------------------------------------------------------------------------- /player-events/playlistAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/player-events/playlistAdd.js -------------------------------------------------------------------------------- /player-events/queueEnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/player-events/queueEnd.js -------------------------------------------------------------------------------- /player-events/searchCancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/player-events/searchCancel.js -------------------------------------------------------------------------------- /player-events/searchInvalidResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/player-events/searchInvalidResponse.js -------------------------------------------------------------------------------- /player-events/searchResults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/player-events/searchResults.js -------------------------------------------------------------------------------- /player-events/trackAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/player-events/trackAdd.js -------------------------------------------------------------------------------- /player-events/trackStart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdh11/KarmaBot/HEAD/player-events/trackStart.js --------------------------------------------------------------------------------