本文整理汇总了Python中output.Output.cmd_party方法的典型用法代码示例。如果您正苦于以下问题:Python Output.cmd_party方法的具体用法?Python Output.cmd_party怎么用?Python Output.cmd_party使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类output.Output
的用法示例。
在下文中一共展示了Output.cmd_party方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: run_command
# 需要导入模块: from output import Output [as 别名]
# 或者: from output.Output import cmd_party [as 别名]
def run_command(cmd, *params):
for param in params:
if 'empty' in param:
return
if cmd == 'help':
Output.cmd_help()
elif cmd in ('exit', 'quit'):
cmd_exit()
elif cmd in ('cls', 'clear'):
cmd_cls()
elif cmd == 'reset':
cmd_reset()
elif cmd == 'save':
cmd_save(*params)
elif cmd == 'load':
cmd_load(*params)
elif cmd == 'party':
Output.cmd_party()
elif cmd == 'stats':
cmd_stats(*params)
elif cmd in ('backpack', 'inventory', 'inv'):
Output.cmd_inventory()
elif cmd == 'pouch':
Output.cmd_pouch()
elif cmd == 'find':
cmd_find(*params)
elif cmd == 'xp':
cmd_xp(*params)
elif cmd in ('purchaselist', 'shoplist'):
cmd_purchaselist(*params)
elif cmd in ('purchase', 'shop'):
cmd_purchase(*params)
elif cmd == 'sell':
cmd_sell(*params)
elif cmd == 'equip':
cmd_equip(*params)
elif cmd == 'unequip':
cmd_unequip(*params)
elif cmd == 'heroes':
Output.cmd_heroes()
elif cmd == 'join':
cmd_join(*params)
elif cmd == 'leave':
cmd_leave(*params)