Example #1
0
def run():
    """This command runs the bot."""

    paginator = Paginator(max_size=1336)
    bot = CrimsoBOT(help_command=PaginatedHelpCommand(paginator=paginator))
    bot.load_extensions()
    bot.run(TOKEN)
Example #2
0
def setup(bot: CrimsoBOT) -> None:
    bot.add_cog(Games(bot))
Example #3
0
def setup(bot: CrimsoBOT) -> None:
    bot.add_cog(Utilities(bot))
Example #4
0
def setup(bot: CrimsoBOT) -> None:
    bot.add_cog(Cringo(bot))
Example #5
0
def setup(bot: CrimsoBOT) -> None:
    bot.add_cog(Image(bot))
Example #6
0
def setup(bot: CrimsoBOT) -> None:
    bot.add_cog(Mystery(bot))
Example #7
0
def setup(bot: CrimsoBOT) -> None:
    bot.add_cog(Text(bot))
Example #8
0
def setup(bot: CrimsoBOT) -> None:
    bot.add_cog(Reactions(bot))
Example #9
0
def setup(bot: CrimsoBOT) -> None:
    bot.add_cog(Admin(bot))
Example #10
0
def run():
    """This command runs the bot."""

    bot = CrimsoBOT()
    bot.load_extensions()
    bot.run(TOKEN)