├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── README.md └── Sx4 ├── cogs ├── animals.py ├── antiad.py ├── antilink.py ├── autorole.py ├── economy.py ├── fun.py ├── general.py ├── giveaway.py ├── help.py ├── image.py ├── logs.py ├── mod.py ├── music.py ├── owner.py ├── page.py ├── selfroles.py ├── serverlog.py ├── serverpost.py ├── status.py └── welcomer.py ├── main.py └── utils ├── PagedResult.py ├── arg.py ├── arghelp.py ├── checks.py ├── ctime.py ├── data.py ├── database.py ├── dateify.py └── paged.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/README.md -------------------------------------------------------------------------------- /Sx4/cogs/animals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/cogs/animals.py -------------------------------------------------------------------------------- /Sx4/cogs/antiad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/cogs/antiad.py -------------------------------------------------------------------------------- /Sx4/cogs/antilink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/cogs/antilink.py -------------------------------------------------------------------------------- /Sx4/cogs/autorole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/cogs/autorole.py -------------------------------------------------------------------------------- /Sx4/cogs/economy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/cogs/economy.py -------------------------------------------------------------------------------- /Sx4/cogs/fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/cogs/fun.py -------------------------------------------------------------------------------- /Sx4/cogs/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/cogs/general.py -------------------------------------------------------------------------------- /Sx4/cogs/giveaway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/cogs/giveaway.py -------------------------------------------------------------------------------- /Sx4/cogs/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/cogs/help.py -------------------------------------------------------------------------------- /Sx4/cogs/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/cogs/image.py -------------------------------------------------------------------------------- /Sx4/cogs/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/cogs/logs.py -------------------------------------------------------------------------------- /Sx4/cogs/mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/cogs/mod.py -------------------------------------------------------------------------------- /Sx4/cogs/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/cogs/music.py -------------------------------------------------------------------------------- /Sx4/cogs/owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/cogs/owner.py -------------------------------------------------------------------------------- /Sx4/cogs/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/cogs/page.py -------------------------------------------------------------------------------- /Sx4/cogs/selfroles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/cogs/selfroles.py -------------------------------------------------------------------------------- /Sx4/cogs/serverlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/cogs/serverlog.py -------------------------------------------------------------------------------- /Sx4/cogs/serverpost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/cogs/serverpost.py -------------------------------------------------------------------------------- /Sx4/cogs/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/cogs/status.py -------------------------------------------------------------------------------- /Sx4/cogs/welcomer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/cogs/welcomer.py -------------------------------------------------------------------------------- /Sx4/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/main.py -------------------------------------------------------------------------------- /Sx4/utils/PagedResult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/utils/PagedResult.py -------------------------------------------------------------------------------- /Sx4/utils/arg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/utils/arg.py -------------------------------------------------------------------------------- /Sx4/utils/arghelp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/utils/arghelp.py -------------------------------------------------------------------------------- /Sx4/utils/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/utils/checks.py -------------------------------------------------------------------------------- /Sx4/utils/ctime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/utils/ctime.py -------------------------------------------------------------------------------- /Sx4/utils/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/utils/data.py -------------------------------------------------------------------------------- /Sx4/utils/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/utils/database.py -------------------------------------------------------------------------------- /Sx4/utils/dateify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/utils/dateify.py -------------------------------------------------------------------------------- /Sx4/utils/paged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx4-discord-bot/Sx4-Python/HEAD/Sx4/utils/paged.py --------------------------------------------------------------------------------