├── .env.sample ├── .eslintrc.js ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── package.json └── src ├── commands ├── 8ball.js ├── help.js ├── index.js ├── ping.js ├── role.js ├── roles.json └── whoami.js └── index.js /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffman/Discord-Bot/HEAD/.env.sample -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffman/Discord-Bot/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffman/Discord-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffman/Discord-Bot/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffman/Discord-Bot/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/8ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffman/Discord-Bot/HEAD/src/commands/8ball.js -------------------------------------------------------------------------------- /src/commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffman/Discord-Bot/HEAD/src/commands/help.js -------------------------------------------------------------------------------- /src/commands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffman/Discord-Bot/HEAD/src/commands/index.js -------------------------------------------------------------------------------- /src/commands/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffman/Discord-Bot/HEAD/src/commands/ping.js -------------------------------------------------------------------------------- /src/commands/role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffman/Discord-Bot/HEAD/src/commands/role.js -------------------------------------------------------------------------------- /src/commands/roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffman/Discord-Bot/HEAD/src/commands/roles.json -------------------------------------------------------------------------------- /src/commands/whoami.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffman/Discord-Bot/HEAD/src/commands/whoami.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffman/Discord-Bot/HEAD/src/index.js --------------------------------------------------------------------------------