mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-13 09:07:02 +08:00
Add: meowfficer enhance, queue common first, and sr cat check then lock else skip feature
18 lines
487 B
Python
18 lines
487 B
Python
from module.meowfficer.assets import *
|
|
from module.ui.assets import MEOWFFICER_INFO
|
|
from module.ui.ui import UI
|
|
|
|
|
|
class MeowfficerBase(UI):
|
|
def meow_additional(self):
|
|
if self.appear_then_click(MEOWFFICER_INFO, offset=(30, 30), interval=3):
|
|
return True
|
|
|
|
return False
|
|
|
|
def handle_meow_popup_confirm(self):
|
|
if self.appear_then_click(MEOWFFICER_CONFIRM, offset=(40, 20), interval=5):
|
|
return True
|
|
else:
|
|
return False
|