批量讨伐角色养成材料BOSS 0.6.0 (#3101)

* 同步批量讨伐角色养成材料BOSS更新

* 同步更新

---------

Co-authored-by: DarkFlameMaster <actions@github.com>
This commit is contained in:
DarkFlameMaster
2026-04-12 12:36:05 +08:00
committed by GitHub
parent 73976be008
commit 13bf53000b
55 changed files with 3175 additions and 2874 deletions

View File

@@ -1,116 +1,123 @@
# 批量讨伐角色养成材料BOSS
## 一、功能简介
1. 一次性配置多个角色材料的boss
2. 体力不足时保存进度,每次运行时断点续打
3. 支持三种刷取模式,包括一次性刷取、一次性刷取但每日限量、每日重复刷取
## 二、脚本使用指南
### 1. 首次运行配置添加Boss
* **步骤**
1. 右键点击脚本。
2. 选择【修改JS脚本自定义配置】。
3. 【选择模式】 -> 【追加boss】
4. 在弹出的界面中选择要挑战的Boss、设置讨伐队伍、是否每次回七天神像回血、以及讨伐次数等
5. **关闭**该配置窗口
6. 运行一次脚本完成Boss的添加。
### 2. 后续运行
* **步骤**
1. 右键点击脚本。
2. 选择【修改JS脚本自定义配置】。
3. 选择【选择模式】 -> 【运行】
4. **关闭**该配置窗口
5. 运行脚本将按顺序挑战已配置的Boss列表
### 3. 注意事项
* **追加Boss**:此操作是**新增**一个Boss条目到列表末尾**不会**合并或增加同名Boss的数量。
* *示例*:列表中已有“急冻树”和“爆炎树”,再次追加“急冻树”,列表将变为:“急冻树”、“爆炎树”、“急冻树”。
* **删除Boss**执行删除操作**清除所有**同名的Boss条目
### 4.选项说明
> !!!暂未生效需要等BGI更新再更新!!! 配置后会保存在config之后版本更新后会沿用这个配置
>1. **战斗策略名**
> * 如果对战斗策略没特殊要求,不需要修改,**保证在`\BetterGI\User\AutoFight\`目录下有适合你配队的策略即可**
> * **如果需要自定义策略,需注意:**
> * 必须在`\BetterGI\User\AutoFight\`目录下存在,只需要填写文件名,不需要后缀,比如文件名是`1.四神挂机[推荐].txt`,只需要填`1.四神挂机>[推荐]`
> * 如果在文件夹内,必须包含目录结构,比如战斗策略在`\BetterGI\User\AutoFight\群友分享\仆人纯火.txt`,你需要填写`群友分享\仆人纯火`
> * 简单来说,按`BGI本体->独立任务->自动战斗->选择战斗策略`中的格式填写
>
>2. **战斗超时时间**
> * **每个boss独立设置** 单位为秒默认为240秒即4分钟如果超过这个时间强制结束战斗
3. **刷取模式**
>刷取的前提是有体力,没体力会自动停止
* **一次性**boss刷取次数完成后不再刷取这个配置。且按添加顺序刷完一个配置后才会刷取下一个配置。需配置`讨伐次数`。选择此模式时,`每日限量次数`选项无效
* **一次性-每日限量**:跟一次性类似,但可以在`每日限量次数`限制刷取的次数,刷够次数后会按添加顺序刷取下一配置,需同时配置`讨伐次数``每日限量次数`
* **每日重置**简单说就是每天都刷取`每日限量次数`指定的次数,无论刷完与否,次日重置。选择此模式时,`讨伐次数`选项无效
## 三、不支持的BOSS
以下Boss目前**未添加**尚未添加支持:
* 无相之风
* 黄金王兽
* 无相之
* 深海龙蜥之群
## 四、手动编辑配置文件 (config.json)
如果你熟悉JSON格式可以直接编辑配置文件来管理Boss列表
* **路径**`assets\config\config.json`
* **要求**确保文件最外层是一个JSON数组 `[]`
* **参考文件**可参照 `example.json` 文件。
* **示例**
```json
[
{
"name": "魔像督军", // Boss名称
"totalCount": 20, // 总讨伐次数
"remainingCount": 20, // 剩余次数,手动添加时填写总讨伐次数
"team": "四神", // 讨伐队伍名,默认不切换
"returnToStatueAfterEachRound": true, // 每轮结束后是否回七天神像回血
"farmMode": "一次性-每日限量", // 刷取模式,可选:一次性、一次性-每日限量、每日重置
"lastFarmTime": null, // 上次刷取时间用于每日判断格式YYYYMMDD
"dailyLimitCount": 1, // 每日限量次数,在一次性-每日限量每日重置 模式下生效
"dailyRemainingCount": 1, // 今日剩余可刷取次数
"fightParam": { // 战斗参数配置 (暂未实装)
"timeout": 240, // 战斗超时时间单位为秒默认240秒 (暂未实装)
"strategyName": "根据队伍自动选择" // 战斗策略名需与AutoFight目录下的策略文件名对应暂未实装
}
}
]
```
## 五、BUG反馈or建议
有任何问题或者功能需求,欢迎加群
* QQ群[1025022262](https://qm.qq.com/q/7i92V2JYF)
## 六、更新日志
### 2025.11.16 V0.5
* !!注意!!
本次版本更新后可能会重置且不支持老版本config.json强烈建议备份后重新配置
* 新增两种刷取模式:
* **一次性-每日限量** :与上版本的 **一次性** 类似,但可以在`每日限量次数`限制刷取的次数,刷够次数后会按添加顺序刷取下一配置,次日循环,刷完总数量为止。
* **每日重置**:每日都会刷取`每日限量次数`指定的次数。无论刷完与否都会在次日重置次数。
* 新增两个BOSS路线支持**重拳出击鸭**、**霜夜巡天灵主**
### 2025.08.23 V0.3
* fix 修复奖励未领取成功提前传送的bug
* fix 修复奖励未领取成功仍然会计数已完成的bug
* update 改了一下boss列表展示的排版
### 2025.08.21
* fix 截图资源未释放
* update 地图追踪文件
### 2025.08.21 V0.1
* 初版发布
# 批量讨伐角色养成材料BOSS
## 一、功能简介
1. 一次性配置多个角色材料的boss
2. 体力不足时保存进度,每次运行时断点续打
3. 支持三种刷取模式,包括一次性刷取、一次性刷取但每日限量、每日重复刷取
## 二、脚本使用指南
### 0. 运行脚本前的准备
* 需要在调度器中添加此JS脚本
### 1. 首次运行配置添加Boss
* **步骤**
1. 右键点击脚本
2. 选择【修改JS脚本自定义配置】。
3. 【选择模式】 -> 【追加boss】
4. 在弹出的界面中选择要挑战的Boss、设置讨伐队伍、是否每次回七天神像回血、以及讨伐次数等
5. **关闭**该配置窗口。
6. 运行一次脚本完成Boss的添加。
### 2. 后续运行
* **步骤**
1. 右键点击脚本
2. 选择【修改JS脚本自定义配置】
3. 选择【选择模式】 -> 【运行】
4. **关闭**该配置窗口。
5. 运行脚本将按顺序挑战已配置的Boss列表。
### 3. 注意事项
* **追加Boss**操作**新增**一个Boss条目到列表末尾**不会**合并或增加同名Boss的数量
* *示例*:列表中已有“急冻树”和“爆炎树”,再次追加“急冻树”,列表将变为:“急冻树”、“爆炎树”、“急冻树”。
* **删除Boss**:执行删除操作会**清除所有**同名的Boss条目
### 4.选项说明
1. **战斗策略名**
* 如果对战斗策略没特殊要求,不需要修改,**保证在`\BetterGI\User\AutoFight\`目录下有适合你配队的策略即可**
* **如果需要自定义策略,需注意:**
* 必须在`\BetterGI\User\AutoFight\`目录下存在,只需要填写文件名,不需要后缀,比如文件名是`1.四神挂机[推荐].txt`,只需要填`1.四神挂机[推荐]`
* 如果在文件夹内,必须包含目录结构,比如战斗策略在`\BetterGI\User\AutoFight\群友分享\仆人纯火.txt`,你需要填写`群友分享\仆人纯火`
* 简单来说,按`BGI本体->独立任务->自动战斗->选择战斗策略`中的格式填写
2. **战斗超时时间**
* **每个boss独立设置** 单位为秒默认为240秒如果超过这个时间强制结束战斗
* **务必确保**BOSS在这个时间内死亡没有针对超时处理。
3. **刷取模式**
>刷取的前提是有体力,没体力会自动停止
* **一次性**boss刷取次数完成后不再刷取这个配置。且按添加顺序刷完一个配置后才会刷取下一个配置。需配置`讨伐次数`。选择此模式时,`每日限量次数`选项无效
* **一次性-每日限量**:跟一次性类似,但可以在`每日限量次数`限制刷取的次数,刷够次数后会按添加顺序刷取下一配置,需同时配置`讨伐次数``每日限量次数`
* **每日重置**:简单说就是每天都刷取`每日限量次数`指定的次数,无论刷完与否,次日重置。选择此模式时,`讨伐次数`选项无效
## 三、不支持的BOSS
以下Boss目前尚未添加支持
* 无相之
* 黄金王兽
* 无相之冰
* 深海龙蜥之群
## 四、手动编辑配置文件 (config.json)
如果你熟悉JSON格式可以直接编辑配置文件来管理Boss列表
* **路径**`assets\config\config.json`
* **要求**确保文件最外层是一个JSON数组 `[]`
* **参考文件**:可参照 `example.json` 文件。
* **示例**
```json
[
{
"name": "魔像督军", // Boss名称
"totalCount": 20, // 讨伐次数
"remainingCount": 20, // 剩余次数,手动添加时填写总讨伐次数
"team": "四神", // 讨伐队伍名,默认不切换
"returnToStatueAfterEachRound": true, // 每轮结束后是否回七天神像回血
"farmMode": "一次性-每日限量", // 刷取模式,可选:一次性、一次性-每日限量每日重置
"lastFarmTime": null, // 上次刷取时间用于每日判断格式YYYYMMDD
"dailyLimitCount": 1, // 每日限量次数,在一次性-每日限量 和 每日重置 模式下生效
"dailyRemainingCount": 1, // 今日剩余可刷取次数
"fightParam": { // 战斗参数配置
"timeout": 240, // 战斗超时时间单位为秒默认240秒
"strategyName": "根据队伍自动选择" // 战斗策略名需与AutoFight目录下的策略文件名对应
}
}
]
```
## 五、BUG反馈or建议
有任何问题或者功能需求,欢迎反馈
* QQ群[1025022262](https://qm.qq.com/q/7i92V2JYF)
* GitHub Issues[Issues](https://github.com/1004452714/AutoBoss/issues)
## 六、更新日志
### 2025.11.17 V0.6
* 新增BOSS路线支持
* 修复添加boss模式无效的问题
### 2025.11.16 V0.5
* 本次版本更新后可能会重置且不支持老版本config.json强烈建议备份后重新配置
* 新增两种刷取模式:
* **一次性-每日限量** :与上版本的 **一次性** 类似,但可以在`每日限量次数`限制刷取的次数,刷够次数后会按添加顺序刷取下一配置,次日循环,刷完总数量为止。
* **每日重置**:每日都会刷取`每日限量次数`指定的次数。无论刷完与否都会在次日重置次数。
* 新增两个BOSS路线支持**重拳出击鸭**、**霜夜巡天灵主**
### 2025.08.23 V0.3
* fix 修复奖励未领取成功提前传送的bug
* fix 修复奖励未领取成功仍然会计数已完成的bug
* update 改了一下boss列表展示的排版
### 2025.08.21
* fix 截图资源未释放
* update 地图追踪文件
### 2025.08.21 V0.1
* 初版发布

View File

@@ -1,107 +1,107 @@
{
"info": {
"authors": [],
"bgi_version": "0.45.0",
"description": "",
"enable_monster_loot_split": false,
"last_modified_time": 1755828864835,
"map_match_method": "",
"map_name": "Teyvat",
"name": "未命名路径",
"tags": [],
"type": "collect",
"version": "1.0"
},
"positions": [
{
"action": "",
"action_params": "",
"id": 1,
"move_mode": "walk",
"type": "teleport",
"x": 2289.0078125,
"y": -1197.31640625
},
{
"action": "combat_script",
"action_params": "wait(1.5)",
"id": 2,
"move_mode": "walk",
"type": "target",
"x": 2270.921875,
"y": -1181.94580078125
},
{
"action": "",
"action_params": "",
"id": 3,
"move_mode": "walk",
"type": "target",
"x": 2266.435546875,
"y": -1173.31787109375
},
{
"action": "",
"action_params": "",
"id": 4,
"move_mode": "walk",
"type": "path",
"x": 2238.7578125,
"y": -1184.73046875
},
{
"action": "",
"action_params": "",
"id": 5,
"move_mode": "fly",
"type": "path",
"x": 2215.11328125,
"y": -1197.294921875
},
{
"action": "",
"action_params": "",
"id": 6,
"move_mode": "walk",
"type": "path",
"x": 2191.3359375,
"y": -1214.46533203125
},
{
"action": "",
"action_params": "",
"id": 7,
"move_mode": "walk",
"type": "path",
"x": 2119.0048828125,
"y": -1231.728515625
},
{
"action": "",
"action_params": "",
"id": 8,
"move_mode": "walk",
"type": "path",
"x": 2117.5,
"y": -1254.09521484375
},
{
"action": "stop_flying",
"action_params": "",
"id": 9,
"move_mode": "fly",
"type": "path",
"x": 2114.4345703125,
"y": -1308.1357421875
},
{
"action": "",
"action_params": "",
"id": 10,
"move_mode": "run",
"type": "path",
"x": 2110.509765625,
"y": -1331.59130859375
}
]
{
"info": {
"authors": [],
"bgi_version": "0.45.0",
"description": "",
"enable_monster_loot_split": false,
"last_modified_time": 1755828864835,
"map_match_method": "",
"map_name": "Teyvat",
"name": "未命名路径",
"tags": [],
"type": "collect",
"version": "1.0"
},
"positions": [
{
"action": "",
"action_params": "",
"id": 1,
"move_mode": "walk",
"type": "teleport",
"x": 2289.0078125,
"y": -1197.31640625
},
{
"action": "combat_script",
"action_params": "wait(1.5)",
"id": 2,
"move_mode": "walk",
"type": "target",
"x": 2270.921875,
"y": -1181.94580078125
},
{
"action": "",
"action_params": "",
"id": 3,
"move_mode": "walk",
"type": "target",
"x": 2266.435546875,
"y": -1173.31787109375
},
{
"action": "",
"action_params": "",
"id": 4,
"move_mode": "walk",
"type": "path",
"x": 2238.7578125,
"y": -1184.73046875
},
{
"action": "",
"action_params": "",
"id": 5,
"move_mode": "fly",
"type": "path",
"x": 2215.11328125,
"y": -1197.294921875
},
{
"action": "",
"action_params": "",
"id": 6,
"move_mode": "walk",
"type": "path",
"x": 2191.3359375,
"y": -1214.46533203125
},
{
"action": "",
"action_params": "",
"id": 7,
"move_mode": "walk",
"type": "path",
"x": 2119.0048828125,
"y": -1231.728515625
},
{
"action": "",
"action_params": "",
"id": 8,
"move_mode": "walk",
"type": "path",
"x": 2117.5,
"y": -1254.09521484375
},
{
"action": "stop_flying",
"action_params": "",
"id": 9,
"move_mode": "fly",
"type": "path",
"x": 2114.4345703125,
"y": -1308.1357421875
},
{
"action": "",
"action_params": "",
"id": 10,
"move_mode": "run",
"type": "path",
"x": 2110.509765625,
"y": -1331.59130859375
}
]
}

View File

@@ -1,57 +1,57 @@
{
"info": {
"name": "千年珍珠骏麟前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753791394637,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 4851.81982421875,
"y": 4802.15673828125,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 4837.4677734375,
"y": 4798.37158203125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 4780.36767578125,
"y": 4788.42822265625,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 4,
"x": 4766.72998046875,
"y": 4786.763671875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
{
"info": {
"name": "千年珍珠骏麟前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753791394637,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 4851.81982421875,
"y": 4802.15673828125,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 4837.4677734375,
"y": 4798.37158203125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 4780.36767578125,
"y": 4788.42822265625,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 4,
"x": 4766.72998046875,
"y": 4786.763671875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -1,102 +1,102 @@
{
"info": {
"name": "半永恒统辖矩阵前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753788953823,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 5150.287109375,
"y": -2787.1591796875,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 5167.76123046875,
"y": -2787.11328125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 5192.0302734375,
"y": -2787.052734375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 5206.9306640625,
"y": -2786.9921875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 5215.41357421875,
"y": -2787.46875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 5234.9130859375,
"y": -2787.0947265625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 5243.3876953125,
"y": -2793.0263671875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": 5254.2939453125,
"y": -2788.7001953125,
"type": "path",
"move_mode": "jump",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": 5269.052734375,
"y": -2787.484375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
{
"info": {
"name": "半永恒统辖矩阵前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753788953823,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 5150.287109375,
"y": -2787.1591796875,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 5167.76123046875,
"y": -2787.11328125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 5192.0302734375,
"y": -2787.052734375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 5206.9306640625,
"y": -2786.9921875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 5215.41357421875,
"y": -2787.46875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 5234.9130859375,
"y": -2787.0947265625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 5243.3876953125,
"y": -2793.0263671875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": 5254.2939453125,
"y": -2788.7001953125,
"type": "path",
"move_mode": "jump",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": 5269.052734375,
"y": -2787.484375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -1,57 +1,57 @@
{
"info": {
"name": "前往古岩龙蜥",
"type": "collect",
"author": "柒叶子",
"version": "1.0",
"description": "前往古岩龙蜥",
"bgi_version": "0.42.3"
},
"positions": [
{
"id": 1,
"x": 1669.650390625,
"y": 341.86962890625,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 1674.890625,
"y": 345.15625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 1573.65234375,
"y": 254.67041015625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 1533.3095703125,
"y": 229.28857421875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 1485.296875,
"y": 208.9697265625,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
}
]
{
"info": {
"name": "前往古岩龙蜥",
"type": "collect",
"author": "柒叶子",
"version": "1.0",
"description": "前往古岩龙蜥",
"bgi_version": "0.42.3"
},
"positions": [
{
"id": 1,
"x": 1669.650390625,
"y": 341.86962890625,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 1674.890625,
"y": 345.15625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 1573.65234375,
"y": 254.67041015625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 1533.3095703125,
"y": 229.28857421875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 1485.296875,
"y": 208.9697265625,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
}
]
}

View File

@@ -0,0 +1,58 @@
{
"info": {
"authors": [
{
"links": "https://github.com/1004452714",
"name": "DarkFlameMaster"
}
],
"bgi_version": "0.45.0",
"description": "",
"enable_monster_loot_split": false,
"last_modified_time": 1775791356948,
"map_match_method": "SIFT",
"map_name": "Teyvat",
"name": "守望者・堕天",
"tags": [],
"type": "collect",
"version": "1.0"
},
"positions": [
{
"action": "",
"action_params": "",
"id": 1,
"move_mode": "fly",
"type": "teleport",
"x": -227.951171875,
"y": 4109.8828125
},
{
"action": "",
"action_params": "",
"id": 2,
"move_mode": "fly",
"type": "path",
"x": -229.71484375,
"y": 4114.32080078125
},
{
"action": "stop_flying",
"action_params": "",
"id": 3,
"move_mode": "walk",
"type": "path",
"x": -250.228515625,
"y": 4167.486328125
},
{
"action": "",
"action_params": "",
"id": 4,
"move_mode": "run",
"type": "path",
"x": -261.037109375,
"y": 4195.42529296875
}
]
}

View File

@@ -1,84 +1,84 @@
{
"info": {
"name": "实验性场力发生装置前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753791496368,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 4144.181640625,
"y": 4423.85693359375,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 4137.7529296875,
"y": 4420.017578125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 4132.763671875,
"y": 4396.77880859375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 4159.6943359375,
"y": 4373.40283203125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 4169.7021484375,
"y": 4349.689453125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 4150.146484375,
"y": 4345.55419921875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 4131.76904296875,
"y": 4342.962890625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
{
"info": {
"name": "实验性场力发生装置前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753791496368,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 4144.181640625,
"y": 4423.85693359375,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 4137.7529296875,
"y": 4420.017578125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 4132.763671875,
"y": 4396.77880859375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 4159.6943359375,
"y": 4373.40283203125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 4169.7021484375,
"y": 4349.689453125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 4150.146484375,
"y": 4345.55419921875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 4131.76904296875,
"y": 4342.962890625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -1,75 +1,75 @@
{
"info": {
"name": "急冻树前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753707716845,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": -1638.53125,
"y": 2153.89794921875,
"action_params": ""
},
{
"id": 2,
"x": -1641.4697265625,
"y": 2151.00634765625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": -1649.2578125,
"y": 2128.595703125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": -1654.67578125,
"y": 2117.858154296875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": -1651.724609375,
"y": 2107.5087890625,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 6,
"x": -1665.9697265625,
"y": 2100.76171875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
{
"info": {
"name": "急冻树前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753707716845,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": -1638.53125,
"y": 2153.89794921875,
"action_params": ""
},
{
"id": 2,
"x": -1641.4697265625,
"y": 2151.00634765625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": -1649.2578125,
"y": 2128.595703125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": -1654.67578125,
"y": 2117.858154296875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": -1651.724609375,
"y": 2107.5087890625,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 6,
"x": -1665.9697265625,
"y": 2100.76171875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -1,75 +1,75 @@
{
"info": {
"name": "恒常机关阵列前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753787243395,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": -4481.716796875,
"y": -2169.716796875,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": -4484.8984375,
"y": -2169.53125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": -4489.75,
"y": -2166.4501953125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": -4498.640625,
"y": -2160.86328125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": -4492.728515625,
"y": -2144.09765625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": -4471.73828125,
"y": -2128.3017578125,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
}
]
{
"info": {
"name": "恒常机关阵列前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753787243395,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": -4481.716796875,
"y": -2169.716796875,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": -4484.8984375,
"y": -2169.53125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": -4489.75,
"y": -2166.4501953125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": -4498.640625,
"y": -2160.86328125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": -4492.728515625,
"y": -2144.09765625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": -4471.73828125,
"y": -2128.3017578125,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
}
]
}

View File

@@ -1,57 +1,57 @@
{
"info": {
"name": "掣电树前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753788008539,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 2080.2138671875,
"y": 107.275390625,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 2086.857421875,
"y": 95.4287109375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 2110.9052734375,
"y": 63.419921875,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 4,
"x": 2123.095703125,
"y": 49.15185546875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
{
"info": {
"name": "掣电树前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753788008539,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 2080.2138671875,
"y": 107.275390625,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 2086.857421875,
"y": 95.4287109375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 2110.9052734375,
"y": 63.419921875,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 4,
"x": 2123.095703125,
"y": 49.15185546875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -1,120 +1,120 @@
{
"info": {
"name": "无相之水前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753787792567,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": -765.5771484375,
"y": -3557.05078125,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": -771.0966796875,
"y": -3562.517578125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": -829.66015625,
"y": -3615.818359375,
"type": "path",
"move_mode": "fly",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": -865.271484375,
"y": -3620.0400390625,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": "1500"
},
{
"id": 5,
"x": -868.1953125,
"y": -3604.36328125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": -872.5732421875,
"y": -3582.705078125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": -880.25390625,
"y": -3570.9833984375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": -892.919921875,
"y": -3565.12890625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": -916.8203125,
"y": -3558.5556640625,
"type": "path",
"move_mode": "fly",
"action": "",
"action_params": ""
},
{
"id": 10,
"x": -932.3837890625,
"y": -3555.0947265625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 11,
"x": -960.7353515625,
"y": -3551.0908203125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
{
"info": {
"name": "无相之水前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753787792567,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": -765.5771484375,
"y": -3557.05078125,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": -771.0966796875,
"y": -3562.517578125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": -829.66015625,
"y": -3615.818359375,
"type": "path",
"move_mode": "fly",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": -865.271484375,
"y": -3620.0400390625,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": "1500"
},
{
"id": 5,
"x": -868.1953125,
"y": -3604.36328125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": -872.5732421875,
"y": -3582.705078125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": -880.25390625,
"y": -3570.9833984375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": -892.919921875,
"y": -3565.12890625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": -916.8203125,
"y": -3558.5556640625,
"type": "path",
"move_mode": "fly",
"action": "",
"action_params": ""
},
{
"id": 10,
"x": -932.3837890625,
"y": -3555.0947265625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 11,
"x": -960.7353515625,
"y": -3551.0908203125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -1,75 +1,75 @@
{
"info": {
"name": "无相之火前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753787370971,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": -3233.89453125,
"y": -3155.427734375,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": -3224.46484375,
"y": -3113.1689453125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": -3201.7431640625,
"y": -3095.697265625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": -3183.052734375,
"y": -3082.67578125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": -3180.9990234375,
"y": -3064.708984375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": -3179.1962890625,
"y": -3046.359375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
{
"info": {
"name": "无相之火前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753787370971,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": -3233.89453125,
"y": -3155.427734375,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": -3224.46484375,
"y": -3113.1689453125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": -3201.7431640625,
"y": -3095.697265625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": -3183.052734375,
"y": -3082.67578125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": -3180.9990234375,
"y": -3064.708984375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": -3179.1962890625,
"y": -3046.359375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -1,93 +1,93 @@
{
"info": {
"name": "无相之草前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753788793031,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 4036.58203125,
"y": -2464.6328125,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 4032.9716796875,
"y": -2476.08203125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 4020.458984375,
"y": -2489.951171875,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": "1000"
},
{
"id": 4,
"x": 4004.5302734375,
"y": -2468.169921875,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
"action_params": ""
},
{
"id": 5,
"x": 4003.3828125,
"y": -2441.16796875,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
"action_params": ""
},
{
"id": 6,
"x": 3986.103515625,
"y": -2428.77734375,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
"action_params": ""
},
{
"id": 7,
"x": 3975.9375,
"y": -2412.4384765625,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
"action_params": ""
},
{
"id": 8,
"x": 3902.85546875,
"y": -2437.8798828125,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
}
]
{
"info": {
"name": "无相之草前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753788793031,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 4036.58203125,
"y": -2464.6328125,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 4032.9716796875,
"y": -2476.08203125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 4020.458984375,
"y": -2489.951171875,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": "1000"
},
{
"id": 4,
"x": 4004.5302734375,
"y": -2468.169921875,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
"action_params": ""
},
{
"id": 5,
"x": 4003.3828125,
"y": -2441.16796875,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
"action_params": ""
},
{
"id": 6,
"x": 3986.103515625,
"y": -2428.77734375,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
"action_params": ""
},
{
"id": 7,
"x": 3975.9375,
"y": -2412.4384765625,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
"action_params": ""
},
{
"id": 8,
"x": 3902.85546875,
"y": -2437.8798828125,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
}
]
}

View File

@@ -1,84 +1,84 @@
{
"info": {
"name": "无相之雷前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753708525378,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": -1867.1708984375,
"y": 1331.25390625,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": -1880.634765625,
"y": 1332.6240234375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": -1886.341796875,
"y": 1315.49609375,
"type": "path",
"move_mode": "jump",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": -1897.9521484375,
"y": 1312.71728515625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": -1906.6083984375,
"y": 1310.859375,
"type": "path",
"move_mode": "jump",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": -1925.8857421875,
"y": 1309.81689453125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": -1939.40234375,
"y": 1308.43408203125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
{
"info": {
"name": "无相之雷前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753708525378,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": -1867.1708984375,
"y": 1331.25390625,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": -1880.634765625,
"y": 1332.6240234375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": -1886.341796875,
"y": 1315.49609375,
"type": "path",
"move_mode": "jump",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": -1897.9521484375,
"y": 1312.71728515625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": -1906.6083984375,
"y": 1310.859375,
"type": "path",
"move_mode": "jump",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": -1925.8857421875,
"y": 1309.81689453125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": -1939.40234375,
"y": 1308.43408203125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -1,138 +1,138 @@
{
"info": {
"name": "歌裴莉娅的葬送前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753791762596,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 3602.185546875,
"y": 3529.386474609375,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 3617.0234375,
"y": 3515.871337890625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 3633.8837890625,
"y": 3500.517578125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 3646.794921875,
"y": 3487.844482421875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 3661.6240234375,
"y": 3472.979248046875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 3685.3115234375,
"y": 3472.762939453125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 3699.0478515625,
"y": 3486.41015625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": 3712.1982421875,
"y": 3499.31689453125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": 3726.9365234375,
"y": 3513.27685546875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 10,
"x": 3742.3486328125,
"y": 3528.9443359375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 11,
"x": 3758.2509765625,
"y": 3545.006103515625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 12,
"x": 3773.4033203125,
"y": 3560.517822265625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 13,
"x": 3787.8408203125,
"y": 3571.67578125,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
"action_params": "keypress(F),wait(3),click,wait(2),keypress(F),wait(6)"
}
]
{
"info": {
"name": "歌裴莉娅的葬送前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753791762596,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 3602.185546875,
"y": 3529.386474609375,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 3617.0234375,
"y": 3515.871337890625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 3633.8837890625,
"y": 3500.517578125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 3646.794921875,
"y": 3487.844482421875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 3661.6240234375,
"y": 3472.979248046875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 3685.3115234375,
"y": 3472.762939453125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 3699.0478515625,
"y": 3486.41015625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": 3712.1982421875,
"y": 3499.31689453125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": 3726.9365234375,
"y": 3513.27685546875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 10,
"x": 3742.3486328125,
"y": 3528.9443359375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 11,
"x": 3758.2509765625,
"y": 3545.006103515625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 12,
"x": 3773.4033203125,
"y": 3560.517822265625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 13,
"x": 3787.8408203125,
"y": 3571.67578125,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
"action_params": "keypress(F),wait(3),click,wait(2),keypress(F),wait(6)"
}
]
}

View File

@@ -1,43 +1,43 @@
{
"info": {
"name": "冰封组曲快速前往",
"type": "collect",
"authors": [],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1755781802879,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"x": 3805.1650390625,
"y": 3592.691650390625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 3787.48046875,
"y": 3572.779541015625,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},{
"id": 13,
"x": 3787.8408203125,
"y": 3571.67578125,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
"action_params": "keypress(F),wait(3),click,wait(2),keypress(F),wait(6)"
}
]
{
"info": {
"name": "冰封组曲快速前往",
"type": "collect",
"authors": [],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1755781802879,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"x": 3805.1650390625,
"y": 3592.691650390625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 3787.48046875,
"y": 3572.779541015625,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},{
"id": 13,
"x": 3787.8408203125,
"y": 3571.67578125,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
"action_params": "keypress(F),wait(3),click,wait(2),keypress(F),wait(6)"
}
]
}

View File

@@ -1,57 +1,57 @@
{
"info": {
"name": "水形幻人前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753791583765,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 5183.00537109375,
"y": 3375.525146484375,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 5206.87890625,
"y": 3383.91845703125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 5221.623046875,
"y": 3389.093017578125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 5239.80322265625,
"y": 3397.223388671875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
{
"info": {
"name": "水形幻人前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753791583765,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 5183.00537109375,
"y": 3375.525146484375,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 5206.87890625,
"y": 3383.91845703125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 5221.623046875,
"y": 3389.093017578125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 5239.80322265625,
"y": 3397.223388671875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -1,147 +1,147 @@
{
"info": {
"name": "深罪浸礼者前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753789336063,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 6817.49609375,
"y": 383.68896484375,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 6745.57421875,
"y": 370.45361328125,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": "1800"
},
{
"id": 3,
"x": 6761.9853515625,
"y": 375.31298828125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 6779.85546875,
"y": 380.6865234375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 6790.7373046875,
"y": 391.13427734375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 6798.34228515625,
"y": 398.11328125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 6816.609375,
"y": 405.6845703125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": 6827.55029296875,
"y": 409.98974609375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": 6836.47412109375,
"y": 424.748046875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 10,
"x": 6842.34814453125,
"y": 446.39990234375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 11,
"x": 6851.697265625,
"y": 462.83251953125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 12,
"x": 6854.1611328125,
"y": 476.1376953125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 13,
"x": 6858.7880859375,
"y": 507.1513671875,
"type": "path",
"move_mode": "fly",
"action": "",
"action_params": ""
},
{
"id": 14,
"x": 6850.39697265625,
"y": 542.9169921875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
{
"info": {
"name": "深罪浸礼者前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753789336063,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 6817.49609375,
"y": 383.68896484375,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 6745.57421875,
"y": 370.45361328125,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": "1800"
},
{
"id": 3,
"x": 6761.9853515625,
"y": 375.31298828125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 6779.85546875,
"y": 380.6865234375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 6790.7373046875,
"y": 391.13427734375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 6798.34228515625,
"y": 398.11328125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 6816.609375,
"y": 405.6845703125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": 6827.55029296875,
"y": 409.98974609375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": 6836.47412109375,
"y": 424.748046875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 10,
"x": 6842.34814453125,
"y": 446.39990234375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 11,
"x": 6851.697265625,
"y": 462.83251953125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 12,
"x": 6854.1611328125,
"y": 476.1376953125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 13,
"x": 6858.7880859375,
"y": 507.1513671875,
"type": "path",
"move_mode": "fly",
"action": "",
"action_params": ""
},
{
"id": 14,
"x": 6850.39697265625,
"y": 542.9169921875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -1,48 +1,48 @@
{
"info": {
"name": "深邃摹结株前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753792527051,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 9345.50390625,
"y": -1340.40771484375,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 9336.6083984375,
"y": -1310.02734375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 9328.75,
"y": -1281.68017578125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
{
"info": {
"name": "深邃摹结株前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753792527051,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 9345.50390625,
"y": -1340.40771484375,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 9336.6083984375,
"y": -1310.02734375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 9328.75,
"y": -1281.68017578125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -0,0 +1,58 @@
{
"info": {
"authors": [
{
"links": "https://github.com/1004452714",
"name": "DarkFlameMaster"
}
],
"bgi_version": "0.45.0",
"description": "",
"enable_monster_loot_split": false,
"last_modified_time": 1775700388310,
"map_match_method": "SIFT",
"map_name": "Teyvat",
"name": "深黯魇语之主前往",
"tags": [],
"type": "collect",
"version": "1.0"
},
"positions": [
{
"action": "",
"action_params": "",
"id": 1,
"move_mode": "fly",
"type": "teleport",
"x": 10285.056640625,
"y": 6355.1962890625
},
{
"action": "",
"action_params": "",
"id": 2,
"move_mode": "fly",
"type": "path",
"x": 10293.6328125,
"y": 6361.96728515625
},
{
"action": "stop_flying",
"action_params": "",
"id": 3,
"move_mode": "fly",
"type": "path",
"x": 10335.369140625,
"y": 6393.92578125
},
{
"action": "",
"action_params": "",
"id": 4,
"move_mode": "run",
"type": "path",
"x": 10360.021484375,
"y": 6406.78564453125
}
]
}

View File

@@ -1,66 +1,66 @@
{
"info": {
"name": "灵觉隐修的迷者前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753792615054,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 9595.2724609375,
"y": -1857.921875,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 9590.01171875,
"y": -1861.314453125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 9574.6259765625,
"y": -1865.4580078125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 9559.29296875,
"y": -1883.2001953125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 9532.3603515625,
"y": -1903.8388671875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
{
"info": {
"name": "灵觉隐修的迷者前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753792615054,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 9595.2724609375,
"y": -1857.921875,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 9590.01171875,
"y": -1861.314453125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 9574.6259765625,
"y": -1865.4580078125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 9559.29296875,
"y": -1883.2001953125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 9532.3603515625,
"y": -1903.8388671875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -1,48 +1,48 @@
{
"info": {
"name": "熔岩辉龙像前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753792755970,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 9884.259765625,
"y": -2216.931640625,
"type": "teleport",
"move_mode": "walk",
"action": "force_tp",
"action_params": ""
},
{
"id": 2,
"x": 9894.6767578125,
"y": -2228.0947265625,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 3,
"x": 9914.0439453125,
"y": -2248.6640625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
{
"info": {
"name": "熔岩辉龙像前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753792755970,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 9884.259765625,
"y": -2216.931640625,
"type": "teleport",
"move_mode": "walk",
"action": "force_tp",
"action_params": ""
},
{
"id": 2,
"x": 9894.6767578125,
"y": -2228.0947265625,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 3,
"x": 9914.0439453125,
"y": -2248.6640625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -1,102 +1,102 @@
{
"info": {
"name": "爆炎树前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753711249019,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 837.4912109375,
"y": 235.0888671875,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 852.419921875,
"y": 228.279296875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 900.30859375,
"y": 228.51904296875,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 4,
"x": 914.7392578125,
"y": 238.0849609375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 933.87890625,
"y": 240.2333984375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 950.39453125,
"y": 228.48388671875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 955.4921875,
"y": 212.90380859375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": 955.54296875,
"y": 187.16552734375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": 954.6064453125,
"y": 154.91064453125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
{
"info": {
"name": "爆炎树前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753711249019,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 837.4912109375,
"y": 235.0888671875,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 852.419921875,
"y": 228.279296875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 900.30859375,
"y": 228.51904296875,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 4,
"x": 914.7392578125,
"y": 238.0849609375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 933.87890625,
"y": 240.2333984375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 950.39453125,
"y": 228.48388671875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 955.4921875,
"y": 212.90380859375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": 955.54296875,
"y": 187.16552734375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": 954.6064453125,
"y": 154.91064453125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -1,138 +1,138 @@
{
"info": {
"name": "科培琉司的劫罚前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753791900320,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 3602.185546875,
"y": 3529.386474609375,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 3617.0234375,
"y": 3515.871337890625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 3633.8837890625,
"y": 3500.517578125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 3646.794921875,
"y": 3487.844482421875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 3661.6240234375,
"y": 3472.979248046875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 3685.3115234375,
"y": 3472.762939453125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 3699.0478515625,
"y": 3486.41015625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": 3712.1982421875,
"y": 3499.31689453125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": 3726.9365234375,
"y": 3513.27685546875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 10,
"x": 3742.3486328125,
"y": 3528.9443359375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 11,
"x": 3758.2509765625,
"y": 3545.006103515625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 12,
"x": 3773.4033203125,
"y": 3560.517822265625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 13,
"x": 3787.8408203125,
"y": 3571.67578125,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
"action_params": "keypress(F),wait(3),click,wait(2),keypress(S),wait(1),keypress(F),wait(6)"
}
]
{
"info": {
"name": "科培琉司的劫罚前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753791900320,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 3602.185546875,
"y": 3529.386474609375,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 3617.0234375,
"y": 3515.871337890625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 3633.8837890625,
"y": 3500.517578125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 3646.794921875,
"y": 3487.844482421875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 3661.6240234375,
"y": 3472.979248046875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 3685.3115234375,
"y": 3472.762939453125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 3699.0478515625,
"y": 3486.41015625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": 3712.1982421875,
"y": 3499.31689453125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": 3726.9365234375,
"y": 3513.27685546875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 10,
"x": 3742.3486328125,
"y": 3528.9443359375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 11,
"x": 3758.2509765625,
"y": 3545.006103515625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 12,
"x": 3773.4033203125,
"y": 3560.517822265625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 13,
"x": 3787.8408203125,
"y": 3571.67578125,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
"action_params": "keypress(F),wait(3),click,wait(2),keypress(S),wait(1),keypress(F),wait(6)"
}
]
}

View File

@@ -1,44 +1,44 @@
{
"info": {
"name": "冰封组曲快速前往",
"type": "collect",
"authors": [],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1755781802879,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"x": 3805.1650390625,
"y": 3592.691650390625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 3787.48046875,
"y": 3572.779541015625,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 13,
"x": 3787.8408203125,
"y": 3571.67578125,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
"action_params": "keypress(F),wait(3),click,wait(2),keypress(S),wait(1),keypress(F),wait(6)"
}
]
{
"info": {
"name": "冰封组曲快速前往",
"type": "collect",
"authors": [],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1755781802879,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"x": 3805.1650390625,
"y": 3592.691650390625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 3787.48046875,
"y": 3572.779541015625,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 13,
"x": 3787.8408203125,
"y": 3571.67578125,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
"action_params": "keypress(F),wait(3),click,wait(2),keypress(S),wait(1),keypress(F),wait(6)"
}
]
}

View File

@@ -1,48 +1,48 @@
{
"info": {
"name": "秘源机兵·构型械前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753792234740,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 8346.9765625,
"y": -2673.501953125,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 8339.2861328125,
"y": -2714.384765625,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 3,
"x": 8335.357421875,
"y": -2738.8916015625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
{
"info": {
"name": "秘源机兵·构型械前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753792234740,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 8346.9765625,
"y": -2673.501953125,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 8339.2861328125,
"y": -2714.384765625,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 3,
"x": 8335.357421875,
"y": -2738.8916015625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -1,49 +1,49 @@
{
"info": {
"name": "秘源机兵·统御械前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754186646369,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": 11953.5166015625,
"y": -3641.2392578125,
"action_params": ""
},
{
"id": 2,
"x": 11962.9072265625,
"y": -3683.81640625,
"type": "path",
"move_mode": "fly",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 11967.5966796875,
"y": -3718.607421875,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
}
]
{
"info": {
"name": "秘源机兵·统御械前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754186646369,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": 11953.5166015625,
"y": -3641.2392578125,
"action_params": ""
},
{
"id": 2,
"x": 11962.9072265625,
"y": -3683.81640625,
"type": "path",
"move_mode": "fly",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 11967.5966796875,
"y": -3718.607421875,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
}
]
}

View File

@@ -1,125 +1,125 @@
{
"info": {
"name": "纯水精灵前往",
"type": "collect",
"authors": [],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1755790741507,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"x": 283.8291015625,
"y": 1668.5810546875,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": 288.32421875,
"y": 1672.90087890625,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 3,
"x": 290.20703125,
"y": 1678.84716796875,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 4,
"x": 289.1533203125,
"y": 1685.48388671875,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 5,
"x": 286.9931640625,
"y": 1694.46435546875,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 6,
"x": 283.7001953125,
"y": 1710.96728515625,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 7,
"x": 281.958984375,
"y": 1727.70361328125,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 8,
"x": 281.6826171875,
"y": 1767.6513671875,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.3),keypress(F)",
"type": "target"
},
{
"id": 9,
"x": 256.720703125,
"y": 1783.6162109375,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.3),keypress(F)",
"type": "target"
},
{
"id": 10,
"x": 270.623046875,
"y": 1807.337890625,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.3),keypress(F)",
"type": "target"
},
{
"id": 11,
"x": 297.2255859375,
"y": 1793.3134765625,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.3),keypress(F)",
"type": "target"
},
{
"id": 12,
"x": 276.962890625,
"y": 1788.15185546875,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
}
]
{
"info": {
"name": "纯水精灵前往",
"type": "collect",
"authors": [],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1755790741507,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"x": 283.8291015625,
"y": 1668.5810546875,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": 288.32421875,
"y": 1672.90087890625,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 3,
"x": 290.20703125,
"y": 1678.84716796875,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 4,
"x": 289.1533203125,
"y": 1685.48388671875,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 5,
"x": 286.9931640625,
"y": 1694.46435546875,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 6,
"x": 283.7001953125,
"y": 1710.96728515625,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 7,
"x": 281.958984375,
"y": 1727.70361328125,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 8,
"x": 281.6826171875,
"y": 1767.6513671875,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.3),keypress(F)",
"type": "target"
},
{
"id": 9,
"x": 256.720703125,
"y": 1783.6162109375,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.3),keypress(F)",
"type": "target"
},
{
"id": 10,
"x": 270.623046875,
"y": 1807.337890625,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.3),keypress(F)",
"type": "target"
},
{
"id": 11,
"x": 297.2255859375,
"y": 1793.3134765625,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.3),keypress(F)",
"type": "target"
},
{
"id": 12,
"x": 276.962890625,
"y": 1788.15185546875,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
}
]
}

View File

@@ -1,71 +1,71 @@
{
"info": {
"name": "纯水精灵快速前往",
"type": "collect",
"authors": [],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1755778295567,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"action": "",
"move_mode": "walk",
"type": "path",
"x": 276.962890625,
"y": 1788.15185546875,
"action_params": ""
},
{
"id": 2,
"x": 281.9873046875,
"y": 1769.00146484375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 281.6826171875,
"y": 1767.6513671875,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5),keypress(F)"
},
{
"id": 4,
"x": 297.2255859375,
"y": 1793.3134765625,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5),keypress(F)"
},
{
"id": 5,
"x": 270.623046875,
"y": 1807.337890625,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5),keypress(F)"
},
{
"id": 6,
"x": 256.720703125,
"y": 1783.6162109375,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5),keypress(F)"
}
]
{
"info": {
"name": "纯水精灵快速前往",
"type": "collect",
"authors": [],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1755778295567,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"action": "",
"move_mode": "walk",
"type": "path",
"x": 276.962890625,
"y": 1788.15185546875,
"action_params": ""
},
{
"id": 2,
"x": 281.9873046875,
"y": 1769.00146484375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 281.6826171875,
"y": 1767.6513671875,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5),keypress(F)"
},
{
"id": 4,
"x": 297.2255859375,
"y": 1793.3134765625,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5),keypress(F)"
},
{
"id": 5,
"x": 270.623046875,
"y": 1807.337890625,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5),keypress(F)"
},
{
"id": 6,
"x": 256.720703125,
"y": 1783.6162109375,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5),keypress(F)"
}
]
}

View File

@@ -1,39 +1,39 @@
{
"info": {
"name": "翠翎恐蕈前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753788482153,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 3926.216796875,
"y": -163.984375,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 3885.845703125,
"y": -110.1142578125,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
}
]
{
"info": {
"name": "翠翎恐蕈前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753788482153,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 3926.216796875,
"y": -163.984375,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 3885.845703125,
"y": -110.1142578125,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
}
]
}

View File

@@ -0,0 +1,31 @@
{
"info": {
"authors": [
{
"links": "https://github.com/1004452714",
"name": "DarkFlameMaster"
}
],
"bgi_version": "0.45.0",
"description": "",
"enable_monster_loot_split": false,
"last_modified_time": 1775787047367,
"map_match_method": "SIFT",
"map_name": "Teyvat",
"name": "蕴光月守宫",
"tags": [],
"type": "collect",
"version": "1.0"
},
"positions": [
{
"action": "force_tp",
"action_params": "",
"id": 1,
"move_mode": "walk",
"type": "teleport",
"x": 9664.5869140625,
"y": 5690.94580078125
}
]
}

View File

@@ -0,0 +1 @@
{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":100},{"type":0,"keyCode":160,"mouseX":0,"mouseY":0,"time":3516},{"type":1,"keyCode":160,"mouseX":0,"mouseY":0,"time":3984},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":4391},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":4531},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":5062},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":5203},{"type":0,"keyCode":160,"mouseX":0,"mouseY":0,"time":8859},{"type":1,"keyCode":160,"mouseX":0,"mouseY":0,"time":9328},{"type":0,"keyCode":160,"mouseX":0,"mouseY":0,"time":12781},{"type":1,"keyCode":160,"mouseX":0,"mouseY":0,"time":13094},{"type":0,"keyCode":160,"mouseX":0,"mouseY":0,"time":13828},{"type":1,"keyCode":160,"mouseX":0,"mouseY":0,"time":14187},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":12984}],"info":{"name":"","description":"","x":319,"y":192,"width":1920,"height":1080,"recordDpi":1}}

View File

@@ -0,0 +1,31 @@
{
"info": {
"authors": [
{
"links": "",
"name": "少年"
}
],
"bgi_version": "0.45.0",
"description": "",
"enable_monster_loot_split": false,
"last_modified_time": 1775793118383,
"map_match_method": "SIFT",
"map_name": "Teyvat",
"name": "蕴光月幻蝶",
"tags": [],
"type": "collect",
"version": "1.0"
},
"positions": [
{
"action": "force_tp",
"action_params": "",
"id": 1,
"move_mode": "walk",
"type": "teleport",
"x": 9265.14453125,
"y": 2474.61669921875
}
]
}

View File

@@ -0,0 +1 @@
{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":532},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":1797},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":2328},{"type":0,"keyCode":160,"mouseX":0,"mouseY":0,"time":2563},{"type":1,"keyCode":160,"mouseX":0,"mouseY":0,"time":3297},{"type":0,"keyCode":160,"mouseX":0,"mouseY":0,"time":3657},{"type":1,"keyCode":160,"mouseX":0,"mouseY":0,"time":4375},{"type":0,"keyCode":160,"mouseX":0,"mouseY":0,"time":4703},{"type":1,"keyCode":160,"mouseX":0,"mouseY":0,"time":5141},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":5813},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":6235},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":6610}],"info":{"name":"","description":"","x":557,"y":57,"width":1920,"height":1080,"recordDpi":1}}

View File

@@ -1,48 +1,48 @@
{
"info": {
"name": "贪食匿叶龙山王前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753792348393,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 8431.9306640625,
"y": -1813.763671875,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 8495.365234375,
"y": -1834.43408203125,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 3,
"x": 8518.2822265625,
"y": -1847.02880859375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
{
"info": {
"name": "贪食匿叶龙山王前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753792348393,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 8431.9306640625,
"y": -1813.763671875,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 8495.365234375,
"y": -1834.43408203125,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 3,
"x": 8518.2822265625,
"y": -1847.02880859375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -1,26 +1,31 @@
{
{
"info": {
"authors": [],
"authors": [
{
"links": "https://github.com/1004452714",
"name": "DarkFlameMaster"
}
],
"bgi_version": "0.45.0",
"description": "",
"enable_monster_loot_split": false,
"last_modified_time": 1762999379940,
"last_modified_time": 1775791925697,
"map_match_method": "",
"map_name": "Teyvat",
"name": "霜夜巡天灵主-打完重新靠近",
"name": "超重型陆巡舰·机动战垒",
"tags": [],
"type": "collect",
"version": "1.0"
},
"positions": [
{
"action": "",
"action": "force_tp",
"action_params": "",
"id": 1,
"move_mode": "walk",
"type": "path",
"x": 10761.2197265625,
"y": 2319.93359375
"type": "teleport",
"x": 9483.109375,
"y": 3347.98681640625
}
]
}

View File

@@ -0,0 +1 @@
{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":422},{"type":0,"keyCode":160,"mouseX":0,"mouseY":0,"time":906},{"type":1,"keyCode":160,"mouseX":0,"mouseY":0,"time":1797},{"type":0,"keyCode":160,"mouseX":0,"mouseY":0,"time":2156},{"type":1,"keyCode":160,"mouseX":0,"mouseY":0,"time":2938},{"type":0,"keyCode":160,"mouseX":0,"mouseY":0,"time":3250},{"type":1,"keyCode":160,"mouseX":0,"mouseY":0,"time":4016},{"type":0,"keyCode":160,"mouseX":0,"mouseY":0,"time":4375},{"type":1,"keyCode":160,"mouseX":0,"mouseY":0,"time":5141},{"type":0,"keyCode":160,"mouseX":0,"mouseY":0,"time":6672},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":9860},{"type":1,"keyCode":160,"mouseX":0,"mouseY":0,"time":9875}],"info":{"name":"","description":"","x":557,"y":57,"width":1920,"height":1080,"recordDpi":1}}

View File

@@ -1,57 +1,57 @@
{
"info": {
"name": "遗迹巨蛇前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "TheChasm",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753793052904,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": 887.7176513671875,
"y": 762.7557373046875,
"action_params": ""
},
{
"id": 2,
"x": 899.0771484375,
"y": 760.0130615234375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 965.908935546875,
"y": 743.64697265625,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 4,
"x": 993.7598876953125,
"y": 736.390625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
{
"info": {
"name": "遗迹巨蛇前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "TheChasm",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753793052904,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": 887.7176513671875,
"y": 762.7557373046875,
"action_params": ""
},
{
"id": 2,
"x": 899.0771484375,
"y": 760.0130615234375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 965.908935546875,
"y": 743.64697265625,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 4,
"x": 993.7598876953125,
"y": 736.390625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -1,44 +1,44 @@
{
"info": {
"authors": [],
"bgi_version": "0.45.0",
"description": "",
"enable_monster_loot_split": false,
"last_modified_time": 1763000407374,
"map_match_method": "",
"map_name": "Teyvat",
"name": "重拳出击鸭",
"tags": [],
"type": "collect",
"version": "1.0"
},
"positions": [
{
"action": "",
"action_params": "",
"id": 1,
"move_mode": "walk",
"type": "teleport",
"x": 10018.619140625,
"y": 1538.62646484375
},
{
"action": "",
"action_params": "",
"id": 2,
"move_mode": "walk",
"type": "path",
"x": 10041.8623046875,
"y": 1483.87255859375
},
{
"action": "combat_script",
"action_params": "keypress(f),wait(3),keypress(f),wait(1),keypress(f),wait(1),keypress(f)",
"id": 3,
"move_mode": "walk",
"type": "target",
"x": 10044.5068359375,
"y": 1473.15869140625
}
]
{
"info": {
"authors": [],
"bgi_version": "0.45.0",
"description": "",
"enable_monster_loot_split": false,
"last_modified_time": 1763000407374,
"map_match_method": "",
"map_name": "Teyvat",
"name": "重拳出击鸭",
"tags": [],
"type": "collect",
"version": "1.0"
},
"positions": [
{
"action": "",
"action_params": "",
"id": 1,
"move_mode": "walk",
"type": "teleport",
"x": 10018.619140625,
"y": 1538.62646484375
},
{
"action": "",
"action_params": "",
"id": 2,
"move_mode": "walk",
"type": "path",
"x": 10041.8623046875,
"y": 1483.87255859375
},
{
"action": "combat_script",
"action_params": "keypress(f),wait(3),keypress(f),wait(1),keypress(f),wait(1),keypress(f)",
"id": 3,
"move_mode": "walk",
"type": "target",
"x": 10044.5068359375,
"y": 1473.15869140625
}
]
}

View File

@@ -1,26 +1,26 @@
{
"info": {
"authors": [],
"bgi_version": "0.45.0",
"description": "",
"enable_monster_loot_split": false,
"last_modified_time": 1763000508226,
"map_match_method": "",
"map_name": "Teyvat",
"name": "重拳出击鸭-打完返回",
"tags": [],
"type": "collect",
"version": "1.0"
},
"positions": [
{
"action": "combat_script",
"action_params": "keypress(f),wait(3),keypress(f),wait(1),keypress(f),wait(1),keypress(f)",
"id": 1,
"move_mode": "walk",
"type": "target",
"x": 10044.5068359375,
"y": 1473.15869140625
}
]
{
"info": {
"authors": [],
"bgi_version": "0.45.0",
"description": "",
"enable_monster_loot_split": false,
"last_modified_time": 1763000508226,
"map_match_method": "",
"map_name": "Teyvat",
"name": "重拳出击鸭-打完返回",
"tags": [],
"type": "collect",
"version": "1.0"
},
"positions": [
{
"action": "combat_script",
"action_params": "keypress(f),wait(3),keypress(f),wait(1),keypress(f),wait(1),keypress(f)",
"id": 1,
"move_mode": "walk",
"type": "target",
"x": 10044.5068359375,
"y": 1473.15869140625
}
]
}

View File

@@ -1,48 +1,48 @@
{
"info": {
"name": "金焰绒翼龙暴君前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753792463678,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 9041.6884765625,
"y": -1457.52587890625,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 8970.724609375,
"y": -1441.958984375,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 3,
"x": 8954.1708984375,
"y": -1438.552734375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
{
"info": {
"name": "金焰绒翼龙暴君前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753792463678,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 9041.6884765625,
"y": -1457.52587890625,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 8970.724609375,
"y": -1441.958984375,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 3,
"x": 8954.1708984375,
"y": -1438.552734375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -1,57 +1,57 @@
{
"info": {
"name": "铁甲熔火帝皇前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753792049126,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 4417.4072265625,
"y": 2229.10107421875,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 4407.68896484375,
"y": 2206.82958984375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 4400.6142578125,
"y": 2190.57421875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 4395.05322265625,
"y": 2171.19287109375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
{
"info": {
"name": "铁甲熔火帝皇前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753792049126,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 4417.4072265625,
"y": 2229.10107421875,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 4407.68896484375,
"y": 2206.82958984375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 4400.6142578125,
"y": 2190.57421875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 4395.05322265625,
"y": 2171.19287109375,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -1,57 +1,57 @@
{
"info": {
"name": "隐山猊兽前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753787074751,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 2207.36328125,
"y": 1253.46923828125,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 2214.837890625,
"y": 1320.07177734375,
"type": "path",
"move_mode": "fly",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 2221.3984375,
"y": 1384.4091796875,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 4,
"x": 2221.5322265625,
"y": 1408.23876953125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
{
"info": {
"name": "隐山猊兽前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753787074751,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 2207.36328125,
"y": 1253.46923828125,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 2214.837890625,
"y": 1320.07177734375,
"type": "path",
"move_mode": "fly",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 2221.3984375,
"y": 1384.4091796875,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 4,
"x": 2221.5322265625,
"y": 1408.23876953125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -1,6 +1,6 @@
{
{
"info": {
"name": "雷音权前往",
"name": "雷音权前往",
"type": "collect",
"authors": [
{

View File

@@ -1,44 +1,44 @@
{
"info": {
"authors": [],
"bgi_version": "0.45.0",
"description": "",
"enable_monster_loot_split": false,
"last_modified_time": 1762998844804,
"map_match_method": "",
"map_name": "Teyvat",
"name": "霜夜巡天灵主",
"tags": [],
"type": "collect",
"version": "1.0"
},
"positions": [
{
"action": "",
"action_params": "",
"id": 1,
"move_mode": "walk",
"type": "teleport",
"x": 10789.005859375,
"y": 2277.687744140625
},
{
"action": "",
"action_params": "",
"id": 2,
"move_mode": "walk",
"type": "path",
"x": 10773.37890625,
"y": 2294
},
{
"action": "",
"action_params": "",
"id": 3,
"move_mode": "walk",
"type": "path",
"x": 10761.36328125,
"y": 2319.513427734375
}
]
{
"info": {
"authors": [],
"bgi_version": "0.45.0",
"description": "",
"enable_monster_loot_split": false,
"last_modified_time": 1762998844804,
"map_match_method": "",
"map_name": "Teyvat",
"name": "霜夜巡天灵主",
"tags": [],
"type": "collect",
"version": "1.0"
},
"positions": [
{
"action": "",
"action_params": "",
"id": 1,
"move_mode": "walk",
"type": "teleport",
"x": 10789.005859375,
"y": 2277.687744140625
},
{
"action": "",
"action_params": "",
"id": 2,
"move_mode": "walk",
"type": "path",
"x": 10773.37890625,
"y": 2294
},
{
"action": "",
"action_params": "",
"id": 3,
"move_mode": "walk",
"type": "path",
"x": 10761.36328125,
"y": 2319.513427734375
}
]
}

View File

@@ -1,57 +1,57 @@
{
"info": {
"name": "风蚀沙虫前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753789042822,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 4572.232421875,
"y": -1071.85693359375,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 4569.2626953125,
"y": -1046.1904296875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 4567.267578125,
"y": -1034.00634765625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 4565.1396484375,
"y": -1017.8115234375,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": "2500"
}
]
{
"info": {
"name": "风蚀沙虫前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753789042822,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 4572.232421875,
"y": -1071.85693359375,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 4569.2626953125,
"y": -1046.1904296875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 4567.267578125,
"y": -1034.00634765625,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 4565.1396484375,
"y": -1017.8115234375,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": "2500"
}
]
}

View File

@@ -1,39 +1,39 @@
{
"info": {
"name": "魔偶剑鬼前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753787463391,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": -2405.50390625,
"y": -3912.66015625,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": -2347.587890625,
"y": -3942.6298828125,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": "2000"
}
]
{
"info": {
"name": "魔偶剑鬼前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753787463391,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": -2405.50390625,
"y": -3912.66015625,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": -2347.587890625,
"y": -3942.6298828125,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": "2000"
}
]
}

View File

@@ -1,39 +1,39 @@
{
"info": {
"name": "魔像督军前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753792140100,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 3848.580078125,
"y": 1136.95166015625,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 3788.3203125,
"y": 1137.62060546875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
{
"info": {
"name": "魔像督军前往",
"type": "collect",
"authors": [
{
"name": "Tool_tingsu",
"links": ""
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1753792140100,
"enable_monster_loot_split": false
},
"positions": [
{
"id": 1,
"x": 3848.580078125,
"y": 1136.95166015625,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 3788.3203125,
"y": 1137.62060546875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -1,17 +1,17 @@
[
{
"name": "魔像督军",
"totalCount": 20,
"remainingCount": 20,
"team": "不切换",
"returnToStatueAfterEachRound": true,
"farmMode": "一次性-每日限量",
"lastFarmTime": null,
"dailyLimitCount": 1,
"dailyRemainingCount": 1,
"fightParam": {
"timeout": 240,
"strategyName": "根据队伍自动选择"
}
}
[
{
"name": "魔像督军",
"totalCount": 20,
"remainingCount": 20,
"team": "不切换",
"returnToStatueAfterEachRound": true,
"farmMode": "一次性-每日限量",
"lastFarmTime": null,
"dailyLimitCount": 1,
"dailyRemainingCount": 1,
"fightParam": {
"timeout": 240,
"strategyName": "根据队伍自动选择"
}
}
]

View File

@@ -1,38 +1,73 @@
eval(file.readTextSync("reward.js"));
eval(file.readTextSync("utils.js"));
import { autoNavigateToReward, takeReward } from "./src/reward.js";
import { getToday, isToday } from "./src/utils.js";
import { runAutoFight } from "./src/auto-fight.js";
(async function () {
const FARM_MODES = {
ONCE: "一次性",
DAILY_LIMIT: "一次性-每日限量",
DAILY: "每日重置"
};
/**
* 需要战斗后重新对话开启战斗的 Boss 列表
* (Talk to Start 战斗类型)
*/
const BOSS_TALK_TO_START = [
"歌裴莉娅的葬送",
"科培琉司的劫罚",
"纯水精灵",
"重拳出击鸭"
];
/**
* 未支持地图自动寻路的 Boss 列表
* (需要使用键鼠手动寻路)
*/
const BOSS_NO_PATHING_SUPPORT = [
"蕴光月守宫",
"超重型陆巡舰·机动战垒",
"蕴光月幻蝶"
];
try {
/**
* 追加Boss配置
*/
async function addBoss() {
//总次数
function addBoss() {
// Boss 选择校验
if (!settings.bossSelection || settings.bossSelection.trim() === "") {
log.error("❌未选择有效的 Boss请从下拉列表中选择。");
return;
}
if (settings.bossSelection.includes("未支持")) {
log.error(`❌Boss "${settings.bossSelection}" 暂未支持,无法添加。`);
return;
}
// 总次数
const rounds = parseInt(settings.rounds, 10);
let totalCount = 1;
if (isNaN(rounds) || rounds < 0) {
log.warn(`⚠️无效的挑战次数: {rounds},将使用 1 作为默认值。`, settings.rounds);
} else {
totalCount = rounds;
}
const totalCount = isNaN(rounds) ? 1 : rounds;
// 每日刷取上限
let dailyLimitCount = parseInt(settings.dailyLimitCount, 10);
if (isNaN(dailyLimitCount) || dailyLimitCount < 0) {
log.warn(`⚠️无效的每日上限: {dailyLimitCount},将使用 1 作为默认值。`, settings.dailyLimitCount);
dailyLimitCount = 1;
}
dailyLimitCount = isNaN(dailyLimitCount) ? 1 : dailyLimitCount;
//战斗超时时间
// 战斗超时时间
let timeout = parseInt(settings.timeout, 10);
if (isNaN(timeout)) {
log.warn(`⚠️无效的超时时间: {timeout},将使用 240 秒作为默认值。`, settings.timeout)
if (isNaN(timeout) || timeout < 0) {
log.warn(`⚠️无效的超时时间: {timeout},将使用 240 秒作为默认值。`, settings.timeout);
timeout = 240;
}
let farmMode = null;
// 刷取模式
if (settings.farmMode === FARM_MODES.ONCE) {
farmMode = FARM_MODES.ONCE
@@ -168,10 +203,6 @@ eval(file.readTextSync("utils.js"));
await genshin.switchParty(boss.team);
};
// --- 初始化自定战斗参数 ---
// let fightParam = new AutoFightParam(boss.fightParam.strategyName)
// fightParam.timeout = boss.fightParam.timeout;
let remainingCount
if (boss.farmMode === FARM_MODES.DAILY_LIMIT || boss.farmMode === FARM_MODES.DAILY) {
remainingCount = boss.dailyRemainingCount
@@ -203,13 +234,18 @@ eval(file.readTextSync("utils.js"));
};
if (goToBoss) {
log.info(`🏃前往『{name}』`,boss.name);
await pathingScript.runFile(`assets/Pathing/${boss.name}前往.json`);
if (BOSS_NO_PATHING_SUPPORT.includes(boss.name)) {
//分层地图未适配区域的BOSS,使用键鼠寻路
await pathingScript.runFile(`assets/Pathing/${boss.name}强制传送.json`);
await keyMouseScript.runFile(`assets/Pathing/${boss.name}键鼠前往.json`);
} else {
await pathingScript.runFile(`assets/Pathing/${boss.name}前往.json`);
}
};
try {
log.info(`⚔️开始第 {round} 次讨伐的第 {attempt} 尝试`,round,attempt);
await dispatcher.runTask(new SoloTask("AutoFight"));
// await dispatcher.runAutoFightTask(fightParam);
await runAutoFight(boss.fightParam);
await autoNavigateToReward();
isInsufficientResin = await takeReward(isInsufficientResin);
battleSuccess = true;
@@ -246,11 +282,23 @@ eval(file.readTextSync("utils.js"));
};
if (!goToBoss && boss.remainingCount > 0 && !isInsufficientResin) {
if (["歌裴莉娅的葬送", "科培琉司的劫罚", "纯水精灵","霜夜巡天灵主","重拳出击鸭"].includes(boss.name)) {
if (BOSS_TALK_TO_START.includes(boss.name)) {
//战斗后重新对话交互开启战斗
await pathingScript.runFile(`assets/Pathing/${boss.name}战斗后快速前往.json`);
} else if (BOSS_NO_PATHING_SUPPORT.includes(boss.name)) {
//分层地图未适配区域的BOSS,重新寻路来靠近BOSS位置
await pathingScript.runFile(`assets/Pathing/${boss.name}强制传送.json`);
await keyMouseScript.runFile(`assets/Pathing/${boss.name}键鼠前往.json`);
} else {
log.debug("等待5s后BOSS刷新");
await sleep(5000);
log.info("重新靠近BOSS位置并等待4s");
// 读取boss前往路径文件获取最后一个位置点
const pathingData = JSON.parse(file.readTextSync(`assets/Pathing/${boss.name}前往.json`));
const lastPosition = pathingData.positions[pathingData.positions.length - 1];
const pathingJson = JSON.stringify({ positions: [lastPosition] });
await pathingScript.run(pathingJson);
await sleep(4000);
};
};
}
@@ -280,10 +328,10 @@ eval(file.readTextSync("utils.js"));
const runMode = settings.runMode;
// === 执行对应操作 ===
const RUN_MODES = {
ADD_BOSS: "追加指定Boss及相关配置",
REMOVE_BOSS: "删除同名Boss及相关配置",
CLEAR_ALL: "删除所有BOSS",
RUN: "运行"
ADD_BOSS: "2.追加指定Boss",
REMOVE_BOSS: "3.删除同名Boss",
CLEAR_ALL: "4.删除所有BOSS",
RUN: "1.运行"
};
if (runMode === RUN_MODES.ADD_BOSS) {

View File

@@ -1,17 +1,20 @@
{
"manifest_version": 1,
"name": "批量讨伐角色养成材料BOSS",
"version": "0.5",
"description": "一次性配置多个角色材料的boss体力不足时保存进度每次运行时断点续打",
"authors": [
{
"name": "无激情非少年",
"links": "https://github.com/1004452714"
}
],
"settings_ui": "settings.json",
"main": "main.js",
"saved_files": [
"assets/config"
]
}
{
"manifest_version": 1,
"name": "批量讨伐角色养成材料BOSS",
"version": "0.6.1",
"description": "一次性配置多个角色材料的boss体力不足时保存进度每次运行时断点续打",
"authors": [
{
"name": "DarkFlameMaster",
"links": "https://github.com/1004452714"
}
],
"library": [
"."
],
"settings_ui": "settings.json",
"main": "main.js",
"saved_files": [
"assets/config"
]
}

View File

@@ -4,55 +4,79 @@
"type": "select",
"label": "选择模式",
"options": [
"运行",
"追加指定Boss及相关配置",
"删除同名Boss及相关配置",
"删除所有BOSS"
"1.运行",
"2.追加指定Boss",
"3.删除同名Boss",
"4.删除所有BOSS"
],
"default": "运行"
"default": "1.运行"
},
{
"name": "bossSelection",
"type": "select",
"type": "cascade-select",
"label": "选择讨伐BOSS \n - 以拼音首字母按英文字母表排序",
"options": [
"半永恒统辖矩阵",
"爆炎树",
"掣电树",
"纯水精灵",
"翠翎恐蕈",
"风蚀沙虫",
"歌裴莉娅的葬送",
"古岩龙蜥",
"恒常机关阵列",
"急冻树",
"金焰绒翼龙暴君",
"科培琉司的劫罚",
"雷音权现",
"灵觉隐修的迷者",
"秘源机兵·构型械",
"秘源机兵·统御械",
"魔偶剑鬼",
"魔像督军",
"千年珍珠骏麟",
"熔岩辉龙像",
"深罪浸礼者",
"霜夜巡天灵主",
"深邃摹结株",
"实验性场力发生装置",
"水形幻人",
"贪食匿叶龙山王",
"铁甲熔火帝皇",
"无相之草",
"无相之火",
"无相之",
"无相之水",
"无相之岩",
"遗迹巨蛇",
"隐山猊兽",
"兆载永劫龙兽",
"重拳出击鸭"
]
"cascadeOptions": {
"蒙德": [
"急冻树",
"无相之雷",
"无相之风(未支持)",
"无相之冰(未支持)",
"守望者·堕天"
],
"璃月": [
"爆炎树",
"纯水精灵",
"古岩龙蜥",
"无相之岩",
"遗迹巨蛇",
"隐山猊兽"
],
"稻妻": [
"无相之火",
"恒常机关阵列",
"雷音权现",
"魔偶剑鬼",
"无相之水",
"黄金王兽(未支持)",
"深海龙蜥之群(未支持)"
],
"须弥": [
"掣电树",
"半永恒统辖矩阵",
"翠翎恐蕈",
"风蚀沙虫",
"无相之",
"深罪浸礼者",
"兆载永劫龙兽"
],
"枫丹": [
"歌裴莉娅的葬送",
"科培琉司的劫罚",
"实验性场力发生装置",
"魔像督军",
"千年珍珠骏麟",
"水形幻人",
"铁甲熔火帝皇"
],
"纳塔": [
"金焰绒翼龙暴君",
"灵觉隐修的迷者",
"秘源机兵·构型械",
"秘源机兵·统御械",
"熔岩辉龙像",
"深邃摹结株",
"贪食匿叶龙山王"
],
"挪德卡莱": [
"蕴光月守宫",
"深黯魇语之主",
"超重型陆巡舰·机动战垒",
"霜夜巡天灵主",
"蕴光月幻蝶",
"重拳出击鸭"
]
},
"default": ""
},
{
"name": "switchPartyName",
@@ -82,7 +106,7 @@
"name": "farmMode",
"type": "select",
"label": "刷取模式",
"options":[
"options": [
"一次性",
"一次性-每日限量",
"每日重置"

View File

@@ -0,0 +1,29 @@
export async function runAutoFight(param) {
// 传入战斗策略
let autoFightParam = new AutoFightParam(param.strategyName);
// 战斗超时设置
autoFightParam.Timeout = param.timeout;
// 战斗结束检测配置
autoFightParam.FightFinishDetectEnabled = true;
autoFightParam.FinishDetectConfig.FastCheckEnabled = false;
// 战斗后拾取配置
autoFightParam.PickDropsAfterFightEnabled = false;
// 万叶拾取配置
autoFightParam.KazuhaPickupEnabled = false;
// 技能CD优化
autoFightParam.ActionSchedulerByCd = "";
// 精英怪拾取模式
autoFightParam.OnlyPickEliteDropsMode = "Close";
// 盾奶配置
autoFightParam.GuardianAvatar = "";
// 运行任务
await dispatcher.runAutoFightTask(autoFightParam);
}

View File

@@ -48,6 +48,7 @@ async function autoNavigateToReward() {
await sleep(800);
keyUp("w");
}
if (i > 50) throw new Error('视野调整超时');
if (iconRes.isEmpty()) {
log.warn("未找到宝箱图标,重试");
moveMouseBy(200, 0);
@@ -68,7 +69,6 @@ async function autoNavigateToReward() {
moveMouseBy(adjustAmount * adjustAmount2, 0);
await sleep(100);
}
if (i > 50) throw new Error('视野调整超时');
}
// 3. 前进一小步
keyDown("w");
@@ -153,4 +153,6 @@ async function takeReward(isInsufficientResin) {
log.error(`领取奖励失败: ${error}`);
}
}
}
export { autoNavigateToReward, takeReward };

View File

@@ -1,16 +1,18 @@
// 获取今天的日期考虑4点前为昨天并格式化为YYYYMMDD
function getToday() {
const now = new Date();
const targetDate = now.getHours() < 4 ?
new Date(now.getFullYear(), now.getMonth(), now.getDate() - 1) :
new Date(now.getFullYear(), now.getMonth(), now.getDate());
const year = targetDate.getFullYear();
const month = String(targetDate.getMonth() + 1).padStart(2, '0');
const day = String(targetDate.getDate()).padStart(2, '0');
return `${year}${month}${day}`;
}
// 判断给定日期是否为今天
function isToday(date) {
return date === getToday();
}
// 获取今天的日期考虑4点前为昨天并格式化为YYYYMMDD
function getToday() {
const now = new Date();
const targetDate = now.getHours() < 4 ?
new Date(now.getFullYear(), now.getMonth(), now.getDate() - 1) :
new Date(now.getFullYear(), now.getMonth(), now.getDate());
const year = targetDate.getFullYear();
const month = String(targetDate.getMonth() + 1).padStart(2, '0');
const day = String(targetDate.getDate()).padStart(2, '0');
return `${year}${month}${day}`;
}
// 判断给定日期是否为今天
function isToday(date) {
return date === getToday();
}
export { getToday, isToday };