├── .github ├── FUNDING.yml └── workflows │ └── project.yml ├── .gitignore ├── LICENSE ├── PRIVACY.md ├── Procfile ├── README.md ├── bot.js ├── commands ├── about.js ├── admin │ ├── __mod.js │ ├── assign.js │ ├── cleanup.js │ ├── permfix.js │ ├── purge.js │ ├── roles │ │ ├── __mod.js │ │ ├── create.js │ │ ├── edit.js │ │ ├── index.js │ │ ├── remove.js │ │ ├── reset.js │ │ └── view.js │ └── toggle.js ├── color │ ├── __mod.js │ ├── change.js │ ├── current.js │ ├── link.js │ ├── list.js │ ├── remove.js │ ├── rename.js │ └── unlink.js ├── config │ ├── __mod.js │ ├── autorename.js │ ├── blacklist │ │ ├── __mod.js │ │ ├── add.js │ │ ├── clear.js │ │ ├── disable.js │ │ ├── enable.js │ │ ├── remove.js │ │ └── view.js │ ├── disable.js │ ├── enable.js │ ├── hoist.js │ ├── pingable.js │ ├── readable.js │ ├── readout.js │ └── whitelist │ │ ├── __mod.js │ │ ├── add.js │ │ ├── clear.js │ │ ├── disable.js │ │ ├── enable.js │ │ ├── remove.js │ │ └── view.js ├── help.js ├── invite.js ├── owner │ ├── __mod.js │ ├── eval.js │ ├── give-ent.js │ ├── reload.js │ ├── skus.js │ └── take-ent.js ├── premium │ ├── __mod.js │ ├── check.js │ └── upgrade.js └── util │ ├── __mod.js │ ├── convert.js │ ├── export.js │ ├── import.js │ ├── mix.js │ └── save │ ├── __mod.js │ ├── clear.js │ ├── delete.js │ ├── edit.js │ ├── new.js │ └── view.js ├── events ├── guildDelete.js ├── guildMemberRemove.js ├── messageCreate.js └── roleDelete.js ├── example.env ├── extras.js ├── handlers └── premium.js ├── icon.png ├── index.js ├── package.json ├── stores ├── colors.js ├── configs.js ├── premium.js ├── serverRoles.js ├── usages.js ├── userConfigs.js └── userRoles.js └── utils ├── colors.js └── general.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/.github/workflows/project.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: npm start -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/README.md -------------------------------------------------------------------------------- /bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/bot.js -------------------------------------------------------------------------------- /commands/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/about.js -------------------------------------------------------------------------------- /commands/admin/__mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/admin/__mod.js -------------------------------------------------------------------------------- /commands/admin/assign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/admin/assign.js -------------------------------------------------------------------------------- /commands/admin/cleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/admin/cleanup.js -------------------------------------------------------------------------------- /commands/admin/permfix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/admin/permfix.js -------------------------------------------------------------------------------- /commands/admin/purge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/admin/purge.js -------------------------------------------------------------------------------- /commands/admin/roles/__mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/admin/roles/__mod.js -------------------------------------------------------------------------------- /commands/admin/roles/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/admin/roles/create.js -------------------------------------------------------------------------------- /commands/admin/roles/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/admin/roles/edit.js -------------------------------------------------------------------------------- /commands/admin/roles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/admin/roles/index.js -------------------------------------------------------------------------------- /commands/admin/roles/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/admin/roles/remove.js -------------------------------------------------------------------------------- /commands/admin/roles/reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/admin/roles/reset.js -------------------------------------------------------------------------------- /commands/admin/roles/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/admin/roles/view.js -------------------------------------------------------------------------------- /commands/admin/toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/admin/toggle.js -------------------------------------------------------------------------------- /commands/color/__mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/color/__mod.js -------------------------------------------------------------------------------- /commands/color/change.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/color/change.js -------------------------------------------------------------------------------- /commands/color/current.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/color/current.js -------------------------------------------------------------------------------- /commands/color/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/color/link.js -------------------------------------------------------------------------------- /commands/color/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/color/list.js -------------------------------------------------------------------------------- /commands/color/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/color/remove.js -------------------------------------------------------------------------------- /commands/color/rename.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/color/rename.js -------------------------------------------------------------------------------- /commands/color/unlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/color/unlink.js -------------------------------------------------------------------------------- /commands/config/__mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/config/__mod.js -------------------------------------------------------------------------------- /commands/config/autorename.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/config/autorename.js -------------------------------------------------------------------------------- /commands/config/blacklist/__mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/config/blacklist/__mod.js -------------------------------------------------------------------------------- /commands/config/blacklist/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/config/blacklist/add.js -------------------------------------------------------------------------------- /commands/config/blacklist/clear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/config/blacklist/clear.js -------------------------------------------------------------------------------- /commands/config/blacklist/disable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/config/blacklist/disable.js -------------------------------------------------------------------------------- /commands/config/blacklist/enable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/config/blacklist/enable.js -------------------------------------------------------------------------------- /commands/config/blacklist/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/config/blacklist/remove.js -------------------------------------------------------------------------------- /commands/config/blacklist/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/config/blacklist/view.js -------------------------------------------------------------------------------- /commands/config/disable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/config/disable.js -------------------------------------------------------------------------------- /commands/config/enable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/config/enable.js -------------------------------------------------------------------------------- /commands/config/hoist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/config/hoist.js -------------------------------------------------------------------------------- /commands/config/pingable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/config/pingable.js -------------------------------------------------------------------------------- /commands/config/readable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/config/readable.js -------------------------------------------------------------------------------- /commands/config/readout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/config/readout.js -------------------------------------------------------------------------------- /commands/config/whitelist/__mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/config/whitelist/__mod.js -------------------------------------------------------------------------------- /commands/config/whitelist/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/config/whitelist/add.js -------------------------------------------------------------------------------- /commands/config/whitelist/clear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/config/whitelist/clear.js -------------------------------------------------------------------------------- /commands/config/whitelist/disable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/config/whitelist/disable.js -------------------------------------------------------------------------------- /commands/config/whitelist/enable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/config/whitelist/enable.js -------------------------------------------------------------------------------- /commands/config/whitelist/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/config/whitelist/remove.js -------------------------------------------------------------------------------- /commands/config/whitelist/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/config/whitelist/view.js -------------------------------------------------------------------------------- /commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/help.js -------------------------------------------------------------------------------- /commands/invite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/invite.js -------------------------------------------------------------------------------- /commands/owner/__mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/owner/__mod.js -------------------------------------------------------------------------------- /commands/owner/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/owner/eval.js -------------------------------------------------------------------------------- /commands/owner/give-ent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/owner/give-ent.js -------------------------------------------------------------------------------- /commands/owner/reload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/owner/reload.js -------------------------------------------------------------------------------- /commands/owner/skus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/owner/skus.js -------------------------------------------------------------------------------- /commands/owner/take-ent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/owner/take-ent.js -------------------------------------------------------------------------------- /commands/premium/__mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/premium/__mod.js -------------------------------------------------------------------------------- /commands/premium/check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/premium/check.js -------------------------------------------------------------------------------- /commands/premium/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/premium/upgrade.js -------------------------------------------------------------------------------- /commands/util/__mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/util/__mod.js -------------------------------------------------------------------------------- /commands/util/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/util/convert.js -------------------------------------------------------------------------------- /commands/util/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/util/export.js -------------------------------------------------------------------------------- /commands/util/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/util/import.js -------------------------------------------------------------------------------- /commands/util/mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/util/mix.js -------------------------------------------------------------------------------- /commands/util/save/__mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/util/save/__mod.js -------------------------------------------------------------------------------- /commands/util/save/clear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/util/save/clear.js -------------------------------------------------------------------------------- /commands/util/save/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/util/save/delete.js -------------------------------------------------------------------------------- /commands/util/save/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/util/save/edit.js -------------------------------------------------------------------------------- /commands/util/save/new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/util/save/new.js -------------------------------------------------------------------------------- /commands/util/save/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/commands/util/save/view.js -------------------------------------------------------------------------------- /events/guildDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/events/guildDelete.js -------------------------------------------------------------------------------- /events/guildMemberRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/events/guildMemberRemove.js -------------------------------------------------------------------------------- /events/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/events/messageCreate.js -------------------------------------------------------------------------------- /events/roleDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/events/roleDelete.js -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/example.env -------------------------------------------------------------------------------- /extras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/extras.js -------------------------------------------------------------------------------- /handlers/premium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/handlers/premium.js -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/icon.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/package.json -------------------------------------------------------------------------------- /stores/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/stores/colors.js -------------------------------------------------------------------------------- /stores/configs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/stores/configs.js -------------------------------------------------------------------------------- /stores/premium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/stores/premium.js -------------------------------------------------------------------------------- /stores/serverRoles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/stores/serverRoles.js -------------------------------------------------------------------------------- /stores/usages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/stores/usages.js -------------------------------------------------------------------------------- /stores/userConfigs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/stores/userConfigs.js -------------------------------------------------------------------------------- /stores/userRoles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/stores/userRoles.js -------------------------------------------------------------------------------- /utils/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/utils/colors.js -------------------------------------------------------------------------------- /utils/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greys-bots/sheep/HEAD/utils/general.js --------------------------------------------------------------------------------