js:锄地一条龙1.18.0 (#2644)
* js:锄地一条龙 1.增加实验路线,按需自行加入 2.适配水下路线 3.增加吃buff药 4.优化校验机制,允许用户无视校验强行运行 * 简化免责声明流程 * Update main.js 增加校验未通过时的日志提示
BIN
repo/js/AutoHoeingOneDragon/assets/使用.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
58
repo/js/AutoHoeingOneDragon/assets/学习螃蟹技能.json
Normal file
@@ -0,0 +1,58 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "https://github.com/cheese-bagel",
|
||||
"name": "芝士贝果"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": "",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767785084806,
|
||||
"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": 4399.8906,
|
||||
"y": 3083.4001
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "attack;wait(0.5);moveby(0,2285);wait(0.5);attack;click(middle)",
|
||||
"id": 2,
|
||||
"move_mode": "walk",
|
||||
"type": "orientation",
|
||||
"x": 4421.7334,
|
||||
"y": 3081.2798
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "attack;wait(0.5);moveby(0,2285);wait(0.5);attack;click(middle)",
|
||||
"id": 3,
|
||||
"move_mode": "walk",
|
||||
"type": "orientation",
|
||||
"x": 4413.1172,
|
||||
"y": 3106.9414
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "attack;wait(0.5);moveby(0,2285);wait(0.5);attack",
|
||||
"id": 4,
|
||||
"move_mode": "walk",
|
||||
"type": "orientation",
|
||||
"x": 4390.1826,
|
||||
"y": 3099.9868
|
||||
}
|
||||
]
|
||||
}
|
||||
BIN
repo/js/AutoHoeingOneDragon/assets/搜索.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
repo/js/AutoHoeingOneDragon/assets/料理界面.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
repo/js/AutoHoeingOneDragon/assets/确认筛选.png
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
repo/js/AutoHoeingOneDragon/assets/筛选1.png
Normal file
|
After Width: | Height: | Size: 941 B |
BIN
repo/js/AutoHoeingOneDragon/assets/筛选2.png
Normal file
|
After Width: | Height: | Size: 892 B |
BIN
repo/js/AutoHoeingOneDragon/assets/螃蟹技能图标.png
Normal file
|
After Width: | Height: | Size: 3.9 KiB |
BIN
repo/js/AutoHoeingOneDragon/assets/重置.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
@@ -1,4 +1,4 @@
|
||||
//当前js版本1.15.0
|
||||
//当前js版本1.18.0
|
||||
|
||||
let timeMoveUp;
|
||||
let timeMoveDown;
|
||||
@@ -60,6 +60,8 @@ let excludeTags;
|
||||
|
||||
let runningFailCount = 0;
|
||||
|
||||
let lastEatBuff = 0;
|
||||
|
||||
(async function () {
|
||||
if (settings.groupIndex === "路径组一") {
|
||||
const cfg = {
|
||||
@@ -221,59 +223,53 @@ let runningFailCount = 0;
|
||||
|
||||
const avatars = Array.from(getAvatars?.() || []);
|
||||
|
||||
// 拼接队伍字符串,放在 switch 之前
|
||||
let teamStr = '';
|
||||
for (let k = 0; k < avatars.length; k++) {
|
||||
teamStr += avatars[k];
|
||||
if (k < avatars.length - 1) teamStr += '、';
|
||||
}
|
||||
log.info('当前队伍:' + teamStr);
|
||||
let haveProblem = false;
|
||||
|
||||
switch (true) {
|
||||
case targetEliteNum <= 350 && targetMonsterNum >= 100:
|
||||
log.warn("目标怪物数量配置不合理,建议重新阅读 readme 相关部分");
|
||||
if (settings.skipCheck) {
|
||||
log.warn("确认跳过校验阶段,任何包括但不限于漏怪、卡死、不拾取等问题均由自己配置与队伍等引起,与脚本和路线无关");
|
||||
} else {
|
||||
if (targetEliteNum <= 350 && targetMonsterNum >= 100) {
|
||||
log.warn("目标怪物数量配置不合理,请重新阅读 readme 相关部分");
|
||||
await sleep(5000);
|
||||
log.warn("目标怪物数量配置不合理,建议重新阅读 readme 相关部分");
|
||||
haveProblem = true;
|
||||
}
|
||||
if (genshin.width !== 1920 || genshin.height !== 1080) {
|
||||
log.warn("游戏窗口非 1920×1080,可能导致图像识别失败,造成拾取等行为异常");
|
||||
await sleep(5000);
|
||||
log.warn("目标怪物数量配置不合理,建议重新阅读 readme 相关部分");
|
||||
haveProblem = true;
|
||||
}
|
||||
if (avatars.includes('钟离')) {
|
||||
log.warn("当前队伍包含钟离,请重新阅读 readme 相关部分");
|
||||
await sleep(5000);
|
||||
log.warn("目标怪物数量配置不合理,建议重新阅读 readme 相关部分");
|
||||
haveProblem = true;
|
||||
}
|
||||
if (!['芙宁娜', '爱可菲'].some(n => avatars.includes(n))) {
|
||||
log.warn("未携带合适的输出角色(芙宁娜/爱可菲),建议重新阅读 readme 相关部分");
|
||||
await sleep(5000);
|
||||
break;
|
||||
|
||||
case genshin.width !== 1920 || genshin.height !== 1080:
|
||||
log.warn("游戏窗口非 1920×1080,可能导致图像识别失败,如果执意使用可能造成拾取等行为异常,后果自负");
|
||||
await sleep(5000);
|
||||
log.warn("游戏窗口非 1920×1080,可能导致图像识别失败,如果执意使用可能造成拾取等行为异常,后果自负");
|
||||
await sleep(5000);
|
||||
log.warn("游戏窗口非 1920×1080,可能导致图像识别失败,如果执意使用可能造成拾取等行为异常,后果自负");
|
||||
await sleep(5000);
|
||||
log.warn("游戏窗口非 1920×1080,可能导致图像识别失败,如果执意使用可能造成拾取等行为异常,后果自负");
|
||||
await sleep(5000);
|
||||
break;
|
||||
|
||||
case ['钟离', '芙宁娜', '纳西妲', '雷电将军'].every(n => avatars.includes(n)):
|
||||
log.warn("四神队不适合锄地,建议重新阅读 readme 相关部分");
|
||||
await sleep(10000);
|
||||
return;
|
||||
|
||||
case avatars.includes('钟离'):
|
||||
log.warn("当前队伍包含钟离,不适合锄地,建议重新阅读 readme 相关部分");
|
||||
await sleep(5000);
|
||||
break;
|
||||
|
||||
case !['芙宁娜', '爱可菲', '玛薇卡'].some(n => avatars.includes(n)):
|
||||
log.warn("未携带合适的输出角色(芙宁娜/爱可菲/玛薇卡),建议重新阅读 readme 相关部分");
|
||||
await sleep(5000);
|
||||
break;
|
||||
|
||||
case !['茜特菈莉', '伊涅芙', '莱依拉', '蓝砚', '白术', '琦良良', '迪希雅', '迪奥娜']
|
||||
.some(n => avatars.includes(n)):
|
||||
haveProblem = true;
|
||||
}
|
||||
if (!['茜特菈莉', '伊涅芙', '莱依拉', '蓝砚', '琦良良', '迪希雅', '迪奥娜']
|
||||
.some(n => avatars.includes(n))) {
|
||||
log.warn("未携带合适的抗打断角色(茜特菈莉/伊涅芙/莱依拉/蓝砚/白术/琦良良/迪希雅/迪奥娜)");
|
||||
await sleep(5000);
|
||||
break;
|
||||
haveProblem = true;
|
||||
}
|
||||
if (haveProblem) {
|
||||
log.warn("校验未通过,请按照以上提示修改,或者在自定义配置中勾选以跳过校验阶段");
|
||||
return;
|
||||
}
|
||||
}
|
||||
if (['钟离', '芙宁娜', '纳西妲', '雷电将军'].every(n => avatars.includes(n))) {
|
||||
log.warn("禁止使用四神队,请重新阅读 readme 相关部分");
|
||||
await sleep(5000);
|
||||
return;
|
||||
}
|
||||
|
||||
log.info("开始运行锄地路线");
|
||||
await updateRecords(pathings, accountName);
|
||||
await processPathingsByGroup(pathings, accountName);
|
||||
@@ -652,6 +648,34 @@ async function runPath(fullPath, map_name) {
|
||||
doFurinaSwitch = false;
|
||||
await pathingScript.runFile("assets/强制黑芙.json");
|
||||
}
|
||||
if (settings.eatBuff) {
|
||||
const res = settings.eatBuff.split(',');
|
||||
if (new Date() - lastEatBuff > 300 * 1000) {
|
||||
lastEatBuff = new Date();
|
||||
await genshin.returnMainUi();
|
||||
keyPress("B");
|
||||
await clickPNG("料理界面");
|
||||
// 2. 遍历数组,逐项执行
|
||||
for (const item of res) {
|
||||
await sleep(800);
|
||||
await clickPNG('筛选1', 1);
|
||||
await clickPNG('筛选2', 1);
|
||||
await clickPNG('重置');
|
||||
await sleep(500);
|
||||
await clickPNG('搜索');
|
||||
await sleep(800);
|
||||
// 真正输入当前这一项
|
||||
log.info(`搜索${item}`)
|
||||
inputText(item);
|
||||
|
||||
await clickPNG('确认筛选');
|
||||
await sleep(500);
|
||||
await clickPNG('使用');
|
||||
}
|
||||
await genshin.returnMainUi();
|
||||
}
|
||||
|
||||
}
|
||||
/* ===== 1. 取得当前路线对象 ===== */
|
||||
let currentPathing = null;
|
||||
for (let i = 0; i < pathings.length; i++) {
|
||||
@@ -660,6 +684,16 @@ async function runPath(fullPath, map_name) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (currentPathing.tags) {
|
||||
if (currentPathing.tags.includes("水下")) {
|
||||
log.info("当前路线为水下路线,检查螃蟹技能");
|
||||
let skillRes = await findPNG("螃蟹技能图标");
|
||||
if (!skillRes) {
|
||||
log.info("识别到没有螃蟹技能,前往获取");
|
||||
await pathingScript.runFile("assets/学习螃蟹技能.json");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* ===== 2. 重排 targetItems:当前路线拾取过的提前 ===== */
|
||||
if (targetItems && currentPathing && currentPathing.items && currentPathing.items.length) {
|
||||
@@ -1442,7 +1476,7 @@ async function processPathingsByGroup(pathings, accountName) {
|
||||
let skippedTime = 0;
|
||||
//移除不必要的属性
|
||||
{
|
||||
const keysToDelete = ['monsterInfo', 'mora_m', 'mora_e', 'available', 'prioritized', 'G1', 'G2', 'index', 'folderPathArray', 'tags', 'E1', 'E2']; // 删除的字段列表
|
||||
const keysToDelete = ['monsterInfo', 'mora_m', 'mora_e', 'available', 'prioritized', 'G1', 'G2', 'index', 'folderPathArray', 'E1', 'E2']; // 删除的字段列表
|
||||
pathings.forEach(p => {
|
||||
keysToDelete.forEach(k => delete p[k]);
|
||||
});
|
||||
@@ -1817,3 +1851,31 @@ async function isTimeRestricted(timeRule, threshold = 5) {
|
||||
log.info("不处于限制时间");
|
||||
return false;
|
||||
}
|
||||
|
||||
async function clickPNG(png, maxAttempts = 20) {
|
||||
//log.info(`调试-点击目标${png},重试次数${maxAttempts}`);
|
||||
const pngRo = RecognitionObject.TemplateMatch(file.ReadImageMatSync(`assets/${png}.png`));
|
||||
pngRo.Threshold = 0.95;
|
||||
pngRo.InitTemplate();
|
||||
return await findAndClick(pngRo, true, maxAttempts);
|
||||
}
|
||||
|
||||
async function findPNG(png, maxAttempts = 20) {
|
||||
//log.info(`调试-识别目标${png},重试次数${maxAttempts}`);
|
||||
const pngRo = RecognitionObject.TemplateMatch(file.ReadImageMatSync(`assets/${png}.png`));
|
||||
pngRo.Threshold = 0.95;
|
||||
pngRo.InitTemplate();
|
||||
return await findAndClick(pngRo, false, maxAttempts);
|
||||
}
|
||||
|
||||
async function findAndClick(target, doClick = true, maxAttempts = 60) {
|
||||
for (let i = 0; i < maxAttempts; i++) {
|
||||
const rg = captureGameRegion();
|
||||
try {
|
||||
const res = rg.find(target);
|
||||
if (res.isExist()) { await sleep(50 * 2 + 50); if (doClick) { res.click(); } return true; }
|
||||
} finally { rg.dispose(); }
|
||||
if (i < maxAttempts - 1) await sleep(50);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"manifest_version": 1,
|
||||
"name": "锄地一条龙",
|
||||
"version": "1.17.0",
|
||||
"version": "1.18.0",
|
||||
"description": "一站式解决自动化锄地,支持只拾取狗粮,请仔细阅读README.md后使用",
|
||||
"authors": [
|
||||
{
|
||||
|
||||
@@ -33,6 +33,17 @@
|
||||
"type": "input-text",
|
||||
"label": "本路径组使用配队名称"
|
||||
},
|
||||
{
|
||||
"name": "sortMode",
|
||||
"type": "select",
|
||||
"label": "组内路线排序模式",
|
||||
"options": [
|
||||
"原文件顺序",
|
||||
"效率降序",
|
||||
"高收益优先"
|
||||
],
|
||||
"default": "原文件顺序"
|
||||
},
|
||||
{
|
||||
"name": "pickup_Mode",
|
||||
"type": "select",
|
||||
@@ -45,6 +56,21 @@
|
||||
],
|
||||
"default": "模板匹配拾取,拾取狗粮和怪物材料"
|
||||
},
|
||||
{
|
||||
"name": "activeDumperMode",
|
||||
"type": "input-text",
|
||||
"label": "泥头车模式,将在接近战斗点前提前释放部分角色e技能\n需要启用时填写这些角色在队伍中的编号\n有多个角色需要释放时用【中文逗号】分隔"
|
||||
},
|
||||
{
|
||||
"name": "eatBuff",
|
||||
"type": "input-text",
|
||||
"label": "使用料理名称,将在路线之间尝试使用对应名称的料理,如果使用特殊料理,请提前勾选不再提示,多个料理名称之间使用中文逗号分隔,使用间隔为300秒"
|
||||
},
|
||||
{
|
||||
"name": "timeRule",
|
||||
"type": "input-text",
|
||||
"label": "本地时间-不运行时段\n示例写法:\n 单个小时:8\n 连续区间:8-11 或 23:11-23:55(可省略分钟)\n 多项分隔:用中文逗号【,】\n规则:\n 只写小时:开始=整点,结束=59分;跨天自动识别\n 含分钟:按实际时分计算\n 提前10分钟结束并等待到限制时段开始\n留空=全天可运行"
|
||||
},
|
||||
{
|
||||
"name": "findFInterval",
|
||||
"type": "input-text",
|
||||
@@ -70,25 +96,9 @@
|
||||
"default": "1000"
|
||||
},
|
||||
{
|
||||
"name": "activeDumperMode",
|
||||
"type": "input-text",
|
||||
"label": "泥头车模式,将在接近战斗点前提前释放部分角色e技能\n需要启用时填写这些角色在队伍中的编号\n有多个角色需要释放时用【中文逗号】分隔"
|
||||
},
|
||||
{
|
||||
"name": "sortMode",
|
||||
"type": "select",
|
||||
"label": "组内路线排序模式",
|
||||
"options": [
|
||||
"原文件顺序",
|
||||
"效率降序",
|
||||
"高收益优先"
|
||||
],
|
||||
"default": "原文件顺序"
|
||||
},
|
||||
{
|
||||
"name": "timeRule",
|
||||
"type": "input-text",
|
||||
"label": "本地时间-不运行时段\n示例写法:\n 单个小时:8\n 连续区间:8-11 或 23:11-23:55(可省略分钟)\n 多项分隔:用中文逗号【,】\n规则:\n 只写小时:开始=整点,结束=59分;跨天自动识别\n 含分钟:按实际时分计算\n 提前10分钟结束并等待到限制时段开始\n留空=全天可运行"
|
||||
"name": "skipCheck",
|
||||
"type": "checkbox",
|
||||
"label": "跳过校验阶段,如果你执意想要使用错误的配置进行锄地,请在下面一字勾选以同意以下内容\n\n确认跳过校验阶段,任何包括但不限于漏怪、卡死、不拾取等问题均由自己配置引起,与脚本和路线无关"
|
||||
},
|
||||
{
|
||||
"name": "accountName",
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
旧日之海与远古圣山地图目前(2026/1/8)正式版无法使用,当你使用的bgi版本为测试版时才可以使用这部分路线
|
||||
|
||||
确认可以使用时,将该部分路线复制到pathing文件夹下任意位置
|
||||
|
||||
@@ -0,0 +1,67 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "汐"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时100秒,预计收入1200摩拉,包含以下怪物:2只精英传奇倍率三。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767726586175,
|
||||
"map_match_method": "",
|
||||
"map_name": "SeaOfBygoneEras",
|
||||
"name": "004枫丹旧日之海龙蜥 传奇",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 3542.162841796875,
|
||||
"y": 1377.1722412109375
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 3550.346923828125,
|
||||
"y": 1430.4874267578125
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 3,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 3544.763427734375,
|
||||
"y": 1462.154052734375
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "orientation",
|
||||
"x": 3544.763427734375,
|
||||
"y": 1462.154052734375
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(0.2)",
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "orientation",
|
||||
"x": 3544.763427734375,
|
||||
"y": 1462.154052734375
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "汐"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时51秒,包含以下怪物:2只魔像禁卫。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767728650378,
|
||||
"map_match_method": "",
|
||||
"map_name": "SeaOfBygoneEras",
|
||||
"name": "525枫丹切萨勒姆宫(200_2)",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 4739.18896484375,
|
||||
"y": 1354.5679931640625
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4730.55078125,
|
||||
"y": 1374.54443359375
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 3,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4713.1474609375,
|
||||
"y": 1388.3568115234375
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "汐"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时66秒,包含以下怪物:2只魔像禁卫。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767728638478,
|
||||
"map_match_method": "",
|
||||
"map_name": "SeaOfBygoneEras",
|
||||
"name": "526枫丹切萨勒姆宫东(200_2)",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 4547.02490234375,
|
||||
"y": 1477.1634521484375
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4564.86767578125,
|
||||
"y": 1371.078857421875
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keydown(w),wait(2.4),dash",
|
||||
"id": 3,
|
||||
"locked": false,
|
||||
"move_mode": "dash",
|
||||
"type": "orientation",
|
||||
"x": 4541.044921875,
|
||||
"y": 1351.780029296875
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4541.044921875,
|
||||
"y": 1351.780029296875
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4556.9306640625,
|
||||
"y": 1311.4007568359375
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "汐"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时52秒,包含以下怪物:2只魔像禁卫。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767728664745,
|
||||
"map_match_method": "",
|
||||
"map_name": "SeaOfBygoneEras",
|
||||
"name": "527枫丹旧日之海谐律院(200_2)",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 4006.736328125,
|
||||
"y": 1337.83544921875
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 3981.960693359375,
|
||||
"y": 1324.236328125
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 3,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 3967.423583984375,
|
||||
"y": 1273.9945068359375
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "mno"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时74.92秒,包含以下怪物:1只幼突角龙、4只突角龙。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767735769500,
|
||||
"map_match_method": "",
|
||||
"map_name": "AncientSacredMountain",
|
||||
"name": "6a01纳塔远古圣山聚火祭验所西",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": -80.9501953125,
|
||||
"y": -248.4892578125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "attack;芙宁娜 e",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -95.977294921875,
|
||||
"y": -253.21923828125
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 3,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -102.095703125,
|
||||
"y": -269.39208984375
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -102.095703125,
|
||||
"y": -269.39208984375
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -146.060302734375,
|
||||
"y": -264.712646484375
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(1)",
|
||||
"id": 6,
|
||||
"move_mode": "dash",
|
||||
"type": "orientation",
|
||||
"x": -146.060302734375,
|
||||
"y": -264.712646484375
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "mno"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时96秒,包含以下怪物:4只突角龙。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767735771033,
|
||||
"map_match_method": "",
|
||||
"map_name": "AncientSacredMountain",
|
||||
"name": "6a02纳塔远古圣山聚火祭验所西",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": -81.189453125,
|
||||
"y": -249.110595703125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -73.280029296875,
|
||||
"y": -226.4833984375
|
||||
},
|
||||
{
|
||||
"action": "stop_flying",
|
||||
"action_params": "",
|
||||
"id": 3,
|
||||
"move_mode": "fly",
|
||||
"type": "path",
|
||||
"x": -116.86181640625,
|
||||
"y": -226.253662109375
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "attack;芙宁娜 e",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -120.485107421875,
|
||||
"y": -220.952880859375
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -147.67919921875,
|
||||
"y": -215.98095703125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "attack;芙宁娜 e",
|
||||
"id": 6,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -176.656494140625,
|
||||
"y": -247.97412109375
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 7,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -266.62939453125,
|
||||
"y": -278.840576171875
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(1)",
|
||||
"id": 8,
|
||||
"move_mode": "walk",
|
||||
"type": "orientation",
|
||||
"x": -266.636962890625,
|
||||
"y": -278.872802734375
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "mno"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时94.01秒,包含以下怪物:3只突角龙。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767735772557,
|
||||
"map_match_method": "",
|
||||
"map_name": "AncientSacredMountain",
|
||||
"name": "6a03纳塔远古圣山聚火祭验所东",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": -245.3154296875,
|
||||
"y": -291.366455078125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -303.214599609375,
|
||||
"y": -272.06201171875
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 3,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -331.73291015625,
|
||||
"y": -245.585205078125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -331.733154296875,
|
||||
"y": -245.590087890625
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -406.59912109375,
|
||||
"y": -234.59765625
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 6,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -409.73974609375,
|
||||
"y": -234.423095703125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(1)",
|
||||
"id": 7,
|
||||
"move_mode": "dash",
|
||||
"type": "orientation",
|
||||
"x": -409.73974609375,
|
||||
"y": -234.423095703125
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,130 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "mno"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时168.72秒,包含以下怪物:1只突角龙、1只炉壳山鼬、1只深邃拟覆叶_200、2只幼绒翼龙、1只绒翼龙。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767735774352,
|
||||
"map_match_method": "",
|
||||
"map_name": "AncientSacredMountain",
|
||||
"name": "6a04纳塔远古圣山聚火祭验所东北",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": -546.25830078125,
|
||||
"y": 7.285888671875
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -571.335693359375,
|
||||
"y": 70.420654296875
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 3,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -592.20166015625,
|
||||
"y": 160.784423828125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -592.20166015625,
|
||||
"y": 160.784423828125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -622.148681640625,
|
||||
"y": 186.6226806640625
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 6,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -641.77880859375,
|
||||
"y": 190.7513427734375
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 7,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -631.021240234375,
|
||||
"y": 194.3299560546875
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 8,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -618.7099609375,
|
||||
"y": 215.59814453125
|
||||
},
|
||||
{
|
||||
"action": "stop_flying",
|
||||
"action_params": "",
|
||||
"id": 9,
|
||||
"move_mode": "fly",
|
||||
"type": "target",
|
||||
"x": -585.486083984375,
|
||||
"y": 281.3262939453125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keydown(w),dash(4.5),keyup(w)",
|
||||
"id": 10,
|
||||
"move_mode": "walk",
|
||||
"type": "orientation",
|
||||
"x": -587.25,
|
||||
"y": 309.25
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 11,
|
||||
"move_mode": "walk",
|
||||
"type": "orientation",
|
||||
"x": -585.486083984375,
|
||||
"y": 281.3262939453125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(1)",
|
||||
"id": 12,
|
||||
"move_mode": "walk",
|
||||
"type": "orientation",
|
||||
"x": -585.486083984375,
|
||||
"y": 281.3262939453125
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "mno"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时46.28秒,包含以下怪物:1只秘源机兵·寻捕械、1只幼突角龙、1只突角龙。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767735776178,
|
||||
"map_match_method": "",
|
||||
"map_name": "AncientSacredMountain",
|
||||
"name": "6b01纳塔远古圣山分流识海东南",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 185.332763671875,
|
||||
"y": -43.50439453125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "attack;芙宁娜 e",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 183.4168701171875,
|
||||
"y": -36.19775390625
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 3,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 182.517333984375,
|
||||
"y": -59.42822265625
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,238 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "mno"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时196.66秒,包含以下怪物:1只绒翼龙、1只幼突角龙、8只突角龙。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767735778710,
|
||||
"map_match_method": "",
|
||||
"map_name": "AncientSacredMountain",
|
||||
"name": "6b02纳塔远古圣山分流识海东南",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 185.430419921875,
|
||||
"y": -43.427001953125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 214.150634765625,
|
||||
"y": -31.366455078125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 3,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 235.7960205078125,
|
||||
"y": -24.388916015625
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 258.2891845703125,
|
||||
"y": -22.209716796875
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 263.277587890625,
|
||||
"y": -22.694580078125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 6,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 307.8809814453125,
|
||||
"y": -27.71728515625
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "attack;芙宁娜 e",
|
||||
"id": 7,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 340.4974365234375,
|
||||
"y": -46.09228515625
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 8,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 334.5916748046875,
|
||||
"y": -68.903076171875
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 9,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 343.25,
|
||||
"y": -79.75
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 10,
|
||||
"move_mode": "fly",
|
||||
"type": "path",
|
||||
"x": 356.7403564453125,
|
||||
"y": -95.10546875
|
||||
},
|
||||
{
|
||||
"action": "stop_flying",
|
||||
"action_params": "",
|
||||
"id": 11,
|
||||
"move_mode": "fly",
|
||||
"type": "path",
|
||||
"x": 337.0032958984375,
|
||||
"y": -91.144287109375
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "attack;芙宁娜 e",
|
||||
"id": 12,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 342.8885498046875,
|
||||
"y": -84.897705078125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 13,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 327.3887939453125,
|
||||
"y": -42.516357421875
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "attack;芙宁娜 e",
|
||||
"id": 14,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 329.753662109375,
|
||||
"y": -41.997802734375
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 15,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 328.6611328125,
|
||||
"y": -58.53076171875
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 16,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 334.485595703125,
|
||||
"y": -70.6748046875
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "attack;芙宁娜 e",
|
||||
"id": 17,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 377.86376953125,
|
||||
"y": -98.582763671875
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 18,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 404.8792724609375,
|
||||
"y": -94.67236328125
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 19,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 414.243896484375,
|
||||
"y": -96.0693359375
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 20,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 447.2540283203125,
|
||||
"y": -92.7177734375
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "attack;芙宁娜 e",
|
||||
"id": 21,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 457.986083984375,
|
||||
"y": -80.8837890625
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 22,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 473.8603515625,
|
||||
"y": -57.6572265625
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 23,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 457.986083984375,
|
||||
"y": -80.8837890625
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(1)",
|
||||
"id": 24,
|
||||
"move_mode": "dash",
|
||||
"type": "orientation",
|
||||
"x": 457.986083984375,
|
||||
"y": -80.8837890625
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "mno"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时79.8秒,包含以下怪物:1只秘源机兵·寻捕械、1只绒翼龙。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767735782751,
|
||||
"map_match_method": "",
|
||||
"map_name": "AncientSacredMountain",
|
||||
"name": "6b03纳塔远古圣山分流识海中",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 185.427490234375,
|
||||
"y": -43.43359375
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 251.4033203125,
|
||||
"y": -15.380126953125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(VK_SPACE),wait(2),keypress(VK_SPACE)",
|
||||
"id": 3,
|
||||
"move_mode": "fly",
|
||||
"type": "path",
|
||||
"x": 262.220703125,
|
||||
"y": 2.7366943359375
|
||||
},
|
||||
{
|
||||
"action": "stop_flying",
|
||||
"action_params": "2000",
|
||||
"id": 4,
|
||||
"move_mode": "fly",
|
||||
"type": "path",
|
||||
"x": 282.2860107421875,
|
||||
"y": -16.11474609375
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 290.5225830078125,
|
||||
"y": -18.52392578125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 6,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 307.2587890625,
|
||||
"y": -24.089111328125
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 7,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 309.6695556640625,
|
||||
"y": -19.3876953125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(1)",
|
||||
"id": 8,
|
||||
"move_mode": "dash",
|
||||
"type": "orientation",
|
||||
"x": 309.6695556640625,
|
||||
"y": -19.3876953125
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "mno"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时102.29秒,包含以下怪物:2只幼鳍游龙、1只鳍游龙、2只绒翼龙。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767735784877,
|
||||
"map_match_method": "",
|
||||
"map_name": "AncientSacredMountain",
|
||||
"name": "6b04纳塔远古圣山分流识海北",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 202.531494140625,
|
||||
"y": 209.22607421875
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 209.1436767578125,
|
||||
"y": 174.8350830078125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 3,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 209.1436767578125,
|
||||
"y": 174.8350830078125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 216.28955078125,
|
||||
"y": 144.8721923828125
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 229.2037353515625,
|
||||
"y": 117.4962158203125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(1)",
|
||||
"id": 6,
|
||||
"move_mode": "dash",
|
||||
"type": "orientation",
|
||||
"x": 229.2037353515625,
|
||||
"y": 117.4962158203125
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,193 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "mno"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时216.86秒,包含以下怪物:1只深邃拟覆叶_200、1只秘源机兵·寻捕械、2只幼匿叶龙、2只匿叶龙、2只绒翼龙。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767735787236,
|
||||
"map_match_method": "",
|
||||
"map_name": "AncientSacredMountain",
|
||||
"name": "6b05纳塔远古圣山分流识海西",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 387.545166015625,
|
||||
"y": 35.2698974609375
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 404.907958984375,
|
||||
"y": 62.2330322265625
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 3,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 388.282470703125,
|
||||
"y": 67.742919921875
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 4,
|
||||
"move_mode": "fly",
|
||||
"type": "path",
|
||||
"x": 367.7987060546875,
|
||||
"y": 100.82470703125
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 361.61376953125,
|
||||
"y": 99.7017822265625
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 6,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 361.2373046875,
|
||||
"y": 100.6024169921875
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 7,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 351.7164306640625,
|
||||
"y": 134.3717041015625
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 8,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 351.7164306640625,
|
||||
"y": 134.3717041015625
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 9,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 354.285888671875,
|
||||
"y": 142.2803955078125
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 10,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 312.4649658203125,
|
||||
"y": 176.3822021484375
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "click(middle),keypress(T),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T)",
|
||||
"id": 11,
|
||||
"move_mode": "dash",
|
||||
"type": "target",
|
||||
"x": 312.4649658203125,
|
||||
"y": 176.3822021484375
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 12,
|
||||
"move_mode": "walk",
|
||||
"type": "path",
|
||||
"x": 299.9208984375,
|
||||
"y": 185.8914794921875
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 13,
|
||||
"move_mode": "walk",
|
||||
"type": "path",
|
||||
"x": 280.5816650390625,
|
||||
"y": 191.3587646484375
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 14,
|
||||
"move_mode": "walk",
|
||||
"type": "target",
|
||||
"x": 277.4586181640625,
|
||||
"y": 192.7681884765625
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keydown(e),wait(1.5),keyup(e),wait(0.5),j,keypress(e)",
|
||||
"id": 15,
|
||||
"move_mode": "walk",
|
||||
"type": "orientation",
|
||||
"x": 266.3702392578125,
|
||||
"y": 196.78173828125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 16,
|
||||
"move_mode": "walk",
|
||||
"type": "path",
|
||||
"x": 266.18896484375,
|
||||
"y": 196.630126953125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keydown(Q),wait(1.5),keyup(Q),wait(0.1)",
|
||||
"id": 17,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 253.0037841796875,
|
||||
"y": 200.71044921875
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 18,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 248.2806396484375,
|
||||
"y": 218.8236083984375
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(1)",
|
||||
"id": 19,
|
||||
"move_mode": "dash",
|
||||
"type": "orientation",
|
||||
"x": 248.2806396484375,
|
||||
"y": 218.8236083984375
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,175 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "mno"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时181.15秒,包含以下怪物:3只幼突角龙、4只突角龙。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767735793432,
|
||||
"map_match_method": "",
|
||||
"map_name": "AncientSacredMountain",
|
||||
"name": "6c01纳塔远古圣山力向逆心西",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 270.5750732421875,
|
||||
"y": 346.8878173828125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 288.182861328125,
|
||||
"y": 344.106201171875
|
||||
},
|
||||
{
|
||||
"action": "stop_flying",
|
||||
"action_params": "1500",
|
||||
"id": 3,
|
||||
"move_mode": "fly",
|
||||
"type": "path",
|
||||
"x": 313.557373046875,
|
||||
"y": 344.0484619140625
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 308.025146484375,
|
||||
"y": 340.62158203125
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 5,
|
||||
"move_mode": "jump",
|
||||
"type": "path",
|
||||
"x": 340.746826171875,
|
||||
"y": 337.2044677734375
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 6,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 337.4010009765625,
|
||||
"y": 307.599365234375
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 7,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 303.4107666015625,
|
||||
"y": 263.8162841796875
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 8,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 316.9466552734375,
|
||||
"y": 246.6494140625
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 9,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 315.271240234375,
|
||||
"y": 244.720703125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 10,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 293.7569580078125,
|
||||
"y": 257.543701171875
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 11,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 252.1058349609375,
|
||||
"y": 232.989501953125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 12,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 249.1748046875,
|
||||
"y": 225.6763916015625
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 13,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 245.1219482421875,
|
||||
"y": 221.2191162109375
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 14,
|
||||
"move_mode": "jump",
|
||||
"type": "path",
|
||||
"x": 249.0576171875,
|
||||
"y": 237.911865234375
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 15,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 230.44140625,
|
||||
"y": 235.96484375
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 16,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 173.629638671875,
|
||||
"y": 204.4454345703125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(1)",
|
||||
"id": 17,
|
||||
"move_mode": "dash",
|
||||
"type": "orientation",
|
||||
"x": 173.629638671875,
|
||||
"y": 204.4454345703125
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "mno"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时72.13秒,包含以下怪物:1只炉壳山鼬。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767735795607,
|
||||
"map_match_method": "",
|
||||
"map_name": "AncientSacredMountain",
|
||||
"name": "6c02纳塔远古圣山力向逆心西",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 270.5377197265625,
|
||||
"y": 346.8792724609375
|
||||
},
|
||||
{
|
||||
"action": "stop_flying",
|
||||
"action_params": "3000",
|
||||
"id": 2,
|
||||
"move_mode": "fly",
|
||||
"type": "path",
|
||||
"x": 214.8193359375,
|
||||
"y": 413.552490234375
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 3,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 211.3577880859375,
|
||||
"y": 410.176025390625
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(1)",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "orientation",
|
||||
"x": 211.3577880859375,
|
||||
"y": 410.176025390625
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "mno"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时36.71秒,包含以下怪物:2只突角龙。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767735797469,
|
||||
"map_match_method": "",
|
||||
"map_name": "AncientSacredMountain",
|
||||
"name": "6c03纳塔远古圣山力向逆心北",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 20.2198486328125,
|
||||
"y": 509.046875
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 1.85107421875,
|
||||
"y": 539.71826171875
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(1)",
|
||||
"id": 3,
|
||||
"move_mode": "dash",
|
||||
"type": "orientation",
|
||||
"x": 1.85107421875,
|
||||
"y": 539.71826171875
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "mno"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时63.12秒,包含以下怪物:1只炉壳山鼬。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767735799447,
|
||||
"map_match_method": "",
|
||||
"map_name": "AncientSacredMountain",
|
||||
"name": "6c04纳塔远古圣山支离武备所",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": -84.717041015625,
|
||||
"y": 646.283935546875
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -76.513427734375,
|
||||
"y": 617.2735595703125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 3,
|
||||
"move_mode": "fly",
|
||||
"type": "path",
|
||||
"x": -109.604736328125,
|
||||
"y": 572.9798583984375
|
||||
},
|
||||
{
|
||||
"action": "stop_flying",
|
||||
"action_params": "1500",
|
||||
"id": 4,
|
||||
"move_mode": "fly",
|
||||
"type": "path",
|
||||
"x": -82.289306640625,
|
||||
"y": 566.1561279296875
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -77.077880859375,
|
||||
"y": 564.127685546875
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(1)",
|
||||
"id": 6,
|
||||
"move_mode": "dash",
|
||||
"type": "orientation",
|
||||
"x": -77.077880859375,
|
||||
"y": 564.127685546875
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,112 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "mno"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时92.59秒,包含以下怪物:2只幼鳍游龙、2只鳍游龙。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767735803080,
|
||||
"map_match_method": "",
|
||||
"map_name": "AncientSacredMountain",
|
||||
"name": "6c05纳塔远古圣山支离武备所东【狭窄地形】",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": -293.474853515625,
|
||||
"y": 535.0426025390625
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -313.361328125,
|
||||
"y": 540.705810546875
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 3,
|
||||
"move_mode": "jump",
|
||||
"type": "path",
|
||||
"x": -314.877197265625,
|
||||
"y": 558.22900390625
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -313.11376953125,
|
||||
"y": 565.9464111328125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -309.669921875,
|
||||
"y": 573.88525390625
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 6,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -330.5771484375,
|
||||
"y": 586.2391357421875
|
||||
},
|
||||
{
|
||||
"action": "stop_flying",
|
||||
"action_params": "2500",
|
||||
"id": 7,
|
||||
"move_mode": "fly",
|
||||
"type": "path",
|
||||
"x": -356.123046875,
|
||||
"y": 616.505859375
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 8,
|
||||
"move_mode": "walk",
|
||||
"type": "path",
|
||||
"x": -356.123046875,
|
||||
"y": 616.505859375
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 9,
|
||||
"move_mode": "walk",
|
||||
"type": "path",
|
||||
"x": -352.1904296875,
|
||||
"y": 609.6064453125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(1)",
|
||||
"id": 10,
|
||||
"move_mode": "walk",
|
||||
"type": "orientation",
|
||||
"x": -356.123046875,
|
||||
"y": 616.505859375
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,112 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "mno"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时111.64秒,包含以下怪物:1只深邃拟覆叶、1只秘源机兵·寻捕械。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767735805111,
|
||||
"map_match_method": "",
|
||||
"map_name": "AncientSacredMountain",
|
||||
"name": "6c06纳塔远古圣山支离武备所东【高危】",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": -293.452880859375,
|
||||
"y": 535.0208740234375
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -238.568115234375,
|
||||
"y": 534.86328125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 3,
|
||||
"move_mode": "jump",
|
||||
"type": "path",
|
||||
"x": -240.515380859375,
|
||||
"y": 556.7698974609375
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 4,
|
||||
"move_mode": "run",
|
||||
"type": "path",
|
||||
"x": -228.80712890625,
|
||||
"y": 600.0780029296875
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 5,
|
||||
"move_mode": "run",
|
||||
"type": "path",
|
||||
"x": -238.796875,
|
||||
"y": 600.94482421875
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 6,
|
||||
"move_mode": "run",
|
||||
"type": "path",
|
||||
"x": -232.216064453125,
|
||||
"y": 607.0211181640625
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 7,
|
||||
"move_mode": "run",
|
||||
"type": "path",
|
||||
"x": -230.393798828125,
|
||||
"y": 618.33251953125
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 8,
|
||||
"move_mode": "run",
|
||||
"type": "path",
|
||||
"x": -232.30322265625,
|
||||
"y": 612.4769287109375
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 9,
|
||||
"move_mode": "run",
|
||||
"type": "path",
|
||||
"x": -232.30322265625,
|
||||
"y": 612.4769287109375
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(1)",
|
||||
"id": 10,
|
||||
"move_mode": "run",
|
||||
"type": "orientation",
|
||||
"x": -232.30322265625,
|
||||
"y": 612.4769287109375
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "mno"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时31.68秒,包含以下怪物:1只暝视龙。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767735807306,
|
||||
"map_match_method": "",
|
||||
"map_name": "AncientSacredMountain",
|
||||
"name": "6c07纳塔远古圣山拟星的台座",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": -432.421875,
|
||||
"y": 253.5699462890625
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -436.149169921875,
|
||||
"y": 257.107666015625
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(1)",
|
||||
"id": 3,
|
||||
"move_mode": "dash",
|
||||
"type": "orientation",
|
||||
"x": -436.149169921875,
|
||||
"y": 257.107666015625
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "mno"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时68.4秒,包含以下怪物:2只丘丘人、1只打手丘丘人、1只冲锋丘丘人、1只木盾丘丘暴徒、1只岩丘丘萨满。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767735810001,
|
||||
"map_match_method": "",
|
||||
"map_name": "AncientSacredMountain",
|
||||
"name": "6c08纳塔远古圣山拟星的台座【狭窄地形】",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": -432.410400390625,
|
||||
"y": 253.5457763671875
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -408.0224609375,
|
||||
"y": 267.77587890625
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(10)",
|
||||
"id": 3,
|
||||
"move_mode": "jump",
|
||||
"type": "target",
|
||||
"x": -400.306396484375,
|
||||
"y": 268.400341796875
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -442.883544921875,
|
||||
"y": 259.5577392578125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(1)",
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "orientation",
|
||||
"x": -442.883544921875,
|
||||
"y": 259.5577392578125
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "mno"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时82.85秒,包含以下怪物:2.5只重甲蟹·红、2只坚盾重甲蟹。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767786814975,
|
||||
"map_match_method": "",
|
||||
"map_name": "Teyvat",
|
||||
"name": "5901枫丹水下埃尔顿海沟南",
|
||||
"tags": [
|
||||
"水下"
|
||||
],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 4507.2509765625,
|
||||
"y": 2557.9501953125
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"locked": false,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4492.5205078125,
|
||||
"y": 2489.693115234375
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "click(middle)",
|
||||
"id": 3,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4492.5205078125,
|
||||
"y": 2489.693115234375
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(e)",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4483.89453125,
|
||||
"y": 2449.94140625
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keydown(VK_LCONTROL),wait(1),keyup(VK_LCONTROL),attack,wait(0.1),keypress(e),attack,wait(0.7),attack,wait(0.7),attack,wait(0.1),keypress(e),attack,wait(0.7),attack,wait(0.7),attack,wait(0.1),keypress(e),attack,wait(0.7),attack,wait(0.7),attack,wait(0.1),keypress(e),attack,wait(0.7),attack,wait(0.7),attack,wait(0.1),keypress(e),attack,wait(0.7),attack,wait(0.7),attack,wait(0.1),keypress(e),attack,wait(0.7),attack,wait(0.7),attack,wait(0.1),keypress(e),attack,wait(0.7),attack,wait(0.7),attack,wait(0.1),keypress(e),attack,wait(0.7),attack,wait(0.7),attack,wait(0.1),keypress(e),attack,wait(0.7),attack,wait(0.7),attack,wait(0.1),keypress(e),attack,wait(0.7),attack,wait(0.7),attack",
|
||||
"id": 5,
|
||||
"locked": false,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4477.904296875,
|
||||
"y": 2429.523193359375
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,150 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "mno"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时99.03秒,包含以下怪物:2只坚盾重甲蟹。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767790229674,
|
||||
"map_match_method": "",
|
||||
"map_name": "Teyvat",
|
||||
"name": "5903枫丹水下埃尔顿海沟南",
|
||||
"tags": [
|
||||
"水下"
|
||||
],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "force_tp",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 4401.1904296875,
|
||||
"y": 2277.581787109375
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keydown(VK_LCONTROL),wait(3),keyup(VK_LCONTROL)",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4443.8330078125,
|
||||
"y": 2264.982177734375
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keydown(VK_LCONTROL),wait(1),keyup(VK_LCONTROL)",
|
||||
"id": 3,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4458.318359375,
|
||||
"y": 2261.612548828125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "click(middle),attack,keydown(VK_LCONTROL),wait(1),keyup(VK_LCONTROL),click(middle)",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4453.3310546875,
|
||||
"y": 2259.084228515625
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "click(middle),attack,keydown(VK_LCONTROL),wait(1),keyup(VK_LCONTROL),click(middle)",
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4450.2763671875,
|
||||
"y": 2250.439453125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "click(middle),attack,keydown(VK_LCONTROL),wait(1),keyup(VK_LCONTROL),click(middle)",
|
||||
"id": 6,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4454.8291015625,
|
||||
"y": 2248.2265625
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "click(middle),attack,keydown(VK_LCONTROL),wait(1),keyup(VK_LCONTROL),click(middle)",
|
||||
"id": 7,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4456.0703125,
|
||||
"y": 2249.962158203125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "click(middle),attack,keydown(VK_LCONTROL),wait(1),keyup(VK_LCONTROL),click(middle)",
|
||||
"id": 8,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4454.953125,
|
||||
"y": 2251.14306640625
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "click(middle),attack,keydown(VK_LCONTROL),wait(1),keyup(VK_LCONTROL),click(middle)",
|
||||
"id": 9,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4450.2763671875,
|
||||
"y": 2250.439453125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "click(middle),attack,keydown(VK_LCONTROL),wait(1),keyup(VK_LCONTROL),click(middle)",
|
||||
"id": 10,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4454.8291015625,
|
||||
"y": 2248.2265625
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "click(middle),attack,keydown(VK_LCONTROL),wait(1),keyup(VK_LCONTROL),click(middle)",
|
||||
"id": 11,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4456.0703125,
|
||||
"y": 2249.962158203125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "click(middle),attack,keydown(VK_LCONTROL),wait(1),keyup(VK_LCONTROL),click(middle)",
|
||||
"id": 12,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4454.953125,
|
||||
"y": 2251.14306640625
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(e),keydown(VK_LCONTROL),wait(3),keyup(VK_LCONTROL)",
|
||||
"id": 13,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4432.212890625,
|
||||
"y": 2196.24560546875
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 14,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4432.212890625,
|
||||
"y": 2196.24560546875
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,97 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "mno"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时68.56秒,包含以下怪物:3只膨膨兽、1只坚盾重甲蟹。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767792008518,
|
||||
"map_match_method": "",
|
||||
"map_name": "Teyvat",
|
||||
"name": "5904枫丹水下塞洛海原",
|
||||
"tags": [
|
||||
"水下"
|
||||
],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 3964.3466796875,
|
||||
"y": 3245.18359375
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "attack,wait(0.1),keypress(e),attack,wait(0.4),attack,wait(0.4),attack,wait(0.1),keypress(e),attack,wait(0.4),attack,wait(0.4),attack,wait(0.1),keypress(e),attack,wait(0.4),attack,wait(0.4),attack",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 3956.349609375,
|
||||
"y": 3255.200439453125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keydown(VK_LCONTROL),wait(5),keyup(VK_LCONTROL)",
|
||||
"id": 3,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 3925.9755859375,
|
||||
"y": 3293.17529296875
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(e),keydown(VK_LCONTROL),wait(1),keyup(VK_LCONTROL)",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 3916.9619140625,
|
||||
"y": 3293.245849609375
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(e),keydown(VK_LCONTROL),wait(1),keyup(VK_LCONTROL)",
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 3923.693359375,
|
||||
"y": 3301.431640625
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(e),keydown(VK_LCONTROL),wait(1),keyup(VK_LCONTROL)",
|
||||
"id": 6,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 3936.125,
|
||||
"y": 3301.50927734375
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(e),keydown(VK_LCONTROL),wait(1),keyup(VK_LCONTROL)",
|
||||
"id": 7,
|
||||
"locked": false,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 3944.3662109375,
|
||||
"y": 3295.72119140625
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 8,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 3944.3662109375,
|
||||
"y": 3295.72119140625
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,156 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "mno"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时146.92秒,包含以下怪物:0.5只重甲蟹·红、4只坚盾重甲蟹。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767793013015,
|
||||
"map_match_method": "",
|
||||
"map_name": "Teyvat",
|
||||
"name": "5905枫丹水下塞洛海原",
|
||||
"tags": [
|
||||
"水下"
|
||||
],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 4017.3583984375,
|
||||
"y": 3426.729248046875
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(e),keydown(VK_LCONTROL),wait(5),keyup(VK_LCONTROL)",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 3993.1005859375,
|
||||
"y": 3401.6298828125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(e),keydown(VK_LCONTROL),wait(1),keyup(VK_LCONTROL)",
|
||||
"id": 3,
|
||||
"locked": false,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4002.548828125,
|
||||
"y": 3397.44775390625
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(e),keydown(VK_LCONTROL),wait(1),keyup(VK_LCONTROL)",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 3995.2783203125,
|
||||
"y": 3399.29443359375
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(e),keydown(VK_LCONTROL),wait(1),keyup(VK_LCONTROL)",
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4002.91015625,
|
||||
"y": 3401.111328125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(e),keydown(VK_LCONTROL),wait(1),keyup(VK_LCONTROL)",
|
||||
"id": 6,
|
||||
"locked": false,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4013.185546875,
|
||||
"y": 3402.589111328125
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 7,
|
||||
"locked": false,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4013.185546875,
|
||||
"y": 3402.589111328125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "click(middle)",
|
||||
"id": 8,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4013.185546875,
|
||||
"y": 3402.589111328125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "click(middle),keypress(e),keydown(VK_LCONTROL),wait(8),keyup(VK_LCONTROL)",
|
||||
"id": 9,
|
||||
"locked": false,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4049.5576171875,
|
||||
"y": 3378.18408203125
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 10,
|
||||
"locked": false,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4049.5576171875,
|
||||
"y": 3378.18408203125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(1)",
|
||||
"id": 11,
|
||||
"move_mode": "dash",
|
||||
"type": "orientation",
|
||||
"x": 4049.5576171875,
|
||||
"y": 3378.18408203125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 12,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 4017.365234375,
|
||||
"y": 3426.73779296875
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(e),keydown(VK_LCONTROL),wait(1),keyup(VK_LCONTROL)",
|
||||
"id": 13,
|
||||
"locked": false,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4004.1103515625,
|
||||
"y": 3480.105224609375
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 14,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4004.1103515625,
|
||||
"y": 3480.105224609375
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "mno"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时78.66秒,包含以下怪物:1只坚盾重甲蟹。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1767794025032,
|
||||
"map_match_method": "",
|
||||
"map_name": "Teyvat",
|
||||
"name": "5906枫丹水下梅洛彼得堡",
|
||||
"tags": [
|
||||
"水下"
|
||||
],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 4753.86328125,
|
||||
"y": 4498.95751953125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(e),keydown(VK_LCONTROL),wait(12),keyup(VK_LCONTROL),click(middle)",
|
||||
"id": 2,
|
||||
"locked": false,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4661.2353515625,
|
||||
"y": 4460.14599609375
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(e),keydown(VK_LCONTROL),wait(1),keyup(VK_LCONTROL),click(middle)",
|
||||
"id": 3,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4653.744140625,
|
||||
"y": 4453.119140625
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(e),keydown(VK_LCONTROL),wait(1),keyup(VK_LCONTROL),click(middle)",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4651.908203125,
|
||||
"y": 4462.0888671875
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 4661.2353515625,
|
||||
"y": 4460.14599609375
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
水下路线整体效率较慢,怪均较高,仅当小怪权重较高时才会入选
|
||||
水下路线需要单独分组配置,使用单独的配队和战斗策略
|
||||
建议战斗超时时间60秒以上,关闭旋转找怪,战斗策略如下(以迪希雅为例,可换为其他抗揍的角色)
|
||||
迪希雅 attack,wait(0.1),keypress(e),attack,wait(0.6),attack,wait(0.7),attack
|
||||
队伍中没有芙宁娜时需要延长等待时间
|
||||
迪希雅 attack,wait(0.1),keypress(e),attack,wait(0.8),attack,wait(0.9),attack
|
||||
|
||||
确认可以使用时,将该部分路线复制到pathing文件夹下任意位置
|
||||
|
||||