脚本归档
This commit is contained in:
67
archive/js/到枫丹打鐵合礦/assets/AutoPath/到枫丹打鐵.json
Normal file
67
archive/js/到枫丹打鐵合礦/assets/AutoPath/到枫丹打鐵.json
Normal file
@@ -0,0 +1,67 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "到枫丹打鐵",
|
||||
"type": "collect",
|
||||
"author": "密柑魚",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.42.3"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": 4514.18,
|
||||
"y": 3630.3999999999996,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "teleport"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 4520.380859375,
|
||||
"y": 3606.239501953125,
|
||||
"action": "",
|
||||
"move_mode": "run",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 4560.19189453125,
|
||||
"y": 3598.05615234375,
|
||||
"action": "",
|
||||
"move_mode": "run",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 4581.005859375,
|
||||
"y": 3599.1630859375,
|
||||
"action": "",
|
||||
"move_mode": "run",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 4579.8,
|
||||
"y": 3605.452,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 4579.85,
|
||||
"y": 3605.45,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
}
|
||||
]
|
||||
}
|
||||
79
archive/js/到枫丹打鐵合礦/main.js
Normal file
79
archive/js/到枫丹打鐵合礦/main.js
Normal file
@@ -0,0 +1,79 @@
|
||||
(async function () {
|
||||
|
||||
async function AutoPath(locationName) {
|
||||
try {
|
||||
let filePath = `assets/AutoPath/${locationName}.json`;
|
||||
await pathingScript.runFile(filePath);
|
||||
} catch (error) {
|
||||
log.error(`执行 ${locationName} 路径时发生错误`);
|
||||
log.error(error.message);
|
||||
}
|
||||
await sleep(2000);
|
||||
}
|
||||
|
||||
// 確認使用礦石
|
||||
function determineOre() {
|
||||
if (ore == '水晶块') {
|
||||
log.info("將使用 水晶块 鍛造礦石");
|
||||
} else if (ore == '紫晶块') {
|
||||
log.info("將使用 紫晶块 鍛造礦石");
|
||||
} else if (ore == '萃凝晶') {
|
||||
log.info("將使用 萃凝晶 鍛造礦石");
|
||||
} else {
|
||||
log.info("無指定礦石﹐將使用 水晶块 鍛造礦石");
|
||||
}
|
||||
}
|
||||
// 读取用户设置
|
||||
let ore = settings.ore != undefined ? settings.ore : '';
|
||||
|
||||
setGameMetrics(1920, 1080, 2);// 设置游戏窗口大小和DPI
|
||||
determineOre();
|
||||
|
||||
|
||||
log.info("前往枫丹鐵匠位置");
|
||||
await AutoPath(`到枫丹打鐵`);
|
||||
log.info("到逹枫丹鐵匠位置");
|
||||
await sleep(2000);
|
||||
log.info("對話進入任鍛造頁面");
|
||||
await sleep(2000);
|
||||
keyPress("F");
|
||||
await sleep(2000);
|
||||
keyPress("F");
|
||||
await sleep(2000);
|
||||
click(1300, 505);
|
||||
await sleep(2000);
|
||||
keyPress("F");
|
||||
await sleep(2000);
|
||||
|
||||
|
||||
log.info("已進入任鍛造頁面,開始鍛造");
|
||||
// 點擊 "配方"
|
||||
click(220, 150);
|
||||
await sleep(1000);
|
||||
// 跟據用戶選擇的礦石進行鍛造
|
||||
if (ore == '水晶块') {
|
||||
click(545, 290);
|
||||
} else if (ore == '紫晶块') {
|
||||
click(685, 290);
|
||||
} else if (ore == '萃凝晶') {
|
||||
click(120, 455);
|
||||
} else {
|
||||
// 無指定礦石﹐將使用 水晶块 鍛造礦石
|
||||
click(545, 290);
|
||||
}
|
||||
await sleep(1000);
|
||||
// 按合成按鈕3次
|
||||
click(1645, 1015);
|
||||
await sleep(4000);
|
||||
click(1645, 1015);
|
||||
await sleep(4000);
|
||||
click(1645, 1015);
|
||||
await sleep(4000);
|
||||
|
||||
|
||||
log.info("鍛造結束,退出畫面");
|
||||
// 退出鍛造頁面
|
||||
click(1845, 45);
|
||||
await sleep(1000);
|
||||
|
||||
})();
|
||||
13
archive/js/到枫丹打鐵合礦/manifest.json
Normal file
13
archive/js/到枫丹打鐵合礦/manifest.json
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"manifest_version": 1,
|
||||
"name": "传送到枫丹鐵匠合礦",
|
||||
"version": "1.0",
|
||||
"description": "到枫丹鐵匠店合成武器升級材料,配合'传送到枫丹鐵匠領礦'能自動化合礦領礦。註1:可選使用水晶礦(默認)、紫晶礦、萃凝晶。註2:需要每種礦至少能合成一次。註3:使用時請先禁用任何生存位使用技能。",
|
||||
"authors": [
|
||||
{
|
||||
"name": "蜜柑魚"
|
||||
}
|
||||
],
|
||||
"settings_ui": "settings.json",
|
||||
"main": "main.js"
|
||||
}
|
||||
12
archive/js/到枫丹打鐵合礦/settings.json
Normal file
12
archive/js/到枫丹打鐵合礦/settings.json
Normal file
@@ -0,0 +1,12 @@
|
||||
[
|
||||
{
|
||||
"name": "ore",
|
||||
"type": "select",
|
||||
"label": "合成礦石(默认:水晶礦)",
|
||||
"options": [
|
||||
"水晶礦",
|
||||
"紫晶块",
|
||||
"萃凝晶"
|
||||
]
|
||||
}
|
||||
]
|
||||
67
archive/js/到枫丹打鐵領礦/assets/AutoPath/到枫丹打鐵.json
Normal file
67
archive/js/到枫丹打鐵領礦/assets/AutoPath/到枫丹打鐵.json
Normal file
@@ -0,0 +1,67 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "到枫丹打鐵",
|
||||
"type": "collect",
|
||||
"author": "密柑魚",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.42.3"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": 4514.18,
|
||||
"y": 3630.3999999999996,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "teleport"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 4520.380859375,
|
||||
"y": 3606.239501953125,
|
||||
"action": "",
|
||||
"move_mode": "run",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 4560.19189453125,
|
||||
"y": 3598.05615234375,
|
||||
"action": "",
|
||||
"move_mode": "run",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 4581.005859375,
|
||||
"y": 3599.1630859375,
|
||||
"action": "",
|
||||
"move_mode": "run",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 4579.8,
|
||||
"y": 3605.452,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 4579.85,
|
||||
"y": 3605.45,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
}
|
||||
]
|
||||
}
|
||||
47
archive/js/到枫丹打鐵領礦/main.js
Normal file
47
archive/js/到枫丹打鐵領礦/main.js
Normal file
@@ -0,0 +1,47 @@
|
||||
(async function () {
|
||||
|
||||
async function AutoPath(locationName) {
|
||||
try {
|
||||
let filePath = `assets/AutoPath/${locationName}.json`;
|
||||
await pathingScript.runFile(filePath);
|
||||
} catch (error) {
|
||||
log.error(`执行 ${locationName} 路径时发生错误`);
|
||||
log.error(error.message);
|
||||
}
|
||||
await sleep(2000);
|
||||
}
|
||||
|
||||
|
||||
setGameMetrics(1920, 1080, 2);// 设置游戏窗口大小和DPI
|
||||
|
||||
log.info("前往枫丹鐵匠位置");
|
||||
await AutoPath(`到枫丹打鐵`);
|
||||
log.info("到逹枫丹鐵匠位置");
|
||||
await sleep(2000);
|
||||
log.info("對話進入任鍛造頁面");
|
||||
await sleep(2000);
|
||||
keyPress("F");
|
||||
await sleep(2000);
|
||||
keyPress("F");
|
||||
await sleep(2000);
|
||||
click(1300, 505);
|
||||
await sleep(2000);
|
||||
keyPress("F");
|
||||
await sleep(2000);
|
||||
|
||||
// 點擊 "鍛造隊列"
|
||||
click(600, 150);
|
||||
await sleep(1000);
|
||||
// 點擊 "全部領取"
|
||||
click(160, 1010);
|
||||
await sleep(1000);
|
||||
// 點擊 "確認"
|
||||
click(970, 910);
|
||||
await sleep(1000);
|
||||
|
||||
log.info("領取結束,退出畫面");
|
||||
// 退出鍛造頁面
|
||||
click(1845, 45);
|
||||
await sleep(1000);
|
||||
|
||||
})();
|
||||
12
archive/js/到枫丹打鐵領礦/manifest.json
Normal file
12
archive/js/到枫丹打鐵領礦/manifest.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"manifest_version": 1,
|
||||
"name": "传送到枫丹鐵匠領礦",
|
||||
"version": "1.0",
|
||||
"description": "到枫丹鐵匠店領取合成武器升級材料,配合'传送到枫丹鐵匠合礦'能自動化合礦領礦。註1:使用時請先禁用任何生存位使用技能。",
|
||||
"authors": [
|
||||
{
|
||||
"name": "蜜柑魚"
|
||||
}
|
||||
],
|
||||
"main": "main.js"
|
||||
}
|
||||
44
archive/js/平面镜-枫丹地脉花/AAA 地脉花注意事项.txt
Normal file
44
archive/js/平面镜-枫丹地脉花/AAA 地脉花注意事项.txt
Normal file
@@ -0,0 +1,44 @@
|
||||
····前言····
|
||||
地脉花脚本的情况和采集、跑狗粮略有不同,比较特殊。请浏览此文档,尤其注意标*内容。本人也是BGI新人,没有什么编程经验,如有问题,还请海涵。——v7群 平面镜
|
||||
|
||||
|
||||
····省流····
|
||||
1,放在调度器使用,记得进行js设置和战斗配置。生存压力大,死人会断。尽量盾奶都带。
|
||||
2,不能纯水,要有大范围后台。
|
||||
3,有小概率出问题,可能导致清体力失败,请自行留意。
|
||||
|
||||
|
||||
····点位确认····
|
||||
地脉花有固定刷新点位,(金币花和经验花通用)按照线路刷新,有第一个点就会有后续的一条线。
|
||||
所以由用户确定好第一个点位之后,找到并执行一整条线路即可。
|
||||
一条路线结束后,会随机出另一条路线。此时如果还需要继续,则继续手动找出第一个点位并匹配路线。
|
||||
***这些路线已经经过我的数次测试。路线确认基本没有问题。
|
||||
|
||||
|
||||
····领取奖励····
|
||||
此脚本会优先使用浓缩,再使用自回体,不会使用脆弱树脂(月亮)。请放心使用。
|
||||
|
||||
|
||||
····其他事项(战斗、脚本)····
|
||||
1,可能因波次原因导致战斗中途判定结束,因而战斗命令执行两次。
|
||||
2,按F和找地脉花都被执行两次,因为地脉花一个不打,后面的就不会刷出来、***所以必须尽量保证每一朵都被打完且领取成功。***
|
||||
3,!!自动拾取概率误触地脉花,则会卡死不动。关闭自动拾取也没用,因为bgi默认跑脚本的时候开启自动拾取。除非后续bgi制作组解决此问题。
|
||||
***bgi有脱离这个卡死的功能,所以这个问题可能不会影响挂机流程的完整,但是会浪费很多时间。***
|
||||
***有概率转视角卡住时,点到原神画面外,导致bgi停工***
|
||||
4,不建议使用那维莱特纯水输出,会有水免疫怪物。***枫丹地脉花生存压力稍大,练度低的玩家请绕行。***
|
||||
***如果战斗中死亡,可能导致执行失败。
|
||||
5,!!!地脉花的开启和领取还是有很小概率失败。也有可能部分怪物边缘ob导致无法击杀。这将导致后续路线全部失效,建议在挂地脉花时保持对屏幕的余光观察。!!!
|
||||
6,配队建议:加入盾、奶,最好有大范围追踪C位如C2神子、C1千织、芙宁娜等。记得不要纯水。聚怪不刚需。更推荐千织和神子,可以杀掉边缘ob的水怪。
|
||||
|
||||
|
||||
····可能出错的路径····
|
||||
枫丹地脉花-路线2 秋分山西侧锚点左下-4:秋分山左下下下
|
||||
枫丹地脉花-路线1 厄里那斯-点3:厄里那斯神像右下_
|
||||
枫丹地脉花-路线4 柔灯港上锚点-3:锚点左左上
|
||||
此点位可能卡住,因为小螃蟹不被算作敌怪,导致检测战斗结束时误判为结束。
|
||||
|
||||
枫丹地脉花-路线2 秋分山西侧锚点左下-5:秋分山左左下下
|
||||
此点位可能卡住,因为BGI传送时可能点错锚点。这是BGI的bug。请等待修复。
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,85 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线1厄里那斯-1:厄里那斯神像下",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": 4749.5869140625,
|
||||
"y": 2636.20751953125,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "teleport"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 4758.18505859375,
|
||||
"y": 2611.123291015625,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 4760.80029296875,
|
||||
"y": 2574.517578125,
|
||||
"action": "combat_script",
|
||||
"move_mode": "dash",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 4760.80029296875,
|
||||
"y": 2574.517578125,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 4760.80029296875,
|
||||
"y": 2574.517578125,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 4760.80029296875,
|
||||
"y": 2574.517578125,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 4761.7,
|
||||
"y": 2572,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 4761.7,
|
||||
"y": 2572,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线1 厄里那斯-点2:厄里那斯神像右下",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": 4689.61181640625,
|
||||
"y": 2429.431884765625,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "teleport"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 4631.0048828125,
|
||||
"y": 2468.979736328125,
|
||||
"action": "",
|
||||
"move_mode": "fly",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 4653.67138671875,
|
||||
"y": 2531.894287109375,
|
||||
"action": "combat_script",
|
||||
"move_mode": "dash",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 4653.67138671875,
|
||||
"y": 2531.894287109375,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 4653.67138671875,
|
||||
"y": 2531.894287109375,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 4653.67138671875,
|
||||
"y": 2531.894287109375,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 4652.3,
|
||||
"y": 2531.6,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 4652.3,
|
||||
"y": 2531.6,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,103 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线1 厄里那斯-点3:厄里那斯神像右下*",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": 4689.56884765625,
|
||||
"y": 2429.328857421875,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "teleport"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 4664.06201171875,
|
||||
"y": 2408.484619140625,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 4628.40234375,
|
||||
"y": 2418.338623046875,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 4585.56103515625,
|
||||
"y": 2438.055908203125,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 4568.48828125,
|
||||
"y": 2433.225341796875,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 4568.48828125,
|
||||
"y": 2433.225341796875,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 4568.48828125,
|
||||
"y": 2433.225341796875,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 4568.48828125,
|
||||
"y": 2433.225341796875,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"x": 4568.48828125,
|
||||
"y": 2433.225341796875,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"x": 4568.48828125,
|
||||
"y": 2433.225341796875,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,103 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线1 厄里那斯-点4:厄里那斯神像右下下下",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": 4689.5751953125,
|
||||
"y": 2429.39599609375,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "teleport"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 4674.1884765625,
|
||||
"y": 2418.41552734375,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 4626.88916015625,
|
||||
"y": 2356.658935546875,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 4569.60888671875,
|
||||
"y": 2349.85302734375,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 4553.5107421875,
|
||||
"y": 2358.491943359375,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 4553.5107421875,
|
||||
"y": 2358.491943359375,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 4553.5107421875,
|
||||
"y": 2358.491943359375,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 4553.5107421875,
|
||||
"y": 2358.491943359375,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"x": 4552.86376953125,
|
||||
"y": 2357.971435546875,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"x": 4552.86376953125,
|
||||
"y": 2357.971435546875,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,103 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线1 厄里那斯-点5:厄里那斯神像下下下下",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": 4626.09619140625,
|
||||
"y": 2182.30126953125,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "teleport"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 4628.6923828125,
|
||||
"y": 2191.432373046875,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 4610.0830078125,
|
||||
"y": 2236.067138671875,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 4609.7587890625,
|
||||
"y": 2299.192138671875,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 4607.455078125,
|
||||
"y": 2316.584716796875,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 4607.455078125,
|
||||
"y": 2316.584716796875,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 4607.455078125,
|
||||
"y": 2316.584716796875,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 4607.455078125,
|
||||
"y": 2316.584716796875,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"x": 4607.455078125,
|
||||
"y": 2316.4,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"x": 4607.455078125,
|
||||
"y": 2316.4,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线1 厄里那斯-点6:厄里那斯神像下下下",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": 4689.5,
|
||||
"y": 2429.552978515625,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "teleport"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 4700.13818359375,
|
||||
"y": 2393.348876953125,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 4700.13818359375,
|
||||
"y": 2393.348876953125,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 4700.13818359375,
|
||||
"y": 2393.348876953125,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 4700.13818359375,
|
||||
"y": 2393.348876953125,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 4700.13818359375,
|
||||
"y": 2393.348876953125,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 4700.13818359375,
|
||||
"y": 2393.348876953125,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 4699.83544921875,
|
||||
"y": 2393.139404296875,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"x": 4699.83544921875,
|
||||
"y": 2393.139404296875,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线2 秋分山-1:秋分山左下-",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 4146.91162109375,
|
||||
"y": 2606.272705078125,
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 4191.60693359375,
|
||||
"y": 2522.24609375,
|
||||
"type": "path",
|
||||
"move_mode": "dash",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 4183.26953125,
|
||||
"y": 2502.36962890625,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(F)",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 4183.26953125,
|
||||
"y": 2502.36962890625,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(F)",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 4183.26953125,
|
||||
"y": 2502.36962890625,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 4183.26953125,
|
||||
"y": 2502.36962890625,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 4182.9,
|
||||
"y": 2502,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 4182.9,
|
||||
"y": 2502,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,103 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线2 秋分山-1:秋分山左下",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": 4146.6904296875,
|
||||
"y": 2606.247802734375,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "teleport"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 4157.88671875,
|
||||
"y": 2579.28125,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 4150.46337890625,
|
||||
"y": 2530.249267578125,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 4180.84326171875,
|
||||
"y": 2450.04736328125,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 4190.03271484375,
|
||||
"y": 2426.40625,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 4190.03271484375,
|
||||
"y": 2426.40625,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 4190.03271484375,
|
||||
"y": 2426.40625,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 4190.03271484375,
|
||||
"y": 2426.40625,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"x": 4189.6376953125,
|
||||
"y": 2426.829345703125,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"x": 4189.6376953125,
|
||||
"y": 2426.829345703125,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,112 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线2 秋分山-2:秋分山左下下",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": 4375.5,
|
||||
"y": 2280.045654296875,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "teleport"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 4334.42236328125,
|
||||
"y": 2337.5732421875,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 4327.21728515625,
|
||||
"y": 2345.842529296875,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 4280.197265625,
|
||||
"y": 2342.5048828125,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 4264.15869140625,
|
||||
"y": 2357.422119140625,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 4246.28271484375,
|
||||
"y": 2374.04833984375,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 4246.28271484375,
|
||||
"y": 2374.04833984375,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 4246.28271484375,
|
||||
"y": 2374.04833984375,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"x": 4246.28271484375,
|
||||
"y": 2374.04833984375,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"x": 4246.28271484375,
|
||||
"y": 2374.04833984375,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"x": 4246.28271484375,
|
||||
"y": 2374.04833984375,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线2 秋分山-3:秋分山左下下下",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": 4375.373046875,
|
||||
"y": 2281.0244140625,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "teleport"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 4383.6611328125,
|
||||
"y": 2268.129638671875,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 4318.09765625,
|
||||
"y": 2235.657958984375,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 4299.75146484375,
|
||||
"y": 2232.588134765625,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 4299.75146484375,
|
||||
"y": 2232.588134765625,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 4299.75146484375,
|
||||
"y": 2232.588134765625,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 4299.75146484375,
|
||||
"y": 2232.588134765625,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 4299,
|
||||
"y": 2232,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"x": 4299,
|
||||
"y": 2232,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线2 秋分山-4:秋分山左左下下",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": 4375.03955078125,
|
||||
"y": 2280.105224609375,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "teleport"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 4394.3154296875,
|
||||
"y": 2257.97900390625,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 4402.5263671875,
|
||||
"y": 2253.2724609375,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 4402.5263671875,
|
||||
"y": 2253.2724609375,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 4402.5263671875,
|
||||
"y": 2253.2724609375,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 4402.5263671875,
|
||||
"y": 2253.2724609375,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 4403.7,
|
||||
"y": 2251.7,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 4403.7,
|
||||
"y": 2251.7,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线3 秋分山西侧锚点-1:锚点右",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": 4146.68408203125,
|
||||
"y": 2606.22607421875,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "teleport"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 4116.20751953125,
|
||||
"y": 2592.000732421875,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 4098.6328125,
|
||||
"y": 2584.1611328125,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 4098.6328125,
|
||||
"y": 2584.1611328125,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 4098.6328125,
|
||||
"y": 2584.1611328125,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 4098.6328125,
|
||||
"y": 2584.1611328125,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 4098.2,
|
||||
"y": 2585.1,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 4098.2,
|
||||
"y": 2585.1,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线3 秋分山西侧锚点-2:锚点右右",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": 4146.779296875,
|
||||
"y": 2606.25390625,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "teleport"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 4091.37109375,
|
||||
"y": 2573.86328125,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 4063.5205078125,
|
||||
"y": 2564.291259765625,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 4063.5205078125,
|
||||
"y": 2564.291259765625,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 4063.5205078125,
|
||||
"y": 2564.291259765625,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 4063.5205078125,
|
||||
"y": 2564.291259765625,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 4063.5205078125,
|
||||
"y": 2565.6,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 4063.5205078125,
|
||||
"y": 2565.6,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,103 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线3 秋分山西侧锚点-3:锚点右右右",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": 3917.2880859375,
|
||||
"y": 2576.434814453125,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "teleport"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 3922.8388671875,
|
||||
"y": 2562.638427734375,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 3986.65234375,
|
||||
"y": 2599.51123046875,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 4034.130859375,
|
||||
"y": 2625.865478515625,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 3999.6552734375,
|
||||
"y": 2613.181640625,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 3999.6552734375,
|
||||
"y": 2613.181640625,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 3999.6552734375,
|
||||
"y": 2613.181640625,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 3999.6552734375,
|
||||
"y": 2613.181640625,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"x": 3999.2,
|
||||
"y": 2613.8,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"x": 3999.2,
|
||||
"y": 2613.8,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,99 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线3 秋分山西侧锚点-4:东侧锚点上",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 3917.2783203125,
|
||||
"y": 2576.334716796875,
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 3917.228515625,
|
||||
"y": 2573.301025390625,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 3907.2451171875,
|
||||
"y": 2607.017333984375,
|
||||
"type": "path",
|
||||
"move_mode": "fly",
|
||||
"action": "stop_flying",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 3921.345703125,
|
||||
"y": 2617.813232421875,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(F)",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 3921.345703125,
|
||||
"y": 2617.813232421875,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(F)",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 3921.345703125,
|
||||
"y": 2617.813232421875,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 3921.345703125,
|
||||
"y": 2617.813232421875,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 3921.3,
|
||||
"y": 2617.8,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"x": 3921.3,
|
||||
"y": 2617.8,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,107 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线4 柔灯港上锚点-1:锚点左上",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": 2873.544921875,
|
||||
"y": 3512.03515625,
|
||||
"type": "teleport",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 2890.5087890625,
|
||||
"y": 3532.46435546875,
|
||||
"type": "path",
|
||||
"move_mode": "dash",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 2904.51171875,
|
||||
"y": 3545.618896484375,
|
||||
"type": "path",
|
||||
"move_mode": "climb",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 2929.8173828125,
|
||||
"y": 3563.57470703125,
|
||||
"type": "path",
|
||||
"move_mode": "dash",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 2932.47265625,
|
||||
"y": 3583.896728515625,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(F)",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 2932.47265625,
|
||||
"y": 3583.896728515625,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(F)",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 2932.47265625,
|
||||
"y": 3583.896728515625,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 2932.47265625,
|
||||
"y": 3583.896728515625,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"x": 2932.30078125,
|
||||
"y": 3583.9755859375,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"x": 2932.30078125,
|
||||
"y": 3583.9755859375,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,103 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线4 柔灯港上锚点-2:锚点左上+",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": 3032.662109375,
|
||||
"y": 3732.420166015625,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "teleport"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 3019.8095703125,
|
||||
"y": 3712.950927734375,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 3015.82421875,
|
||||
"y": 3665.193115234375,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 3010.951171875,
|
||||
"y": 3624.05029296875,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 3008.40234375,
|
||||
"y": 3602.593017578125,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 3008.40234375,
|
||||
"y": 3602.593017578125,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 3008.40234375,
|
||||
"y": 3602.593017578125,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 3008.40234375,
|
||||
"y": 3602.593017578125,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"x": 3008.4,
|
||||
"y": 3602.2,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"x": 3008.4,
|
||||
"y": 3602.2,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,107 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线4 柔灯港上锚点-3:锚点左左上",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 3032.6708984375,
|
||||
"y": 3732.432861328125,
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 3045.591796875,
|
||||
"y": 3710.537841796875,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 3039.93359375,
|
||||
"y": 3671.215576171875,
|
||||
"type": "path",
|
||||
"move_mode": "dash",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 3055.349609375,
|
||||
"y": 3641.24462890625,
|
||||
"type": "path",
|
||||
"move_mode": "dash",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 3077.185546875,
|
||||
"y": 3602.835693359375,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(F)",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 3077.185546875,
|
||||
"y": 3602.835693359375,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(F)",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 3077.185546875,
|
||||
"y": 3602.835693359375,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 3077.185546875,
|
||||
"y": 3602.835693359375,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"x": 3077,
|
||||
"y": 3602.2,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"x": 3077,
|
||||
"y": 3602.2,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,108 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线4 柔灯港上锚点-4:锚点左上++",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 3032.677734375,
|
||||
"y": 3732.448486328125,
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 3038.5537109375,
|
||||
"y": 3718.4228515625,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 3067.19921875,
|
||||
"y": 3698.43212890625,
|
||||
"type": "target",
|
||||
"move_mode": "dash",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 3079.7314453125,
|
||||
"y": 3675.759765625,
|
||||
"type": "path",
|
||||
"move_mode": "dash",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 3091.7978515625,
|
||||
"y": 3654.750732421875,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(F)",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 3091.7978515625,
|
||||
"y": 3654.750732421875,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(F)",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 3091.7978515625,
|
||||
"y": 3654.750732421875,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 3091.7978515625,
|
||||
"y": 3654.750732421875,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"x": 3092.3,
|
||||
"y": 3654.3,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"x": 3092.3,
|
||||
"y": 3654.3,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,98 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线5 新枫丹科学院左锚点-1:锚点左上",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 4498.1845703125,
|
||||
"y": 4710.78857421875,
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 4496.67333984375,
|
||||
"y": 4741.02978515625,
|
||||
"type": "path",
|
||||
"move_mode": "dash",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 4539.94189453125,
|
||||
"y": 4771.01220703125,
|
||||
"type": "path",
|
||||
"move_mode": "dash",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 4556.0986328125,
|
||||
"y": 4762.41748046875,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(F)",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 4556.0986328125,
|
||||
"y": 4762.41748046875,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(F)",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 4556.0986328125,
|
||||
"y": 4762.41748046875,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 4556.0986328125,
|
||||
"y": 4762.41748046875,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 4556.0986328125,
|
||||
"y": 4762.41748046875,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"x": 4556.0986328125,
|
||||
"y": 4762.41748046875,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,98 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线5 新枫丹科学院左锚点-2:锚点上",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 4498.14990234375,
|
||||
"y": 4710.7763671875,
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 4494.0791015625,
|
||||
"y": 4762.04150390625,
|
||||
"type": "path",
|
||||
"move_mode": "dash",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 4499.02392578125,
|
||||
"y": 4825.24072265625,
|
||||
"type": "path",
|
||||
"move_mode": "dash",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 4517.81201171875,
|
||||
"y": 4866.47802734375,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(F)",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 4517.81201171875,
|
||||
"y": 4866.47802734375,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(F)",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 4517.81201171875,
|
||||
"y": 4866.47802734375,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 4517.81201171875,
|
||||
"y": 4866.47802734375,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 4517.2,
|
||||
"y": 4866.4,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"x": 4517.2,
|
||||
"y": 4866.4,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,75 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线5 新枫丹科学院左锚点-3:科学院左上锚点",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": 4624.357421875,
|
||||
"y": 4951.77880859375,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "teleport"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 4607.47216796875,
|
||||
"y": 4925.97412109375,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 4578.63134765625,
|
||||
"y": 4913.2822265625,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 4578.63134765625,
|
||||
"y": 4913.2822265625,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 4578.63134765625,
|
||||
"y": 4913.2822265625,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 4578.63134765625,
|
||||
"y": 4913.2822265625,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 4577.7,
|
||||
"y": 4912.1,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,98 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线5 新枫丹科学院左锚点-4:科学院左上锚点左上",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 4624.37255859375,
|
||||
"y": 4951.841796875,
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 4635.6494140625,
|
||||
"y": 4951.49755859375,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 4665.64501953125,
|
||||
"y": 4970.13671875,
|
||||
"type": "path",
|
||||
"move_mode": "dash",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 4679.46875,
|
||||
"y": 4977.8310546875,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(F)",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 4679.46875,
|
||||
"y": 4977.8310546875,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(F)",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 4679.46875,
|
||||
"y": 4977.8310546875,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 4679.46875,
|
||||
"y": 4977.8310546875,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 4679.5,
|
||||
"y": 4977.6,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"x": 4679.5,
|
||||
"y": 4977.6,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线6 芒索斯山东麓-1:锚点下",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": 4984.794921875,
|
||||
"y": 4462.982421875,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "teleport"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 4970.0341796875,
|
||||
"y": 4415.9619140625,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 4962.818359375,
|
||||
"y": 4395.8056640625,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 4962.818359375,
|
||||
"y": 4395.8056640625,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 4962.818359375,
|
||||
"y": 4395.8056640625,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 4962.818359375,
|
||||
"y": 4395.8056640625,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 4962.85,
|
||||
"y": 4395.5,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 4962.85,
|
||||
"y": 4395.5,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线6 芒索斯山东麓-2:锚点右",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": 4984.6904296875,
|
||||
"y": 4462.9052734375,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "teleport"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 4952.037109375,
|
||||
"y": 4468.8408203125,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 4952.037109375,
|
||||
"y": 4468.8408203125,
|
||||
"action": "combat_script",
|
||||
"move_mode": "walk",
|
||||
"action_params": "keypress(F)",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 4952.037109375,
|
||||
"y": 4468.8408203125,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 4952.037109375,
|
||||
"y": 4468.8408203125,
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 4952.6,
|
||||
"y": 4468.6,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 4952.6,
|
||||
"y": 4468.6,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "target"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,89 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线6 芒索斯山东麓-3:锚点左",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 4984.75,
|
||||
"y": 4462.9736328125,
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 5032.75048828125,
|
||||
"y": 4492.81201171875,
|
||||
"type": "path",
|
||||
"move_mode": "dash",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 5043.3564453125,
|
||||
"y": 4479.98974609375,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(F)",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 5043.3564453125,
|
||||
"y": 4479.98974609375,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(F)",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 5043.3564453125,
|
||||
"y": 4479.98974609375,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 5043.3564453125,
|
||||
"y": 4479.98974609375,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 5043.7,
|
||||
"y": 4479.4,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 5043.7,
|
||||
"y": 4479.4,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,107 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "枫丹地脉花-路线6 芒索斯山东麓-4:锚点左上",
|
||||
"type": "collect",
|
||||
"author": "平面镜",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"bgiVersion": "0.35.1"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 4984.7451171875,
|
||||
"y": 4462.9365234375,
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 5046.47412109375,
|
||||
"y": 4496.55810546875,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": 5077.7783203125,
|
||||
"y": 4494.84716796875,
|
||||
"type": "path",
|
||||
"move_mode": "dash",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": 5107.18701171875,
|
||||
"y": 4542.48974609375,
|
||||
"type": "path",
|
||||
"move_mode": "dash",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": 5087.0234375,
|
||||
"y": 4573.26708984375,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(F)",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": 5087.0234375,
|
||||
"y": 4573.26708984375,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(F)",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": 5087.0234375,
|
||||
"y": 4573.26708984375,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": 5087.0234375,
|
||||
"y": 4573.26708984375,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"x": 5087.2,
|
||||
"y": 4572.4,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"x": 5087.2,
|
||||
"y": 4572.4,
|
||||
"type": "target",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
}
|
||||
]
|
||||
}
|
||||
220
archive/js/平面镜-枫丹地脉花/main.js
Normal file
220
archive/js/平面镜-枫丹地脉花/main.js
Normal file
@@ -0,0 +1,220 @@
|
||||
(async function () {
|
||||
const startTime = Date.now();
|
||||
setGameMetrics(1920, 1080, 1);
|
||||
|
||||
|
||||
//================= 1.设定路线 =================
|
||||
|
||||
const folder1 = 'assets/枫丹地脉花-路线1 厄里那斯/';
|
||||
const folder2 = 'assets/枫丹地脉花-路线2 秋分山西侧锚点左下/';
|
||||
const folder3 = 'assets/枫丹地脉花-路线3 秋分山西侧锚点右/';
|
||||
const folder4 = 'assets/枫丹地脉花-路线4 柔灯港上锚点/';
|
||||
const folder5 = 'assets/枫丹地脉花-路线5 新枫丹科学院左锚点/';
|
||||
const folder6 = 'assets/枫丹地脉花-路线6 芒索斯山东麓/';
|
||||
|
||||
const pathing1 = [
|
||||
"枫丹地脉花-路线1 厄里那斯-1:厄里那斯神像下.json",
|
||||
"枫丹地脉花-路线1 厄里那斯-2:厄里那斯神像右下.json",
|
||||
"枫丹地脉花-路线1 厄里那斯-3:厄里那斯神像右下_.json",
|
||||
"枫丹地脉花-路线1 厄里那斯-4:厄里那斯神像右下下下.json",
|
||||
"枫丹地脉花-路线1 厄里那斯-5:厄里那斯神像下下下下.json",
|
||||
"枫丹地脉花-路线1 厄里那斯-6:厄里那斯神像下下下.json",
|
||||
];
|
||||
|
||||
const pathing2 = [
|
||||
"枫丹地脉花-路线2 秋分山西侧锚点左下-1:秋分山左下.json",
|
||||
"枫丹地脉花-路线2 秋分山西侧锚点左下-2:秋分山左下+.json",
|
||||
"枫丹地脉花-路线2 秋分山西侧锚点左下-3:秋分山左下下.json",
|
||||
"枫丹地脉花-路线2 秋分山西侧锚点左下-4:秋分山左下下下.json",
|
||||
"枫丹地脉花-路线2 秋分山西侧锚点左下-5:秋分山左左下下.json",
|
||||
];
|
||||
|
||||
const pathing3 = [
|
||||
"枫丹地脉花-路线3 秋分山西侧锚点右-1:锚点右.json",
|
||||
"枫丹地脉花-路线3 秋分山西侧锚点右-2:锚点右右.json",
|
||||
"枫丹地脉花-路线3 秋分山西侧锚点右-3:锚点右右右.json",
|
||||
"枫丹地脉花-路线3 秋分山西侧锚点右-4:东侧锚点上.json",
|
||||
];
|
||||
|
||||
const pathing4 = [
|
||||
"枫丹地脉花-路线4 柔灯港上锚点-1:锚点左上.json",
|
||||
"枫丹地脉花-路线4 柔灯港上锚点-2:锚点左上+.json",
|
||||
"枫丹地脉花-路线4 柔灯港上锚点-3:锚点左左上.json",
|
||||
"枫丹地脉花-路线4 柔灯港上锚点-4:锚点左上++.json",
|
||||
];
|
||||
|
||||
const pathing5 = [
|
||||
"枫丹地脉花-路线5 新枫丹科学院左锚点-1:锚点左上.json",
|
||||
"枫丹地脉花-路线5 新枫丹科学院左锚点-2:锚点上.json",
|
||||
"枫丹地脉花-路线5 新枫丹科学院左锚点-3:科学院左上锚点.json",
|
||||
"枫丹地脉花-路线5 新枫丹科学院左锚点-4:科学院左上锚点左上.json",
|
||||
];
|
||||
|
||||
const pathing6 = [
|
||||
"枫丹地脉花-路线6 芒索斯山东麓-1:锚点下.json",
|
||||
"枫丹地脉花-路线6 芒索斯山东麓-2:锚点右.json",
|
||||
"枫丹地脉花-路线6 芒索斯山东麓-3:锚点左.json",
|
||||
"枫丹地脉花-路线6 芒索斯山东麓-4:锚点左上.json",
|
||||
];
|
||||
|
||||
|
||||
|
||||
|
||||
// ================= 2. 配置读取 =================
|
||||
|
||||
let filePath; // 声明变量
|
||||
if (settings.path === undefined) { // 检查用户是否选了地址
|
||||
log.error("请在游戏中确认想刷地脉的首点位置,然后在js设置中选择路线。",);
|
||||
throw new Error("用户未设置路线,已终止执行"); // 没选就报错后停止
|
||||
}
|
||||
else {
|
||||
filePath = settings.path
|
||||
}
|
||||
|
||||
|
||||
// 路线映射表-将用户设置映射对应路线
|
||||
const pathingMap = {
|
||||
"路线1 厄里那斯": pathing1,
|
||||
"路线2 秋分山西侧锚点左下": pathing2,
|
||||
"路线3 秋分山西侧锚点右": pathing3,
|
||||
"路线4 柔灯港上锚点": pathing4,
|
||||
"路线5 新枫丹科学院左锚点": pathing5,
|
||||
"路线6 芒索斯山东麓": pathing6
|
||||
};
|
||||
|
||||
const folderMap = {
|
||||
"路线1 厄里那斯": folder1,
|
||||
"路线2 秋分山西侧锚点左下": folder2,
|
||||
"路线3 秋分山西侧锚点右": folder3,
|
||||
"路线4 柔灯港上锚点": folder4,
|
||||
"路线5 新枫丹科学院左锚点": folder5,
|
||||
"路线6 芒索斯山东麓": folder6
|
||||
};
|
||||
|
||||
|
||||
// 输出选择的路线
|
||||
log.info(`已选择路线:${settings.path}`);
|
||||
|
||||
// 定义路线常量
|
||||
const selectedPath = pathingMap[filePath];
|
||||
const selectedFolder = folderMap[filePath];
|
||||
|
||||
|
||||
|
||||
// 读取原始次数配置
|
||||
const rawTimes = settings.times ? settings.times : "6";
|
||||
|
||||
// 验证是否为数字
|
||||
let timesValue;
|
||||
if (!/^-?\d+\.?\d*$/.test(rawTimes)) { // 匹配整数和小数
|
||||
timesValue = 6
|
||||
log.info("⚠️ 刷本次数设置不为数字,改为默认值6");
|
||||
} else {
|
||||
// 转换为数字
|
||||
const num = parseFloat(rawTimes);
|
||||
|
||||
// 范围检查
|
||||
if (num < 1) {
|
||||
timesValue = 1;
|
||||
log.info(`⚠️ 次数 ${num} 小于1,已调整为1`);
|
||||
} else if (num > 6) {
|
||||
timesValue = 6;
|
||||
log.info(`⚠️ 次数 ${num} 大于6,已调整为6`);
|
||||
} else {
|
||||
// 处理小数
|
||||
if (!Number.isInteger(num)) {
|
||||
timesValue = Math.floor(num);
|
||||
log.info(`⚠️ 次数 ${num} 不是整数,已向下取整为 ${timesValue}`);
|
||||
} else {
|
||||
timesValue = num;
|
||||
}
|
||||
}
|
||||
}
|
||||
const timesConfig = { value: timesValue };
|
||||
|
||||
//已定义好路线路径、刷本次数的常量。现在需要定义领取动作,并做刷本动作,并保持自动拾取关闭。路线为selectedFolder+selectedPath,次数为timesConfig
|
||||
|
||||
|
||||
//路径存在性检查
|
||||
|
||||
|
||||
if (selectedPath) {
|
||||
for (const jsonFile of selectedPath) {
|
||||
|
||||
}
|
||||
} else {
|
||||
throw new Error("未找到路径文件");
|
||||
}
|
||||
|
||||
|
||||
//定义领取动作
|
||||
async function claimRewards() {
|
||||
|
||||
log.info("尝试领取奖励,优先使用浓缩,按下两次esc避免使用月亮");
|
||||
|
||||
for (let i = 0; i < 6; i++) {
|
||||
keyPress("F");
|
||||
await sleep(i < 5 ? 400 : 600);
|
||||
}
|
||||
|
||||
click(918, 760);
|
||||
await sleep(1600);
|
||||
|
||||
keyPress("VK_ESCAPE");
|
||||
await sleep(800);
|
||||
keyPress("VK_ESCAPE");
|
||||
await sleep(800);
|
||||
|
||||
}
|
||||
//定义了领取动作为claimRewards
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// ================= 3. 主执行逻辑 =================
|
||||
try {
|
||||
|
||||
// 计算实际执行次数(取用户设置次数与路线长度的最小值)
|
||||
const maxExecutions = Math.min(timesConfig.value, selectedPath.length);
|
||||
log.info(`本条路线执行至第 ${maxExecutions} 朵花`);
|
||||
|
||||
// 按顺序执行路径文件
|
||||
let executedCount = 0;
|
||||
for (const jsonFile of selectedPath) {
|
||||
if (executedCount >= maxExecutions) {
|
||||
log.info("已达到执行次数,终止运行");
|
||||
break; // 条件1触发:次数限制
|
||||
}
|
||||
|
||||
// 关闭自动拾取
|
||||
dispatcher.addTimer(new RealtimeTimer("AutoPick", { forceInteraction: false }));
|
||||
|
||||
// 执行单个路径文件
|
||||
log.info(`开始执行第 ${executedCount + 1}/${maxExecutions} 次路径:${jsonFile}`);
|
||||
|
||||
await pathingScript.runFile(`${selectedFolder}${jsonFile}`);
|
||||
|
||||
// 领取奖励
|
||||
log.info(`此时应该可以按F接触地脉花`);
|
||||
log.info(`开始第 ${executedCount + 1} 朵花的奖励领取`);
|
||||
await claimRewards();
|
||||
|
||||
// 确保重新开启自动拾取
|
||||
dispatcher.addTimer(new RealtimeTimer("AutoPick", { forceInteraction: true }));
|
||||
|
||||
|
||||
// 冷却等待(可选)
|
||||
await sleep(1000);
|
||||
|
||||
executedCount++;
|
||||
}
|
||||
|
||||
log.info("本次地脉花路线已执行完毕。");
|
||||
} catch (error) {
|
||||
log.error(`执行过程中发生错误:${error.message}`);
|
||||
}
|
||||
|
||||
|
||||
|
||||
})();
|
||||
20
archive/js/平面镜-枫丹地脉花/manifest.json
Normal file
20
archive/js/平面镜-枫丹地脉花/manifest.json
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"manifest_version": 1,
|
||||
"name": "平面镜-枫丹地脉花",
|
||||
"version": "1.0",
|
||||
"bgi_version": "0.42.0",
|
||||
"description": "枫丹地脉花,蓝花金花通用。生存压力大,请带盾奶;避免纯水输出。地脉花特殊,请注意说明文件。作者qq:2197349034 加我请说明来意。",
|
||||
"authors": [
|
||||
{
|
||||
"name": "平面镜",
|
||||
|
||||
}
|
||||
],
|
||||
"settings_ui": "settings.json",
|
||||
"main": "main.js",
|
||||
"versionLog": {
|
||||
"v1.0": [
|
||||
"感谢大佬们的付出"
|
||||
]
|
||||
}
|
||||
}
|
||||
22
archive/js/平面镜-枫丹地脉花/settings.json
Normal file
22
archive/js/平面镜-枫丹地脉花/settings.json
Normal file
@@ -0,0 +1,22 @@
|
||||
[
|
||||
{
|
||||
"name": "path",
|
||||
"type": "select",
|
||||
"label": "路线(必选)",
|
||||
"options": [
|
||||
"路线1 厄里那斯",
|
||||
"路线2 秋分山西侧锚点左下",
|
||||
"路线3 秋分山西侧锚点右",
|
||||
"路线4 柔灯港上锚点",
|
||||
"路线5 新枫丹科学院左锚点",
|
||||
"路线6 芒索斯山东麓"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "times",
|
||||
"type": "input-text",
|
||||
"label": "单路线刷取次数(可填1-6),默认6打完整条线",
|
||||
},
|
||||
|
||||
|
||||
]
|
||||
BIN
archive/js/平面镜-枫丹地脉花/路线1-厄里那斯神像下.png
Normal file
BIN
archive/js/平面镜-枫丹地脉花/路线1-厄里那斯神像下.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 620 KiB |
BIN
archive/js/平面镜-枫丹地脉花/路线2-秋分山.png
Normal file
BIN
archive/js/平面镜-枫丹地脉花/路线2-秋分山.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 225 KiB |
BIN
archive/js/平面镜-枫丹地脉花/路线3-秋分山2.png
Normal file
BIN
archive/js/平面镜-枫丹地脉花/路线3-秋分山2.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 233 KiB |
BIN
archive/js/平面镜-枫丹地脉花/路线4-柔灯港上.png
Normal file
BIN
archive/js/平面镜-枫丹地脉花/路线4-柔灯港上.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 372 KiB |
BIN
archive/js/平面镜-枫丹地脉花/路线5-新枫丹科学院左.png
Normal file
BIN
archive/js/平面镜-枫丹地脉花/路线5-新枫丹科学院左.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 314 KiB |
BIN
archive/js/平面镜-枫丹地脉花/路线6-芒索斯山东麓.png
Normal file
BIN
archive/js/平面镜-枫丹地脉花/路线6-芒索斯山东麓.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 380 KiB |
81
archive/js/快速早6点/main.js
Normal file
81
archive/js/快速早6点/main.js
Normal file
@@ -0,0 +1,81 @@
|
||||
(async function () {
|
||||
// 设置游戏分辨率和DPI缩放
|
||||
setGameMetrics(1920, 1080, 1);
|
||||
// 圆心坐标
|
||||
const centerX = 1441;
|
||||
const centerY = 501.6;
|
||||
// 半径
|
||||
const r1 = 30;
|
||||
const r2 = 150;
|
||||
const r3 = 300;
|
||||
const stepDuration = 50;
|
||||
|
||||
function getPosition(r, index) {
|
||||
let angle = index * Math.PI / 720;
|
||||
return [Math.round(centerX + r * Math.cos(angle)), Math.round(centerY + r * Math.sin(angle))];
|
||||
}
|
||||
async function mouseClick(x, y) {
|
||||
moveMouseTo(x, y);
|
||||
await sleep(50);
|
||||
leftButtonDown();
|
||||
await sleep(50);
|
||||
leftButtonUp();
|
||||
await sleep(stepDuration);
|
||||
}
|
||||
async function mouseClickAndMove(x1, y1, x2, y2) {
|
||||
moveMouseTo(x1, y1);
|
||||
await sleep(50);
|
||||
leftButtonDown();
|
||||
await sleep(50);
|
||||
moveMouseTo(x2, y2);
|
||||
await sleep(50);
|
||||
leftButtonUp();
|
||||
await sleep(stepDuration);
|
||||
}
|
||||
async function setTime(hour, minute) {
|
||||
const end = (hour + 6) * 60 + minute-20;
|
||||
const n = 3;
|
||||
for (let i = - n + 1; i < 1; i++) {
|
||||
let [x,y] = getPosition(r1, end + i * 1440 / n);
|
||||
await mouseClick(x, y);
|
||||
}
|
||||
let [x1,y1] = getPosition(r2, end + 5);
|
||||
let [x2, y2] = getPosition(r3, end + 20 + 0.5);
|
||||
await mouseClickAndMove(x1, y1, x2, y2);
|
||||
}
|
||||
async function cancelAni() {
|
||||
moveMouseTo(200, 200);
|
||||
leftButtonDown();
|
||||
await(10);
|
||||
leftButtonUp();
|
||||
}
|
||||
const hour = 6;
|
||||
const minute = 0;
|
||||
let h = Math.floor(hour+minute/60);
|
||||
const m = Math.floor(hour*60+minute)-h*60;
|
||||
h = ((h % 24) + 24) % 24;
|
||||
log.info(`设置时间到 ${h} 点 ${m} 分`);
|
||||
await keyPress("Escape");
|
||||
await sleep(1000);
|
||||
await click(50,700);
|
||||
await sleep(1000);
|
||||
await setTime(h, m);
|
||||
await sleep(500);
|
||||
|
||||
// 点击确认
|
||||
await click(1500,1000);
|
||||
|
||||
// 跳过调整动画
|
||||
await sleep(1);
|
||||
await cancelAni();
|
||||
await sleep(1000);
|
||||
await click(45,715);
|
||||
|
||||
// 重新进入调时间界面以消除调时间的声音
|
||||
await sleep(600);
|
||||
await keyPress("Escape");
|
||||
|
||||
// 退出派蒙界面
|
||||
await sleep(600);
|
||||
await keyPress("Escape");
|
||||
})();
|
||||
13
archive/js/快速早6点/manifest.json
Normal file
13
archive/js/快速早6点/manifest.json
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"manifest_version": 1,
|
||||
"name": "快速早6点",
|
||||
"version": "1.0",
|
||||
"bgi_version": "0.42.0",
|
||||
"description": "快速调整时间到早上6点",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Tim & 子寻"
|
||||
}
|
||||
],
|
||||
"main": "main.js"
|
||||
}
|
||||
81
archive/js/快速晚6点/main.js
Normal file
81
archive/js/快速晚6点/main.js
Normal file
@@ -0,0 +1,81 @@
|
||||
(async function () {
|
||||
// 设置游戏分辨率和DPI缩放
|
||||
setGameMetrics(1920, 1080, 1);
|
||||
// 圆心坐标
|
||||
const centerX = 1441;
|
||||
const centerY = 501.6;
|
||||
// 半径
|
||||
const r1 = 30;
|
||||
const r2 = 150;
|
||||
const r3 = 300;
|
||||
const stepDuration = 50;
|
||||
|
||||
function getPosition(r, index) {
|
||||
let angle = index * Math.PI / 720;
|
||||
return [Math.round(centerX + r * Math.cos(angle)), Math.round(centerY + r * Math.sin(angle))];
|
||||
}
|
||||
async function mouseClick(x, y) {
|
||||
moveMouseTo(x, y);
|
||||
await sleep(50);
|
||||
leftButtonDown();
|
||||
await sleep(50);
|
||||
leftButtonUp();
|
||||
await sleep(stepDuration);
|
||||
}
|
||||
async function mouseClickAndMove(x1, y1, x2, y2) {
|
||||
moveMouseTo(x1, y1);
|
||||
await sleep(50);
|
||||
leftButtonDown();
|
||||
await sleep(50);
|
||||
moveMouseTo(x2, y2);
|
||||
await sleep(50);
|
||||
leftButtonUp();
|
||||
await sleep(stepDuration);
|
||||
}
|
||||
async function setTime(hour, minute) {
|
||||
const end = (hour + 6) * 60 + minute-20;
|
||||
const n = 3;
|
||||
for (let i = - n + 1; i < 1; i++) {
|
||||
let [x,y] = getPosition(r1, end + i * 1440 / n);
|
||||
await mouseClick(x, y);
|
||||
}
|
||||
let [x1,y1] = getPosition(r2, end + 5);
|
||||
let [x2, y2] = getPosition(r3, end + 20 + 0.5);
|
||||
await mouseClickAndMove(x1, y1, x2, y2);
|
||||
}
|
||||
async function cancelAni() {
|
||||
moveMouseTo(200, 200);
|
||||
leftButtonDown();
|
||||
await(10);
|
||||
leftButtonUp();
|
||||
}
|
||||
const hour = 18;
|
||||
const minute = 0;
|
||||
let h = Math.floor(hour+minute/60);
|
||||
const m = Math.floor(hour*60+minute)-h*60;
|
||||
h = ((h % 24) + 24) % 24;
|
||||
log.info(`设置时间到 ${h} 点 ${m} 分`);
|
||||
await keyPress("Escape");
|
||||
await sleep(1000);
|
||||
await click(50,700);
|
||||
await sleep(1000);
|
||||
await setTime(h, m);
|
||||
await sleep(500);
|
||||
|
||||
// 点击确认
|
||||
await click(1500,1000);
|
||||
|
||||
// 跳过调整动画
|
||||
await sleep(1);
|
||||
await cancelAni();
|
||||
await sleep(1000);
|
||||
await click(45,715);
|
||||
|
||||
// 重新进入调时间界面以消除调时间的声音
|
||||
await sleep(600);
|
||||
await keyPress("Escape");
|
||||
|
||||
// 退出派蒙界面
|
||||
await sleep(600);
|
||||
await keyPress("Escape");
|
||||
})();
|
||||
13
archive/js/快速晚6点/manifest.json
Normal file
13
archive/js/快速晚6点/manifest.json
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"manifest_version": 1,
|
||||
"name": "快速晚6点",
|
||||
"version": "1.0",
|
||||
"bgi_version": "0.42.0",
|
||||
"description": "快速调整时间到晚上6点",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Tim & 子寻"
|
||||
}
|
||||
],
|
||||
"main": "main.js"
|
||||
}
|
||||
28
archive/js/时瞬/main.js
Normal file
28
archive/js/时瞬/main.js
Normal file
@@ -0,0 +1,28 @@
|
||||
(async function () {
|
||||
// 设置游戏分辨率和DPI缩放
|
||||
setGameMetrics(1920, 1080, 1);
|
||||
|
||||
async function cancelAni() {
|
||||
moveMouseTo(200, 200);
|
||||
leftButtonDown();
|
||||
await(10);
|
||||
leftButtonUp();
|
||||
}
|
||||
|
||||
// 点击确认
|
||||
await click(1500,1000);
|
||||
|
||||
// 跳过调整动画
|
||||
await sleep(1);
|
||||
await cancelAni();
|
||||
await sleep(1000);
|
||||
await click(45,715);
|
||||
|
||||
// 重新进入调时间界面以消除调时间的声音
|
||||
await sleep(600);
|
||||
await keyPress("Escape");
|
||||
|
||||
// 退出派蒙界面
|
||||
await sleep(600);
|
||||
await keyPress("Escape");
|
||||
})();
|
||||
13
archive/js/时瞬/manifest.json
Normal file
13
archive/js/时瞬/manifest.json
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"manifest_version": 1,
|
||||
"name": "时瞬",
|
||||
"version": "1.0",
|
||||
"bgi_version": "0.42.0",
|
||||
"description": "手动旋转指针到目标时间,执行此脚本帮你点击确定并跳过时间变动的动画",
|
||||
"authors": [
|
||||
{
|
||||
"name": "子寻"
|
||||
}
|
||||
],
|
||||
"main": "main.js"
|
||||
}
|
||||
68
archive/js/等待到指定时间(默认凌晨4点)/main.js
Normal file
68
archive/js/等待到指定时间(默认凌晨4点)/main.js
Normal file
@@ -0,0 +1,68 @@
|
||||
(async function () {
|
||||
|
||||
const defaultHours = 4;
|
||||
const defaultMinutes = 0;
|
||||
|
||||
function validateAndSetDefaults(specifyHours, specifyMinutes) {
|
||||
if (isNaN(specifyHours) || specifyHours > 23 || specifyHours == '') {
|
||||
if (specifyHours > 23) {
|
||||
log.warn("设置指定时间错误,请使用 0~23 时,将使用默认值:4时");
|
||||
}
|
||||
else {
|
||||
log.warn("你没有设置指定时,将使用默认值:4时");
|
||||
}
|
||||
|
||||
specifyHours = defaultHours;
|
||||
}
|
||||
if (isNaN(specifyMinutes) || specifyMinutes > 59 || specifyMinutes == '') {
|
||||
if (specifyMinutes > 59) {
|
||||
log.warn("设置指定时间错误,请使用 0~59 分,将使用默认值:0分");
|
||||
} else {
|
||||
log.warn("你没有设置指定分钟,将使用默认值:0分");
|
||||
}
|
||||
specifyMinutes = defaultMinutes;
|
||||
}
|
||||
log.info(`---------------将等待至 ${specifyHours}:${specifyMinutes} ---------------`)
|
||||
return { specifyHours, specifyMinutes };
|
||||
}
|
||||
|
||||
// 計算相差時間微秒
|
||||
function getTimeUntilNextTime(validatedHours, validatedMinutes) {
|
||||
const now = new Date();
|
||||
const nextTime = new Date(
|
||||
now.getFullYear(),
|
||||
now.getMonth(),
|
||||
now.getDate(),
|
||||
validatedHours, validatedMinutes, 0, 0
|
||||
);
|
||||
|
||||
// 如果現在時間已經過了今天的 4 點,則計算明天的 4 點
|
||||
if (now >= nextTime) {
|
||||
nextTime.setDate(nextTime.getDate() + 1);
|
||||
}
|
||||
|
||||
return nextTime - now;
|
||||
}
|
||||
|
||||
setGameMetrics(1920, 1080, 2);
|
||||
// 启用自动拾取的实时任务
|
||||
dispatcher.addTimer(new RealtimeTimer("AutoPick"));
|
||||
// 启用自动剧情的实时任务
|
||||
dispatcher.addTimer(new RealtimeTimer("AutoSkip"));
|
||||
// 讀取參數
|
||||
let specifyHours = Number(settings.specifyHours);
|
||||
let specifyMinutes = Number(settings.specifyMinutes);
|
||||
|
||||
const { specifyHours: validatedHours, specifyMinutes: validatedMinutes } = validateAndSetDefaults(specifyHours, specifyMinutes);
|
||||
|
||||
// 計算相差時間微秒
|
||||
const timeUntilNextTime = getTimeUntilNextTime(validatedHours, validatedMinutes);
|
||||
log.info(`等待 ${Math.floor((timeUntilNextTime / 60000 / 60))} 小时 ${(timeUntilNextTime / 60000 % 60).toFixed(0)} 分 ,直到下一个 ${validatedHours} : ${validatedMinutes}`);
|
||||
// 多等待10秒
|
||||
await sleep(timeUntilNextTime + 10000);
|
||||
log.info(`时间到了!现在是 ${specifyHours}:${specifyMinutes}`);
|
||||
|
||||
//1秒 = 1000 毫秒
|
||||
//10秒 = 10000 毫秒
|
||||
//1分鐘 = 60000 毫秒
|
||||
})();
|
||||
16
archive/js/等待到指定时间(默认凌晨4点)/manifest.json
Normal file
16
archive/js/等待到指定时间(默认凌晨4点)/manifest.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"manifest_version": 1,
|
||||
"name": "等待到指定时间(默认凌晨4点)",
|
||||
"version": "1.0",
|
||||
"bgi_version": "0.42.0",
|
||||
"description": "等待到指定时间(默认凌晨4点),适用于等到第二天4点执行其他任务",
|
||||
"authors": [
|
||||
{
|
||||
"name": "蜜柑魚",
|
||||
"link": "https://github.com/this-Fish"
|
||||
}
|
||||
],
|
||||
"settings_ui": "settings.json",
|
||||
"main": "main.js"
|
||||
}
|
||||
|
||||
12
archive/js/等待到指定时间(默认凌晨4点)/settings.json
Normal file
12
archive/js/等待到指定时间(默认凌晨4点)/settings.json
Normal file
@@ -0,0 +1,12 @@
|
||||
[
|
||||
{
|
||||
"name": "specifyHours",
|
||||
"type": "input-text",
|
||||
"label": "指定等待直到下一个 HH:MM 的时(默认:4)"
|
||||
},
|
||||
{
|
||||
"name": "specifyMinutes",
|
||||
"type": "input-text",
|
||||
"label": "指定等待直到下一个 HH:MM 的分钟(默认:0)"
|
||||
}
|
||||
]
|
||||
36
archive/js/自动领取兑换码/main.js
Normal file
36
archive/js/自动领取兑换码/main.js
Normal file
@@ -0,0 +1,36 @@
|
||||
(
|
||||
async function () {
|
||||
const codes = [
|
||||
"NODKRAI0910",
|
||||
"VOYNICHGUILD",
|
||||
"THEWILDHUNT",
|
||||
"LIGHTKEEPERS",
|
||||
"FROSTMOONSCIONS"
|
||||
];
|
||||
//输入兑换码,兑换码与兑换码之间要以英文逗号隔开,如: "123","123",兑换码要用""框起
|
||||
await sleep(3000);
|
||||
keyPress("VK_ESCAPE");
|
||||
await sleep(1000);
|
||||
click(55,793);
|
||||
await sleep(1000);
|
||||
click(162,569);
|
||||
await sleep(1000);
|
||||
click(1649,210);
|
||||
await sleep(1000);
|
||||
keyDown("VK_LSHIFT");
|
||||
keyUp("VK_LSHIFT");
|
||||
for (const code of codes){
|
||||
click(734,506);
|
||||
await sleep(1000);
|
||||
for(const cod of code){
|
||||
keyPress("VK_"+cod);
|
||||
}
|
||||
//keyUp("VK_LSHIFT");
|
||||
await sleep(1000);
|
||||
click(1164,735);
|
||||
await sleep(1000);
|
||||
click(991,744);
|
||||
await sleep(5500);
|
||||
}
|
||||
}
|
||||
)();
|
||||
17
archive/js/自动领取兑换码/manifest.json
Normal file
17
archive/js/自动领取兑换码/manifest.json
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"manifest_version": 1,
|
||||
"name": "领取兑换码", // 名称
|
||||
"version": "1.0", // 版本
|
||||
"bgi_version": "0.36.1", // 适用于 BetterGI 的最低版本,BetterGI低于此版本会提示
|
||||
"description": "自动领兑换码,自行打开main.js配置,适用多账号玩家。", // 描述
|
||||
// 作者信息
|
||||
"authors": [
|
||||
{
|
||||
"name": "白玉狻猊",
|
||||
"link": "https://github.com/LaughingCatGGG"
|
||||
}
|
||||
],
|
||||
// 入口文件
|
||||
"main": "main.js"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user