├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── azure-pipelines.yml ├── config ├── commands.json ├── customSearch.json ├── googleConfig.json ├── googleResults.json └── lolConfig.json ├── libs ├── google.js └── lolcpid.js ├── package.json ├── src ├── commands │ ├── admin │ │ ├── addrole.js │ │ ├── ban.js │ │ ├── deletemsg.js │ │ ├── kick.js │ │ ├── mute.js │ │ ├── removerole.js │ │ ├── setbotname.js │ │ └── setbotstatus.js │ ├── games │ │ ├── csgo.js │ │ ├── csgofloat.js │ │ ├── lolcprot.js │ │ └── loltopfive.js │ ├── info │ │ ├── help.js │ │ ├── info.js │ │ ├── serverinfo.js │ │ ├── serverinvite.js │ │ ├── uptime.js │ │ └── userinfo.js │ ├── music │ │ ├── deletetrack.js │ │ ├── joinchannel.js │ │ ├── nowplaying.js │ │ ├── pause.js │ │ ├── playother.js │ │ ├── playtube.js │ │ ├── queue.js │ │ ├── resume.js │ │ ├── skip.js │ │ ├── stop.js │ │ ├── volume.js │ │ └── ytsearch.js │ └── randomstuff │ │ ├── distance.js │ │ ├── dogs.js │ │ ├── flipcoin.js │ │ ├── google.js │ │ ├── ping.js │ │ ├── randomcolor.js │ │ ├── rolldice.js │ │ ├── setafk.js │ │ └── someone.js ├── events │ ├── error.js │ ├── guildCreate.js │ ├── guildDelete.js │ ├── guildMemberAdd.js │ ├── message.js │ └── ready.js ├── images │ ├── sonic.png │ └── sonicNewColor.png └── index.js └── test ├── commands └── randomstuff │ ├── ping.test.js │ ├── rolldice.test.js │ └── setafk.test.js └── init.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /config/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/config/commands.json -------------------------------------------------------------------------------- /config/customSearch.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /config/googleConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/config/googleConfig.json -------------------------------------------------------------------------------- /config/googleResults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/config/googleResults.json -------------------------------------------------------------------------------- /config/lolConfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiKey": "You wanted" 3 | } -------------------------------------------------------------------------------- /libs/google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/libs/google.js -------------------------------------------------------------------------------- /libs/lolcpid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/libs/lolcpid.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/admin/addrole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/admin/addrole.js -------------------------------------------------------------------------------- /src/commands/admin/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/admin/ban.js -------------------------------------------------------------------------------- /src/commands/admin/deletemsg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/admin/deletemsg.js -------------------------------------------------------------------------------- /src/commands/admin/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/admin/kick.js -------------------------------------------------------------------------------- /src/commands/admin/mute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/admin/mute.js -------------------------------------------------------------------------------- /src/commands/admin/removerole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/admin/removerole.js -------------------------------------------------------------------------------- /src/commands/admin/setbotname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/admin/setbotname.js -------------------------------------------------------------------------------- /src/commands/admin/setbotstatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/admin/setbotstatus.js -------------------------------------------------------------------------------- /src/commands/games/csgo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/games/csgo.js -------------------------------------------------------------------------------- /src/commands/games/csgofloat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/games/csgofloat.js -------------------------------------------------------------------------------- /src/commands/games/lolcprot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/games/lolcprot.js -------------------------------------------------------------------------------- /src/commands/games/loltopfive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/games/loltopfive.js -------------------------------------------------------------------------------- /src/commands/info/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/info/help.js -------------------------------------------------------------------------------- /src/commands/info/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/info/info.js -------------------------------------------------------------------------------- /src/commands/info/serverinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/info/serverinfo.js -------------------------------------------------------------------------------- /src/commands/info/serverinvite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/info/serverinvite.js -------------------------------------------------------------------------------- /src/commands/info/uptime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/info/uptime.js -------------------------------------------------------------------------------- /src/commands/info/userinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/info/userinfo.js -------------------------------------------------------------------------------- /src/commands/music/deletetrack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/music/deletetrack.js -------------------------------------------------------------------------------- /src/commands/music/joinchannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/music/joinchannel.js -------------------------------------------------------------------------------- /src/commands/music/nowplaying.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/music/nowplaying.js -------------------------------------------------------------------------------- /src/commands/music/pause.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/music/pause.js -------------------------------------------------------------------------------- /src/commands/music/playother.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/music/playother.js -------------------------------------------------------------------------------- /src/commands/music/playtube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/music/playtube.js -------------------------------------------------------------------------------- /src/commands/music/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/music/queue.js -------------------------------------------------------------------------------- /src/commands/music/resume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/music/resume.js -------------------------------------------------------------------------------- /src/commands/music/skip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/music/skip.js -------------------------------------------------------------------------------- /src/commands/music/stop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/music/stop.js -------------------------------------------------------------------------------- /src/commands/music/volume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/music/volume.js -------------------------------------------------------------------------------- /src/commands/music/ytsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/music/ytsearch.js -------------------------------------------------------------------------------- /src/commands/randomstuff/distance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/randomstuff/distance.js -------------------------------------------------------------------------------- /src/commands/randomstuff/dogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/randomstuff/dogs.js -------------------------------------------------------------------------------- /src/commands/randomstuff/flipcoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/randomstuff/flipcoin.js -------------------------------------------------------------------------------- /src/commands/randomstuff/google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/randomstuff/google.js -------------------------------------------------------------------------------- /src/commands/randomstuff/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/randomstuff/ping.js -------------------------------------------------------------------------------- /src/commands/randomstuff/randomcolor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/randomstuff/randomcolor.js -------------------------------------------------------------------------------- /src/commands/randomstuff/rolldice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/randomstuff/rolldice.js -------------------------------------------------------------------------------- /src/commands/randomstuff/setafk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/randomstuff/setafk.js -------------------------------------------------------------------------------- /src/commands/randomstuff/someone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/commands/randomstuff/someone.js -------------------------------------------------------------------------------- /src/events/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/events/error.js -------------------------------------------------------------------------------- /src/events/guildCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/events/guildCreate.js -------------------------------------------------------------------------------- /src/events/guildDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/events/guildDelete.js -------------------------------------------------------------------------------- /src/events/guildMemberAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/events/guildMemberAdd.js -------------------------------------------------------------------------------- /src/events/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/events/message.js -------------------------------------------------------------------------------- /src/events/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/events/ready.js -------------------------------------------------------------------------------- /src/images/sonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/images/sonic.png -------------------------------------------------------------------------------- /src/images/sonicNewColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/images/sonicNewColor.png -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/src/index.js -------------------------------------------------------------------------------- /test/commands/randomstuff/ping.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/test/commands/randomstuff/ping.test.js -------------------------------------------------------------------------------- /test/commands/randomstuff/rolldice.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/test/commands/randomstuff/rolldice.test.js -------------------------------------------------------------------------------- /test/commands/randomstuff/setafk.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/test/commands/randomstuff/setafk.test.js -------------------------------------------------------------------------------- /test/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareWerewolf/RaptorSA/HEAD/test/init.js --------------------------------------------------------------------------------