feat.自动战斗新增支持模拟悖论(需要自己选技能)

This commit is contained in:
MistEO
2022-06-03 18:03:33 +08:00
parent 4deb5f8314
commit dad12eac1a
4 changed files with 20 additions and 4 deletions

View File

@@ -1,4 +1,6 @@
## 自动战斗
- 新增支持模拟悖论(需要自己选技能)
- 修复部分地图坐标错误的问题
- 修复部分干员 3 技能选不到的问题
- 修复部分干员识别错误问题
@@ -6,15 +8,19 @@
- 修复作业不填写 `actions` 字段时崩溃的问题
## 基建
- 修复不收取会客室的问题
- 修复搓玉补货时卡住的问题
- 修复 `巫恋组` 赤金不足时卡住的问题
- 下调办公室 `地灵` 的优先级
## 信用商店
- 修复信用商店黑名单为空时不购物的问题
- 修复偶现卡在商品弹出界面的问题
## 其他
- 新增一个配置文件备份机制,修复界面设置被还原的问题
- 修复开始唤醒卡在领取每日补给的问题
- 修复部分模拟器地址变动带来的连接错误问题

View File

@@ -4485,7 +4485,7 @@
232,
374
],
"rearDelay": 3000
"rearDelay": 2000
},
"BattleStartRaid": {
"action": "ClickSelf",
@@ -4495,7 +4495,7 @@
232,
374
],
"rearDelay": 3000
"rearDelay": 2000
},
"BattleStartExercise": {
"action": "ClickSelf",
@@ -4505,7 +4505,17 @@
232,
374
],
"rearDelay": 3000
"rearDelay": 2000
},
"BattleStartSimulation": {
"action": "ClickSelf",
"roi": [
417,
567,
444,
153
],
"rearDelay": 2000
},
"BattleOperName": {
"algorithm": "OcrDetect",

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

@@ -19,7 +19,7 @@ asst::CopilotTask::CopilotTask(AsstCallback callback, void* callback_arg)
m_subtasks.emplace_back(m_formation_task_ptr)->set_ignore_error(false);
auto start_2_tp = std::make_shared<ProcessTask>(callback, callback_arg, TaskType);
start_2_tp->set_tasks({ "BattleStartNormal", "BattleStartRaid", "BattleStartExercise" })
start_2_tp->set_tasks({ "BattleStartNormal", "BattleStartRaid", "BattleStartExercise", "BattleStartSimulation" })
.set_ignore_error(false);
m_subtasks.emplace_back(start_2_tp);