├── .gitattributes ├── .gitignore ├── README.md └── src ├── .env-template ├── Commands ├── Interaction │ ├── Admins │ │ ├── say.js │ │ └── systemstoggle.js │ ├── Context │ │ ├── Avatar.js │ │ ├── ImageSauce.js │ │ ├── Info.js │ │ └── Translate.js │ ├── Economy │ │ ├── balance.js │ │ ├── beg.js │ │ ├── buy.js │ │ ├── daily.js │ │ ├── deposit.js │ │ ├── heist.js │ │ ├── inventory.js │ │ ├── pay.js │ │ ├── rob.js │ │ ├── sell.js │ │ ├── shop.js │ │ ├── trivia.js │ │ ├── withdraw.js │ │ └── work.js │ ├── Fricking │ │ ├── frick.js │ │ └── rape.js │ ├── Fun │ │ ├── 8ball.js │ │ ├── animegirl.js │ │ ├── birthday.js │ │ ├── catsay.js │ │ ├── derpi.js │ │ ├── flag.js │ │ ├── hack.js │ │ ├── hangman.js │ │ ├── image.js │ │ ├── imagetotext.js │ │ ├── kill.js │ │ ├── meme.js │ │ ├── pokemon.js │ │ ├── pp.js │ │ ├── rps.js │ │ ├── spam.js │ │ ├── stopspam.js │ │ ├── text.js │ │ └── urban.js │ ├── Government │ │ ├── clear.js │ │ ├── crazysuppress.js │ │ ├── embed.js │ │ ├── hangmancustom.js │ │ ├── infraction.js │ │ ├── voting.js │ │ └── warn.js │ ├── Info │ │ ├── dialect.js │ │ ├── docs.js │ │ ├── help.js │ │ ├── infractions.js │ │ ├── leaderboard.js │ │ ├── ping.js │ │ ├── rank.js │ │ ├── roleinfo.js │ │ ├── server.js │ │ ├── systems.js │ │ └── weather.js │ ├── Music │ │ ├── autoplay.js │ │ ├── filter.js │ │ ├── loop.js │ │ ├── pause.js │ │ ├── play.js │ │ ├── previous.js │ │ ├── queue.js │ │ ├── remove.js │ │ ├── resume.js │ │ ├── seek.js │ │ ├── shuffle.js │ │ ├── skip.js │ │ ├── skipto.js │ │ └── stop.js │ ├── Utilities │ │ ├── choose.js │ │ ├── color.js │ │ ├── diceroll.js │ │ ├── dm.js │ │ ├── number.js │ │ ├── role.js │ │ └── timer.js │ ├── Waifus │ │ ├── balls.js │ │ ├── breakup.js │ │ ├── pony.js │ │ ├── waifu.js │ │ └── yuri.js │ └── mezmer420 │ │ ├── dialectupdate.js │ │ ├── reload.js │ │ ├── set.js │ │ ├── setpresence.js │ │ └── test.js └── Text │ ├── For_everyone │ ├── bigcock.js │ ├── chalk.js │ ├── cockroach.js │ ├── emojify.js │ └── good.js │ ├── For_mez │ ├── bad.js │ ├── clearcmd.js │ ├── crashboomer.js │ ├── embed.js │ ├── embed2.js │ ├── move.js │ └── ticket.js │ └── For_vmezchoc │ └── s.js ├── Event_handlers ├── handleClientEvents.js └── handleDistubeEvents.js ├── Events ├── Client │ ├── channelCreate.js │ ├── channelDelete.js │ ├── channelUpdate.js │ ├── emojiCreate.js │ ├── emojiDelete.js │ ├── guildBanAdd.js │ ├── guildBanRemove.js │ ├── guildMemberAdd.js │ ├── guildMemberRemove.js │ ├── guildMemberUpdate.js │ ├── guildScheduledEventCreate.js │ ├── guildScheduledEventDelete.js │ ├── interactionCreate.js │ ├── messageCreate.js │ ├── messageReactionAdd.js │ ├── messageReactionRemove.js │ ├── ready.js │ ├── roleCreate.js │ ├── roleDelete.js │ ├── roleUpdate.js │ ├── stickerCreate.js │ ├── stickerDelete.js │ ├── userUpdate.js │ └── voiceStateUpdate.js └── Distube │ ├── addList.js │ ├── addSong.js │ ├── error.js │ ├── finish.js │ ├── noRelated.js │ ├── playSong.js │ └── searchNoResult.js ├── Utilities ├── anti-crash.js ├── birthdays.js ├── channel-messages-delete.js ├── chat-bot.js ├── counting.js ├── court-recorder.js ├── crazy-suppress.js ├── dead-chat.js ├── dialect-response.js ├── dm.js ├── message-filter.js └── xp.js ├── blacklisted-channels-and-categories.js ├── client.distube.js ├── commands-register.js ├── database.js ├── index.js ├── package-lock.json ├── package.json └── text-command-handler.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/README.md -------------------------------------------------------------------------------- /src/.env-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/.env-template -------------------------------------------------------------------------------- /src/Commands/Interaction/Admins/say.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Admins/say.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Admins/systemstoggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Admins/systemstoggle.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Context/Avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Context/Avatar.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Context/ImageSauce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Context/ImageSauce.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Context/Info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Context/Info.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Context/Translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Context/Translate.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Economy/balance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Economy/balance.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Economy/beg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Economy/beg.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Economy/buy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Economy/buy.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Economy/daily.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Economy/daily.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Economy/deposit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Economy/deposit.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Economy/heist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Economy/heist.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Economy/inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Economy/inventory.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Economy/pay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Economy/pay.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Economy/rob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Economy/rob.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Economy/sell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Economy/sell.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Economy/shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Economy/shop.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Economy/trivia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Economy/trivia.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Economy/withdraw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Economy/withdraw.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Economy/work.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Economy/work.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Fricking/frick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Fricking/frick.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Fricking/rape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Fricking/rape.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Fun/8ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Fun/8ball.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Fun/animegirl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Fun/animegirl.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Fun/birthday.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Fun/birthday.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Fun/catsay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Fun/catsay.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Fun/derpi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Fun/derpi.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Fun/flag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Fun/flag.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Fun/hack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Fun/hack.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Fun/hangman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Fun/hangman.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Fun/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Fun/image.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Fun/imagetotext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Fun/imagetotext.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Fun/kill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Fun/kill.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Fun/meme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Fun/meme.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Fun/pokemon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Fun/pokemon.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Fun/pp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Fun/pp.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Fun/rps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Fun/rps.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Fun/spam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Fun/spam.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Fun/stopspam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Fun/stopspam.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Fun/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Fun/text.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Fun/urban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Fun/urban.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Government/clear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Government/clear.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Government/crazysuppress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Government/crazysuppress.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Government/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Government/embed.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Government/hangmancustom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Government/hangmancustom.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Government/infraction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Government/infraction.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Government/voting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Government/voting.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Government/warn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Government/warn.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Info/dialect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Info/dialect.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Info/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Info/docs.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Info/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Info/help.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Info/infractions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Info/infractions.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Info/leaderboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Info/leaderboard.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Info/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Info/ping.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Info/rank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Info/rank.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Info/roleinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Info/roleinfo.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Info/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Info/server.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Info/systems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Info/systems.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Info/weather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Info/weather.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Music/autoplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Music/autoplay.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Music/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Music/filter.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Music/loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Music/loop.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Music/pause.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Music/pause.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Music/play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Music/play.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Music/previous.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Music/previous.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Music/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Music/queue.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Music/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Music/remove.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Music/resume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Music/resume.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Music/seek.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Music/seek.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Music/shuffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Music/shuffle.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Music/skip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Music/skip.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Music/skipto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Music/skipto.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Music/stop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Music/stop.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Utilities/choose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Utilities/choose.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Utilities/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Utilities/color.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Utilities/diceroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Utilities/diceroll.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Utilities/dm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Utilities/dm.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Utilities/number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Utilities/number.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Utilities/role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Utilities/role.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Utilities/timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Utilities/timer.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Waifus/balls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Waifus/balls.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Waifus/breakup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Waifus/breakup.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Waifus/pony.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Waifus/pony.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Waifus/waifu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Waifus/waifu.js -------------------------------------------------------------------------------- /src/Commands/Interaction/Waifus/yuri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/Waifus/yuri.js -------------------------------------------------------------------------------- /src/Commands/Interaction/mezmer420/dialectupdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/mezmer420/dialectupdate.js -------------------------------------------------------------------------------- /src/Commands/Interaction/mezmer420/reload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/mezmer420/reload.js -------------------------------------------------------------------------------- /src/Commands/Interaction/mezmer420/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/mezmer420/set.js -------------------------------------------------------------------------------- /src/Commands/Interaction/mezmer420/setpresence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/mezmer420/setpresence.js -------------------------------------------------------------------------------- /src/Commands/Interaction/mezmer420/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Interaction/mezmer420/test.js -------------------------------------------------------------------------------- /src/Commands/Text/For_everyone/bigcock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Text/For_everyone/bigcock.js -------------------------------------------------------------------------------- /src/Commands/Text/For_everyone/chalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Text/For_everyone/chalk.js -------------------------------------------------------------------------------- /src/Commands/Text/For_everyone/cockroach.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Text/For_everyone/cockroach.js -------------------------------------------------------------------------------- /src/Commands/Text/For_everyone/emojify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Text/For_everyone/emojify.js -------------------------------------------------------------------------------- /src/Commands/Text/For_everyone/good.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Text/For_everyone/good.js -------------------------------------------------------------------------------- /src/Commands/Text/For_mez/bad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Text/For_mez/bad.js -------------------------------------------------------------------------------- /src/Commands/Text/For_mez/clearcmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Text/For_mez/clearcmd.js -------------------------------------------------------------------------------- /src/Commands/Text/For_mez/crashboomer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Text/For_mez/crashboomer.js -------------------------------------------------------------------------------- /src/Commands/Text/For_mez/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Text/For_mez/embed.js -------------------------------------------------------------------------------- /src/Commands/Text/For_mez/embed2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Text/For_mez/embed2.js -------------------------------------------------------------------------------- /src/Commands/Text/For_mez/move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Text/For_mez/move.js -------------------------------------------------------------------------------- /src/Commands/Text/For_mez/ticket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Text/For_mez/ticket.js -------------------------------------------------------------------------------- /src/Commands/Text/For_vmezchoc/s.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Commands/Text/For_vmezchoc/s.js -------------------------------------------------------------------------------- /src/Event_handlers/handleClientEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Event_handlers/handleClientEvents.js -------------------------------------------------------------------------------- /src/Event_handlers/handleDistubeEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Event_handlers/handleDistubeEvents.js -------------------------------------------------------------------------------- /src/Events/Client/channelCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/channelCreate.js -------------------------------------------------------------------------------- /src/Events/Client/channelDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/channelDelete.js -------------------------------------------------------------------------------- /src/Events/Client/channelUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/channelUpdate.js -------------------------------------------------------------------------------- /src/Events/Client/emojiCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/emojiCreate.js -------------------------------------------------------------------------------- /src/Events/Client/emojiDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/emojiDelete.js -------------------------------------------------------------------------------- /src/Events/Client/guildBanAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/guildBanAdd.js -------------------------------------------------------------------------------- /src/Events/Client/guildBanRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/guildBanRemove.js -------------------------------------------------------------------------------- /src/Events/Client/guildMemberAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/guildMemberAdd.js -------------------------------------------------------------------------------- /src/Events/Client/guildMemberRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/guildMemberRemove.js -------------------------------------------------------------------------------- /src/Events/Client/guildMemberUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/guildMemberUpdate.js -------------------------------------------------------------------------------- /src/Events/Client/guildScheduledEventCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/guildScheduledEventCreate.js -------------------------------------------------------------------------------- /src/Events/Client/guildScheduledEventDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/guildScheduledEventDelete.js -------------------------------------------------------------------------------- /src/Events/Client/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/interactionCreate.js -------------------------------------------------------------------------------- /src/Events/Client/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/messageCreate.js -------------------------------------------------------------------------------- /src/Events/Client/messageReactionAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/messageReactionAdd.js -------------------------------------------------------------------------------- /src/Events/Client/messageReactionRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/messageReactionRemove.js -------------------------------------------------------------------------------- /src/Events/Client/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/ready.js -------------------------------------------------------------------------------- /src/Events/Client/roleCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/roleCreate.js -------------------------------------------------------------------------------- /src/Events/Client/roleDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/roleDelete.js -------------------------------------------------------------------------------- /src/Events/Client/roleUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/roleUpdate.js -------------------------------------------------------------------------------- /src/Events/Client/stickerCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/stickerCreate.js -------------------------------------------------------------------------------- /src/Events/Client/stickerDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/stickerDelete.js -------------------------------------------------------------------------------- /src/Events/Client/userUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/userUpdate.js -------------------------------------------------------------------------------- /src/Events/Client/voiceStateUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Client/voiceStateUpdate.js -------------------------------------------------------------------------------- /src/Events/Distube/addList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Distube/addList.js -------------------------------------------------------------------------------- /src/Events/Distube/addSong.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Distube/addSong.js -------------------------------------------------------------------------------- /src/Events/Distube/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Distube/error.js -------------------------------------------------------------------------------- /src/Events/Distube/finish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Distube/finish.js -------------------------------------------------------------------------------- /src/Events/Distube/noRelated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Distube/noRelated.js -------------------------------------------------------------------------------- /src/Events/Distube/playSong.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Distube/playSong.js -------------------------------------------------------------------------------- /src/Events/Distube/searchNoResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Events/Distube/searchNoResult.js -------------------------------------------------------------------------------- /src/Utilities/anti-crash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Utilities/anti-crash.js -------------------------------------------------------------------------------- /src/Utilities/birthdays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Utilities/birthdays.js -------------------------------------------------------------------------------- /src/Utilities/channel-messages-delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Utilities/channel-messages-delete.js -------------------------------------------------------------------------------- /src/Utilities/chat-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Utilities/chat-bot.js -------------------------------------------------------------------------------- /src/Utilities/counting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Utilities/counting.js -------------------------------------------------------------------------------- /src/Utilities/court-recorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Utilities/court-recorder.js -------------------------------------------------------------------------------- /src/Utilities/crazy-suppress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Utilities/crazy-suppress.js -------------------------------------------------------------------------------- /src/Utilities/dead-chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Utilities/dead-chat.js -------------------------------------------------------------------------------- /src/Utilities/dialect-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Utilities/dialect-response.js -------------------------------------------------------------------------------- /src/Utilities/dm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Utilities/dm.js -------------------------------------------------------------------------------- /src/Utilities/message-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Utilities/message-filter.js -------------------------------------------------------------------------------- /src/Utilities/xp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/Utilities/xp.js -------------------------------------------------------------------------------- /src/blacklisted-channels-and-categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/blacklisted-channels-and-categories.js -------------------------------------------------------------------------------- /src/client.distube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/client.distube.js -------------------------------------------------------------------------------- /src/commands-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/commands-register.js -------------------------------------------------------------------------------- /src/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/database.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/index.js -------------------------------------------------------------------------------- /src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/package-lock.json -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/package.json -------------------------------------------------------------------------------- /src/text-command-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezmer420/dashi/HEAD/src/text-command-handler.js --------------------------------------------------------------------------------