├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── LICENSE ├── README.md ├── aiosqlite_pool.zip ├── application.yml ├── cogs ├── .DS_Store ├── anothermoderationcog.py ├── blockcorp.py ├── economy.py ├── economy.txt ├── extramodcog.txt ├── filter.py ├── fun.py ├── general.py ├── growtopia.py ├── logging.py ├── moderator.py ├── music.py ├── music.txt ├── music2.txt ├── owner.py ├── programming.py ├── reddit.py ├── settings.py ├── time.py ├── topgg.py ├── userdatacog.py ├── utils │ └── fuzzy.py └── verify.py ├── extensions ├── Courier.dfont ├── crimecheck.py └── verification.py ├── lavalink.jar ├── logs ├── spring.log.2021-01-20.0.gz ├── spring.log.2021-01-21.0.gz ├── spring.log.2021-01-22.0.gz ├── spring.log.2021-01-27.0.gz ├── spring.log.2021-01-28.0.gz ├── spring.log.2021-01-30.0.gz ├── spring.log.2021-02-01.0.gz ├── spring.log.2021-02-02.0.gz ├── spring.log.2021-02-03.0.gz ├── spring.log.2021-02-04.0.gz ├── spring.log.2021-02-05.0.gz ├── spring.log.2021-02-06.0.gz ├── spring.log.2021-02-11.0.gz ├── spring.log.2021-02-16.0.gz └── spring.log.2021-02-17.0.gz ├── main.py ├── nohup.out ├── otherscripts ├── codeblocks.py ├── data.py ├── fuzzy.py ├── helpcommand.py ├── helpers.py └── paginator.py ├── requirements.txt ├── runtime.txt ├── start.sh └── test.txt /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/README.md -------------------------------------------------------------------------------- /aiosqlite_pool.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/aiosqlite_pool.zip -------------------------------------------------------------------------------- /application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/application.yml -------------------------------------------------------------------------------- /cogs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/.DS_Store -------------------------------------------------------------------------------- /cogs/anothermoderationcog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/anothermoderationcog.py -------------------------------------------------------------------------------- /cogs/blockcorp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/blockcorp.py -------------------------------------------------------------------------------- /cogs/economy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/economy.py -------------------------------------------------------------------------------- /cogs/economy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/economy.txt -------------------------------------------------------------------------------- /cogs/extramodcog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/extramodcog.txt -------------------------------------------------------------------------------- /cogs/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/filter.py -------------------------------------------------------------------------------- /cogs/fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/fun.py -------------------------------------------------------------------------------- /cogs/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/general.py -------------------------------------------------------------------------------- /cogs/growtopia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/growtopia.py -------------------------------------------------------------------------------- /cogs/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/logging.py -------------------------------------------------------------------------------- /cogs/moderator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/moderator.py -------------------------------------------------------------------------------- /cogs/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/music.py -------------------------------------------------------------------------------- /cogs/music.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/music.txt -------------------------------------------------------------------------------- /cogs/music2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/music2.txt -------------------------------------------------------------------------------- /cogs/owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/owner.py -------------------------------------------------------------------------------- /cogs/programming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/programming.py -------------------------------------------------------------------------------- /cogs/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/reddit.py -------------------------------------------------------------------------------- /cogs/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/settings.py -------------------------------------------------------------------------------- /cogs/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/time.py -------------------------------------------------------------------------------- /cogs/topgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/topgg.py -------------------------------------------------------------------------------- /cogs/userdatacog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/userdatacog.py -------------------------------------------------------------------------------- /cogs/utils/fuzzy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/utils/fuzzy.py -------------------------------------------------------------------------------- /cogs/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/cogs/verify.py -------------------------------------------------------------------------------- /extensions/Courier.dfont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/extensions/Courier.dfont -------------------------------------------------------------------------------- /extensions/crimecheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/extensions/crimecheck.py -------------------------------------------------------------------------------- /extensions/verification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/extensions/verification.py -------------------------------------------------------------------------------- /lavalink.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/lavalink.jar -------------------------------------------------------------------------------- /logs/spring.log.2021-01-20.0.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/logs/spring.log.2021-01-20.0.gz -------------------------------------------------------------------------------- /logs/spring.log.2021-01-21.0.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/logs/spring.log.2021-01-21.0.gz -------------------------------------------------------------------------------- /logs/spring.log.2021-01-22.0.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/logs/spring.log.2021-01-22.0.gz -------------------------------------------------------------------------------- /logs/spring.log.2021-01-27.0.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/logs/spring.log.2021-01-27.0.gz -------------------------------------------------------------------------------- /logs/spring.log.2021-01-28.0.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/logs/spring.log.2021-01-28.0.gz -------------------------------------------------------------------------------- /logs/spring.log.2021-01-30.0.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/logs/spring.log.2021-01-30.0.gz -------------------------------------------------------------------------------- /logs/spring.log.2021-02-01.0.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/logs/spring.log.2021-02-01.0.gz -------------------------------------------------------------------------------- /logs/spring.log.2021-02-02.0.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/logs/spring.log.2021-02-02.0.gz -------------------------------------------------------------------------------- /logs/spring.log.2021-02-03.0.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/logs/spring.log.2021-02-03.0.gz -------------------------------------------------------------------------------- /logs/spring.log.2021-02-04.0.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/logs/spring.log.2021-02-04.0.gz -------------------------------------------------------------------------------- /logs/spring.log.2021-02-05.0.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/logs/spring.log.2021-02-05.0.gz -------------------------------------------------------------------------------- /logs/spring.log.2021-02-06.0.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/logs/spring.log.2021-02-06.0.gz -------------------------------------------------------------------------------- /logs/spring.log.2021-02-11.0.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/logs/spring.log.2021-02-11.0.gz -------------------------------------------------------------------------------- /logs/spring.log.2021-02-16.0.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/logs/spring.log.2021-02-16.0.gz -------------------------------------------------------------------------------- /logs/spring.log.2021-02-17.0.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/logs/spring.log.2021-02-17.0.gz -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/main.py -------------------------------------------------------------------------------- /nohup.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/nohup.out -------------------------------------------------------------------------------- /otherscripts/codeblocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/otherscripts/codeblocks.py -------------------------------------------------------------------------------- /otherscripts/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/otherscripts/data.py -------------------------------------------------------------------------------- /otherscripts/fuzzy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/otherscripts/fuzzy.py -------------------------------------------------------------------------------- /otherscripts/helpcommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/otherscripts/helpcommand.py -------------------------------------------------------------------------------- /otherscripts/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/otherscripts/helpers.py -------------------------------------------------------------------------------- /otherscripts/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/otherscripts/paginator.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.5 2 | -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobDotCom/BobDotBot/HEAD/start.sh -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------