2020-03-29 01:22:46 +08:00
|
|
|
class CampaignEnd(Exception):
|
|
|
|
pass
|
Add: 适配第一章, 修复大量bug
- 修复处理夜间委托时, 出现递归调用的问题
- 增加红脸出击确认的功能
- 增加了透视识别错误图片保存的开关
- 修复了地图太小时, 透视识别报错的问题
- 修复了相机位于地图外时, 透视识别出错的问题
- 修复了离开退役时, 会连击的问题
- 修复了同时出现低心情和船坞已满弹窗时, 卡住的问题
- 更新了一键退役实装后的安全点击的位置
- 修复了换装滑动失败时, 卡住的问题
- 修复了关闭自动收获后, 出现委托完成的提示是, 进图卡住的问题
- 修复了, 无正在跑的委托时, 报错的问题
2020-04-11 15:23:51 +08:00
|
|
|
|
|
|
|
|
2020-07-08 03:07:59 +08:00
|
|
|
class MapDetectionError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2020-04-24 15:26:11 +08:00
|
|
|
class MapWalkError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2020-08-05 01:29:22 +08:00
|
|
|
class MapEnemyMoved(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2020-04-25 17:10:22 +08:00
|
|
|
class CampaignNameError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2020-04-17 16:20:53 +08:00
|
|
|
class ScriptError(Exception):
|
2021-09-16 12:09:00 +08:00
|
|
|
# This is likely to be a mistake of developers, but sometimes a random issue
|
2020-04-17 16:20:53 +08:00
|
|
|
pass
|
2020-04-19 00:49:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
class ScriptEnd(Exception):
|
|
|
|
pass
|
2020-08-01 17:53:00 +08:00
|
|
|
|
|
|
|
|
|
|
|
class GameStuckError(Exception):
|
|
|
|
pass
|
|
|
|
|
2021-09-16 12:09:00 +08:00
|
|
|
|
2022-02-12 17:30:08 +08:00
|
|
|
class GameBugError(Exception):
|
|
|
|
# An error has occurred in Azur Lane game client. Alas is unable to handle.
|
|
|
|
# A restart should fix it.
|
2021-02-20 07:09:11 +08:00
|
|
|
pass
|
2020-08-01 17:53:00 +08:00
|
|
|
|
2021-09-16 12:09:00 +08:00
|
|
|
|
2020-08-05 16:21:18 +08:00
|
|
|
class GameTooManyClickError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2022-07-19 13:57:55 +08:00
|
|
|
class EmulatorNotRunningError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2020-08-01 17:53:00 +08:00
|
|
|
class GameNotRunningError(Exception):
|
|
|
|
pass
|
2021-09-16 12:09:00 +08:00
|
|
|
|
|
|
|
|
2022-03-07 21:55:11 +08:00
|
|
|
class GamePageUnknownError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2021-09-16 12:09:00 +08:00
|
|
|
class RequestHumanTakeover(Exception):
|
|
|
|
# Request human takeover
|
|
|
|
# Alas is unable to handle such error, probably because of wrong settings.
|
|
|
|
pass
|