本文整理汇总了Python中bot.Bot.compound方法的典型用法代码示例。如果您正苦于以下问题:Python Bot.compound方法的具体用法?Python Bot.compound怎么用?Python Bot.compound使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类bot.Bot
的用法示例。
在下文中一共展示了Bot.compound方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Bot
# 需要导入模块: from bot import Bot [as 别名]
# 或者: from bot.Bot import compound [as 别名]
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
# vim: set et sw=4 ts=4 sts=4 ff=unix fenc=utf8:
# Author: Binux<[email protected]>
# http://binux.me
# Created on 2013-09-19 12:07:45
import os
import sys
import config
from bot import Bot
if __name__ == '__main__':
bot = Bot()
bot.login(config.loginId, config.password)
bot.fairy()
ok = False
while not ok:
bot.report()
bot.fairy_rewards()
bot.sell_cards(1)
base_card = bot.ma.cards[int(sys.argv[1])]
ok = bot.compound(base_card, 77)
示例2: Bot
# 需要导入模块: from bot import Bot [as 别名]
# 或者: from bot.Bot import compound [as 别名]
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
# vim: set et sw=4 ts=4 sts=4 ff=unix fenc=utf8:
# Author: Binux<[email protected]>
# http://binux.me
# Created on 2013-09-19 12:07:45
import os
import sys
import config
from bot import Bot
if __name__ == '__main__':
bot = Bot()
bot.login(config.loginId, config.password)
bot.fairy()
ok = False
while not ok:
bot.report()
if not bot.fairy_rewards():
break
bot.sell_cards(3)
base_card = bot.ma.cards[int(sys.argv[1])]
ok = bot.compound(base_card, len(sys.argv) == 2 and 77 or int(sys.argv[2]), 4)