def admin(self, ctx):
"""Shows the help information for creating self assigned roles
"""
role = "role"
plural = "s"
if "bias" in ctx.invoked_with:
role = "bias"
plural = "es"
msg = []
msg.append("```")
msg.append("To get started, give me permission to manage roles, and delete messages.")
msg.append("I should have been added with these roles, so just check for a `TnyBot` role.")
msg.append("")
msg.append("Next, you need to create a list of {1}{2} members can add.")
msg.append("Use: {0}set{1} Role=Alias, Role2=Alias2")
msg.append("Example: {0}set{1} robots=robits, dogs=doge, lions, tigers, bears=beers")
msg.append("")
msg.append("If you want to enforce 1 {1} per user, then use {0}setmain{1}")
msg.append("The Member will be prompted if they want to swap {1}{2}.")
msg.append("")
msg.append("Hint: {1}{2}, and main{1}{2} can share the same alias.")
msg.append("To make it easier to add roles, you can allow @mentions and just mention each role you want to add")
msg.append("```")
await self.bot.say("\n".join(msg).format(ctx.prefix, role, plural))
评论列表
文章目录