├── .DS_Store ├── .env ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── assets └── guildsettings.sqlite ├── commands ├── ban.js ├── bugreport.js ├── changelog.js ├── devhelp.js ├── eval.js ├── giverole.js ├── help.js ├── hug.js ├── info.js ├── kick.js ├── kill.js ├── lockdown.js ├── logs.js ├── meme.js ├── mock.js ├── ping.js ├── purge.js ├── serverinfo.js ├── shutdown.js ├── tempmute.js ├── unban.js ├── userinfo.js ├── warn.js └── warnlvl.js ├── events ├── disconnect.js ├── error.js ├── message.js ├── ready.js └── reconnecting.js ├── hugged.json ├── index.js ├── killed.json ├── lounge.csv ├── loungeTH.csv ├── package.json ├── procfile ├── scores copy.sqlite ├── thLogs.sqlite ├── treeLogs.sqlite ├── util └── eventLoader.js ├── wallpaper.png └── warnings.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/.DS_Store -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | BOT_TOKEN=NTk1ODAwNjY4NzQ1NDk4NjU2.XRwR_A.P9fmhSUwyCgO57TrQuVdnPWVQdU -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | n.json 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/README.md -------------------------------------------------------------------------------- /assets/guildsettings.sqlite: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commands/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/ban.js -------------------------------------------------------------------------------- /commands/bugreport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/bugreport.js -------------------------------------------------------------------------------- /commands/changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/changelog.js -------------------------------------------------------------------------------- /commands/devhelp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/devhelp.js -------------------------------------------------------------------------------- /commands/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/eval.js -------------------------------------------------------------------------------- /commands/giverole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/giverole.js -------------------------------------------------------------------------------- /commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/help.js -------------------------------------------------------------------------------- /commands/hug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/hug.js -------------------------------------------------------------------------------- /commands/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/info.js -------------------------------------------------------------------------------- /commands/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/kick.js -------------------------------------------------------------------------------- /commands/kill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/kill.js -------------------------------------------------------------------------------- /commands/lockdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/lockdown.js -------------------------------------------------------------------------------- /commands/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/logs.js -------------------------------------------------------------------------------- /commands/meme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/meme.js -------------------------------------------------------------------------------- /commands/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/mock.js -------------------------------------------------------------------------------- /commands/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/ping.js -------------------------------------------------------------------------------- /commands/purge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/purge.js -------------------------------------------------------------------------------- /commands/serverinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/serverinfo.js -------------------------------------------------------------------------------- /commands/shutdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/shutdown.js -------------------------------------------------------------------------------- /commands/tempmute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/tempmute.js -------------------------------------------------------------------------------- /commands/unban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/unban.js -------------------------------------------------------------------------------- /commands/userinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/userinfo.js -------------------------------------------------------------------------------- /commands/warn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/warn.js -------------------------------------------------------------------------------- /commands/warnlvl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/commands/warnlvl.js -------------------------------------------------------------------------------- /events/disconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/events/disconnect.js -------------------------------------------------------------------------------- /events/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/events/error.js -------------------------------------------------------------------------------- /events/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/events/message.js -------------------------------------------------------------------------------- /events/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/events/ready.js -------------------------------------------------------------------------------- /events/reconnecting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/events/reconnecting.js -------------------------------------------------------------------------------- /hugged.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/hugged.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/index.js -------------------------------------------------------------------------------- /killed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/killed.json -------------------------------------------------------------------------------- /lounge.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/lounge.csv -------------------------------------------------------------------------------- /loungeTH.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/loungeTH.csv -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/package.json -------------------------------------------------------------------------------- /procfile: -------------------------------------------------------------------------------- 1 | worker: node index.js -------------------------------------------------------------------------------- /scores copy.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/scores copy.sqlite -------------------------------------------------------------------------------- /thLogs.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/thLogs.sqlite -------------------------------------------------------------------------------- /treeLogs.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/treeLogs.sqlite -------------------------------------------------------------------------------- /util/eventLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/util/eventLoader.js -------------------------------------------------------------------------------- /wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/wallpaper.png -------------------------------------------------------------------------------- /warnings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluzier/treehouse-bot/HEAD/warnings.json --------------------------------------------------------------------------------