对MuMu官方脚本的”F键时停方案”进行了优化,主要修改了以下内容:

  • 0帧部署
  • 一键撤退
  • 一键放技能
  • 键位设置

功能介绍

0帧部署 (R)

在游戏暂停时,将鼠标悬停在待部署干员头像上,按下宏按键并移动到目标部署位置后松开。

操作流程: 一次宏按键 + 左键选定方向

0帧部署
0帧部署

一键放技能 (右键或F)

在需要释放技能的干员位置,点击鼠标右键或按下F键。

一键放技能
一键放技能

0帧选取 (G)

0帧选取
0帧选取

一键撤退 (S)

一键撤退
一键撤退

其他功能:

  • 子弹时间前进1帧: 选择干员后,按 D + 空格
  • 返回暂停: D
  • 干员撤退: W
  • 干员技能: T
  • 切换倍速: A
  • 普通暂停: 空格

配置文件

此为直接修改的配置文件,所有坐标均为相对坐标,理论上适用于所有分辨率。

下载

MuMu模拟器分享码

分享《明日方舟》按键操作方案,复制此分享码:mumu7604380698,打开MuMu模拟器,在方案管理中导入使用!

  • 适用分辨率: 2560*1440

MuMu模拟器下载:https://mumu.163.com/

0帧部署原理解释

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"editor_icon_scale": 1,
"icon": {
"background_color": "00000066",
"description": "0帧部署",
"radius_correction": 1,
"rel_position": {
"rel_x": 0.8962538819875777,
"rel_y": 0.1777593615715163
},
"visibility": true
},
"key": {
"device": "keyboard",
"scan_code": 19,
"text": "R",
"virtual_key": 82
},
"press_actions": [
"click_rel:(0.940625, 0.07444444444444444)",
"curve_last_point_sleep_time:until_release_cmd",
"curve_rel:mouse;(0.5, 2.0)",
"keyboard_press:158",
"keyboard_release:158",
"mouse_press:1"
],
"rel_work_position": {
"rel_x": 0.8962538819875777,
"rel_y": 0.1777593615715163
},
"release_actions": [
"release_all",
"mouse_release:1"
],
"type": "Macro"
}

原理拆解:

  1. click_rel:(0.940625, 0.07444444444444444):按下宏按键,解除暂停。
  2. curve_last_point_sleep_time:until_release_cmd:设置滑动操作为显式调用 release 才松开。
  3. curve_rel:mouse;(0.5, 2.0):从鼠标位置(待部署干员位置)滑动至屏幕外,避免阻挡视线。
  4. keyboard_press:158 + keyboard_release:158:模拟按下 ESC 键,暂停游戏。
  5. mouse_press:1:拖动待部署干员。
  6. release_all:松开 (0.5, 2.0) 位置的按动 (实测 curve_release 不起作用)。
  7. mouse_release:1:松开鼠标左键,部署干员。