Felix
Results
1
comments of
Felix
1. 我看好像是判断是否在主菜单的cv好像出了问题,我自己是这么改的 把FSM_action.py 的def WaitMainMenu()那几行改成 def WaitMainMenu(): print_out() while get_screen.get_state() != FSM_MAIN_MENU and get_screen.get_state() != FSM_CHOOSING_HERO: click.enter_battle_mode() time.sleep(5) if get_screen.get_state() == FSM_MAIN_MENU: return FSM_MAIN_MENU else: return FSM_CHOOSING_HERO 2. 选套牌的话我是自己提前选好就行 3....