|
@@ -730,6 +730,30 @@ class task_getStrength(dongri_task):
|
|
|
waitClickImg_noWait_withBool((check_img.get,check_img.bigGet), 2, 1)
|
|
|
return True
|
|
|
|
|
|
+class task_checkAdventure2(dongri_task):
|
|
|
+ def __init__(self):
|
|
|
+ super().__init__(f"检查游历")
|
|
|
+ def run(self):
|
|
|
+ basic_operate.go_town()
|
|
|
+ if waitClickImg_noWait_withBool(train_img.quick_panel, 2, 1) == False:
|
|
|
+ return False
|
|
|
+
|
|
|
+ myTimeSleep_big()
|
|
|
+ yys_dragAuto(check_img.move_down)
|
|
|
+ yys_dragAuto(check_img.move_down)
|
|
|
+ yys_dragAuto(check_img.move_down)
|
|
|
+ yys_dragAuto(check_img.move_down)
|
|
|
+ myTimeSleep_big()
|
|
|
+
|
|
|
+ if waitClickImg_noWait_withBool(check_img.pannel_adventure, 2, 1) == False:
|
|
|
+ return False
|
|
|
+ if waitClickImg_noWait_withBool(check_img.adventure_random, 2, 1) == False:
|
|
|
+ return False
|
|
|
+ if waitClickImg_noWait_withBool(check_img.adventure_bag, 2, 1) == False:
|
|
|
+ return False
|
|
|
+ if waitClickImg_noWait_withBool(check_img.adventure_get, 2, 1) == False:
|
|
|
+ return False
|
|
|
+ return True
|
|
|
|
|
|
class task_checkStoreRoom(dongri_task):
|
|
|
def __init__(self):
|
|
@@ -1732,7 +1756,7 @@ if __name__ == '__main__':
|
|
|
#yys_ocrAuto(check_img.line_orc)
|
|
|
#basic_operate.go_town()
|
|
|
#basic_operate.add_strength()
|
|
|
- task_fightMonster(False, True,False).run()
|
|
|
+ #task_fightMonster(False, True,False).run()
|
|
|
#task_checkHelp().run()
|
|
|
#task_checkStoreRoom().run()
|
|
|
#task_start_game(1)
|
|
@@ -1745,6 +1769,8 @@ if __name__ == '__main__':
|
|
|
#task_information(True).run()
|
|
|
#check_buildOrResearch().run()
|
|
|
#task_checkDonata().run()
|
|
|
+ #task_checkUnionTreasure().run()
|
|
|
+ task_checkAdventure2().run()
|
|
|
#task_collect(1).run()
|
|
|
#task_collect(2).run()
|
|
|
#task_collect(3).run()
|