├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── commands ├── Automation │ ├── Awaited │ │ ├── autolist-types.js │ │ ├── game-timeouts.js │ │ ├── leavemessages.js │ │ ├── levelingresets.js │ │ ├── messageditlog-modes.js │ │ ├── pre-release-modedecider.js │ │ └── welcomermessages.js │ ├── Events │ │ ├── Bot Invitation Message.js │ │ ├── error-logs.js │ │ ├── integration-logs.js │ │ ├── member-logs.js │ │ ├── message-logs.js │ │ └── moderation-logs.js │ ├── Interactions │ │ ├── Buttons & SelectMenus │ │ │ ├── dev-panel-menu.js │ │ │ ├── games-settings.js │ │ │ ├── helpmenu.js │ │ │ ├── leave-interactions.js │ │ │ ├── leveling-interactions.js │ │ │ ├── settingsmenu-interactions.js │ │ │ ├── setuplogs-interactions.js │ │ │ └── welcomer-interactions.js │ │ └── Buttons │ │ │ ├── coinflip-interactions.js │ │ │ ├── credits-interactions.js │ │ │ ├── findtheflag-interactions.js │ │ │ ├── rps-oneplayer-interactions.js │ │ │ ├── shutdown-prompts.js │ │ │ ├── userinfo-interactions.js │ │ │ ├── version-interactions.js │ │ │ ├── viewbuttons.js │ │ │ └── wyr-interactions.js │ └── Others │ │ ├── Bot specific │ │ ├── auto respond.js │ │ └── startup-messages.js │ │ └── Systems │ │ ├── levelup.js │ │ ├── resetonleavetrigger.js │ │ └── userappsupport.js ├── Developer │ ├── dev-panel.js │ ├── eval.js │ ├── exec.js │ ├── jseval.js │ ├── readfile.js │ ├── refreshuserapps.js │ ├── serverlist.js │ ├── setcustomstatus.js │ ├── shutdown.js │ └── update.js ├── Entertainment │ ├── games │ │ ├── 2048.js │ │ ├── c4.js │ │ ├── coinflip.js │ │ ├── findemoji.js │ │ ├── flood.js │ │ ├── ftf.js │ │ ├── gtp.js │ │ ├── hangman.js │ │ ├── matchpairs.js │ │ ├── minesweeper.js │ │ ├── rps.js │ │ ├── snake.js │ │ ├── trivia.js │ │ ├── ttt.js │ │ ├── wordle.js │ │ └── wyr.js │ ├── images │ │ ├── ad.js │ │ ├── clown.js │ │ ├── comment.js │ │ ├── drip.js │ │ ├── gun.js │ │ ├── invert.js │ │ ├── jail.js │ │ ├── nokia.js │ │ ├── pet.js │ │ ├── wanted.js │ │ └── whereiseveryone.js │ └── text │ │ ├── 8ball.js │ │ ├── clap.js │ │ ├── fact.js │ │ ├── howgamer.js │ │ ├── joke.js │ │ ├── lulcat.js │ │ ├── mock.js │ │ ├── owoify.js │ │ ├── randomtopic.js │ │ ├── reverse.js │ │ ├── say.js │ │ ├── whoasked.js │ │ └── yesorno.js ├── Info │ ├── serverinfo.js │ └── userinfo.js ├── Leveling │ ├── lb.js │ ├── leveling-system.js │ └── rank.js ├── Main │ ├── about.js │ ├── canary.js │ ├── commandinfo.js │ ├── credits.js │ ├── help.js │ ├── invite.js │ ├── perms.js │ ├── ping.js │ ├── report.js │ ├── settings.js │ ├── stats.js │ └── version.js ├── Misc │ ├── avatar.js │ ├── banner.js │ ├── morse.js │ ├── periodic-table.js │ └── randomcolor.js ├── Slash │ ├── 8ball.js │ ├── about.js │ ├── avatar.js │ ├── banner.js │ ├── invite.js │ ├── owoify.js │ ├── ping.js │ ├── randomcolor.js │ ├── report.js │ └── reverse.js └── Util │ ├── leave.js │ ├── poll-commands.js │ ├── prefix-commands.js │ ├── setup-logs.js │ ├── suggestion-commands.js │ └── welcomer.js ├── config.js ├── handlers ├── functions.js └── variables.js ├── index.js └── package.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/README.md -------------------------------------------------------------------------------- /commands/Automation/Awaited/autolist-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Awaited/autolist-types.js -------------------------------------------------------------------------------- /commands/Automation/Awaited/game-timeouts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Awaited/game-timeouts.js -------------------------------------------------------------------------------- /commands/Automation/Awaited/leavemessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Awaited/leavemessages.js -------------------------------------------------------------------------------- /commands/Automation/Awaited/levelingresets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Awaited/levelingresets.js -------------------------------------------------------------------------------- /commands/Automation/Awaited/messageditlog-modes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Awaited/messageditlog-modes.js -------------------------------------------------------------------------------- /commands/Automation/Awaited/pre-release-modedecider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Awaited/pre-release-modedecider.js -------------------------------------------------------------------------------- /commands/Automation/Awaited/welcomermessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Awaited/welcomermessages.js -------------------------------------------------------------------------------- /commands/Automation/Events/Bot Invitation Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Events/Bot Invitation Message.js -------------------------------------------------------------------------------- /commands/Automation/Events/error-logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Events/error-logs.js -------------------------------------------------------------------------------- /commands/Automation/Events/integration-logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Events/integration-logs.js -------------------------------------------------------------------------------- /commands/Automation/Events/member-logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Events/member-logs.js -------------------------------------------------------------------------------- /commands/Automation/Events/message-logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Events/message-logs.js -------------------------------------------------------------------------------- /commands/Automation/Events/moderation-logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Events/moderation-logs.js -------------------------------------------------------------------------------- /commands/Automation/Interactions/Buttons & SelectMenus/dev-panel-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Interactions/Buttons & SelectMenus/dev-panel-menu.js -------------------------------------------------------------------------------- /commands/Automation/Interactions/Buttons & SelectMenus/games-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Interactions/Buttons & SelectMenus/games-settings.js -------------------------------------------------------------------------------- /commands/Automation/Interactions/Buttons & SelectMenus/helpmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Interactions/Buttons & SelectMenus/helpmenu.js -------------------------------------------------------------------------------- /commands/Automation/Interactions/Buttons & SelectMenus/leave-interactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Interactions/Buttons & SelectMenus/leave-interactions.js -------------------------------------------------------------------------------- /commands/Automation/Interactions/Buttons & SelectMenus/leveling-interactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Interactions/Buttons & SelectMenus/leveling-interactions.js -------------------------------------------------------------------------------- /commands/Automation/Interactions/Buttons & SelectMenus/settingsmenu-interactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Interactions/Buttons & SelectMenus/settingsmenu-interactions.js -------------------------------------------------------------------------------- /commands/Automation/Interactions/Buttons & SelectMenus/setuplogs-interactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Interactions/Buttons & SelectMenus/setuplogs-interactions.js -------------------------------------------------------------------------------- /commands/Automation/Interactions/Buttons & SelectMenus/welcomer-interactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Interactions/Buttons & SelectMenus/welcomer-interactions.js -------------------------------------------------------------------------------- /commands/Automation/Interactions/Buttons/coinflip-interactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Interactions/Buttons/coinflip-interactions.js -------------------------------------------------------------------------------- /commands/Automation/Interactions/Buttons/credits-interactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Interactions/Buttons/credits-interactions.js -------------------------------------------------------------------------------- /commands/Automation/Interactions/Buttons/findtheflag-interactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Interactions/Buttons/findtheflag-interactions.js -------------------------------------------------------------------------------- /commands/Automation/Interactions/Buttons/rps-oneplayer-interactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Interactions/Buttons/rps-oneplayer-interactions.js -------------------------------------------------------------------------------- /commands/Automation/Interactions/Buttons/shutdown-prompts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Interactions/Buttons/shutdown-prompts.js -------------------------------------------------------------------------------- /commands/Automation/Interactions/Buttons/userinfo-interactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Interactions/Buttons/userinfo-interactions.js -------------------------------------------------------------------------------- /commands/Automation/Interactions/Buttons/version-interactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Interactions/Buttons/version-interactions.js -------------------------------------------------------------------------------- /commands/Automation/Interactions/Buttons/viewbuttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Interactions/Buttons/viewbuttons.js -------------------------------------------------------------------------------- /commands/Automation/Interactions/Buttons/wyr-interactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Interactions/Buttons/wyr-interactions.js -------------------------------------------------------------------------------- /commands/Automation/Others/Bot specific/auto respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Others/Bot specific/auto respond.js -------------------------------------------------------------------------------- /commands/Automation/Others/Bot specific/startup-messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Others/Bot specific/startup-messages.js -------------------------------------------------------------------------------- /commands/Automation/Others/Systems/levelup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Others/Systems/levelup.js -------------------------------------------------------------------------------- /commands/Automation/Others/Systems/resetonleavetrigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Others/Systems/resetonleavetrigger.js -------------------------------------------------------------------------------- /commands/Automation/Others/Systems/userappsupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Automation/Others/Systems/userappsupport.js -------------------------------------------------------------------------------- /commands/Developer/dev-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Developer/dev-panel.js -------------------------------------------------------------------------------- /commands/Developer/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Developer/eval.js -------------------------------------------------------------------------------- /commands/Developer/exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Developer/exec.js -------------------------------------------------------------------------------- /commands/Developer/jseval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Developer/jseval.js -------------------------------------------------------------------------------- /commands/Developer/readfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Developer/readfile.js -------------------------------------------------------------------------------- /commands/Developer/refreshuserapps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Developer/refreshuserapps.js -------------------------------------------------------------------------------- /commands/Developer/serverlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Developer/serverlist.js -------------------------------------------------------------------------------- /commands/Developer/setcustomstatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Developer/setcustomstatus.js -------------------------------------------------------------------------------- /commands/Developer/shutdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Developer/shutdown.js -------------------------------------------------------------------------------- /commands/Developer/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Developer/update.js -------------------------------------------------------------------------------- /commands/Entertainment/games/2048.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/games/2048.js -------------------------------------------------------------------------------- /commands/Entertainment/games/c4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/games/c4.js -------------------------------------------------------------------------------- /commands/Entertainment/games/coinflip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/games/coinflip.js -------------------------------------------------------------------------------- /commands/Entertainment/games/findemoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/games/findemoji.js -------------------------------------------------------------------------------- /commands/Entertainment/games/flood.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/games/flood.js -------------------------------------------------------------------------------- /commands/Entertainment/games/ftf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/games/ftf.js -------------------------------------------------------------------------------- /commands/Entertainment/games/gtp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/games/gtp.js -------------------------------------------------------------------------------- /commands/Entertainment/games/hangman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/games/hangman.js -------------------------------------------------------------------------------- /commands/Entertainment/games/matchpairs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/games/matchpairs.js -------------------------------------------------------------------------------- /commands/Entertainment/games/minesweeper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/games/minesweeper.js -------------------------------------------------------------------------------- /commands/Entertainment/games/rps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/games/rps.js -------------------------------------------------------------------------------- /commands/Entertainment/games/snake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/games/snake.js -------------------------------------------------------------------------------- /commands/Entertainment/games/trivia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/games/trivia.js -------------------------------------------------------------------------------- /commands/Entertainment/games/ttt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/games/ttt.js -------------------------------------------------------------------------------- /commands/Entertainment/games/wordle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/games/wordle.js -------------------------------------------------------------------------------- /commands/Entertainment/games/wyr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/games/wyr.js -------------------------------------------------------------------------------- /commands/Entertainment/images/ad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/images/ad.js -------------------------------------------------------------------------------- /commands/Entertainment/images/clown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/images/clown.js -------------------------------------------------------------------------------- /commands/Entertainment/images/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/images/comment.js -------------------------------------------------------------------------------- /commands/Entertainment/images/drip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/images/drip.js -------------------------------------------------------------------------------- /commands/Entertainment/images/gun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/images/gun.js -------------------------------------------------------------------------------- /commands/Entertainment/images/invert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/images/invert.js -------------------------------------------------------------------------------- /commands/Entertainment/images/jail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/images/jail.js -------------------------------------------------------------------------------- /commands/Entertainment/images/nokia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/images/nokia.js -------------------------------------------------------------------------------- /commands/Entertainment/images/pet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/images/pet.js -------------------------------------------------------------------------------- /commands/Entertainment/images/wanted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/images/wanted.js -------------------------------------------------------------------------------- /commands/Entertainment/images/whereiseveryone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/images/whereiseveryone.js -------------------------------------------------------------------------------- /commands/Entertainment/text/8ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/text/8ball.js -------------------------------------------------------------------------------- /commands/Entertainment/text/clap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/text/clap.js -------------------------------------------------------------------------------- /commands/Entertainment/text/fact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/text/fact.js -------------------------------------------------------------------------------- /commands/Entertainment/text/howgamer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/text/howgamer.js -------------------------------------------------------------------------------- /commands/Entertainment/text/joke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/text/joke.js -------------------------------------------------------------------------------- /commands/Entertainment/text/lulcat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/text/lulcat.js -------------------------------------------------------------------------------- /commands/Entertainment/text/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/text/mock.js -------------------------------------------------------------------------------- /commands/Entertainment/text/owoify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/text/owoify.js -------------------------------------------------------------------------------- /commands/Entertainment/text/randomtopic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/text/randomtopic.js -------------------------------------------------------------------------------- /commands/Entertainment/text/reverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/text/reverse.js -------------------------------------------------------------------------------- /commands/Entertainment/text/say.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/text/say.js -------------------------------------------------------------------------------- /commands/Entertainment/text/whoasked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/text/whoasked.js -------------------------------------------------------------------------------- /commands/Entertainment/text/yesorno.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Entertainment/text/yesorno.js -------------------------------------------------------------------------------- /commands/Info/serverinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Info/serverinfo.js -------------------------------------------------------------------------------- /commands/Info/userinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Info/userinfo.js -------------------------------------------------------------------------------- /commands/Leveling/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Leveling/lb.js -------------------------------------------------------------------------------- /commands/Leveling/leveling-system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Leveling/leveling-system.js -------------------------------------------------------------------------------- /commands/Leveling/rank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Leveling/rank.js -------------------------------------------------------------------------------- /commands/Main/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Main/about.js -------------------------------------------------------------------------------- /commands/Main/canary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Main/canary.js -------------------------------------------------------------------------------- /commands/Main/commandinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Main/commandinfo.js -------------------------------------------------------------------------------- /commands/Main/credits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Main/credits.js -------------------------------------------------------------------------------- /commands/Main/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Main/help.js -------------------------------------------------------------------------------- /commands/Main/invite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Main/invite.js -------------------------------------------------------------------------------- /commands/Main/perms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Main/perms.js -------------------------------------------------------------------------------- /commands/Main/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Main/ping.js -------------------------------------------------------------------------------- /commands/Main/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Main/report.js -------------------------------------------------------------------------------- /commands/Main/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Main/settings.js -------------------------------------------------------------------------------- /commands/Main/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Main/stats.js -------------------------------------------------------------------------------- /commands/Main/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Main/version.js -------------------------------------------------------------------------------- /commands/Misc/avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Misc/avatar.js -------------------------------------------------------------------------------- /commands/Misc/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Misc/banner.js -------------------------------------------------------------------------------- /commands/Misc/morse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Misc/morse.js -------------------------------------------------------------------------------- /commands/Misc/periodic-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Misc/periodic-table.js -------------------------------------------------------------------------------- /commands/Misc/randomcolor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Misc/randomcolor.js -------------------------------------------------------------------------------- /commands/Slash/8ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Slash/8ball.js -------------------------------------------------------------------------------- /commands/Slash/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Slash/about.js -------------------------------------------------------------------------------- /commands/Slash/avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Slash/avatar.js -------------------------------------------------------------------------------- /commands/Slash/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Slash/banner.js -------------------------------------------------------------------------------- /commands/Slash/invite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Slash/invite.js -------------------------------------------------------------------------------- /commands/Slash/owoify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Slash/owoify.js -------------------------------------------------------------------------------- /commands/Slash/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Slash/ping.js -------------------------------------------------------------------------------- /commands/Slash/randomcolor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Slash/randomcolor.js -------------------------------------------------------------------------------- /commands/Slash/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Slash/report.js -------------------------------------------------------------------------------- /commands/Slash/reverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Slash/reverse.js -------------------------------------------------------------------------------- /commands/Util/leave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Util/leave.js -------------------------------------------------------------------------------- /commands/Util/poll-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Util/poll-commands.js -------------------------------------------------------------------------------- /commands/Util/prefix-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Util/prefix-commands.js -------------------------------------------------------------------------------- /commands/Util/setup-logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Util/setup-logs.js -------------------------------------------------------------------------------- /commands/Util/suggestion-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Util/suggestion-commands.js -------------------------------------------------------------------------------- /commands/Util/welcomer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/commands/Util/welcomer.js -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/config.js -------------------------------------------------------------------------------- /handlers/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/handlers/functions.js -------------------------------------------------------------------------------- /handlers/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/handlers/variables.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddodogames/Dodo-Bot/HEAD/package.json --------------------------------------------------------------------------------