From c978a8d7b27b3e61f5b04c3818795a198c531ce1 Mon Sep 17 00:00:00 2001 From: Yemaxul <62631141+yemaxul@users.noreply.github.com> Date: Wed, 16 Oct 2024 21:35:12 +0800 Subject: [PATCH 1/8] Create AutoPath --- repo/js/Auto Commission && Expedition/assets/AutoPath | 1 + 1 file changed, 1 insertion(+) create mode 100644 repo/js/Auto Commission && Expedition/assets/AutoPath diff --git a/repo/js/Auto Commission && Expedition/assets/AutoPath b/repo/js/Auto Commission && Expedition/assets/AutoPath new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/repo/js/Auto Commission && Expedition/assets/AutoPath @@ -0,0 +1 @@ + From 869b2ec628f3173bc03b4fbc201d7e75e6cb5335 Mon Sep 17 00:00:00 2001 From: Yemaxul <62631141+yemaxul@users.noreply.github.com> Date: Wed, 16 Oct 2024 21:35:47 +0800 Subject: [PATCH 2/8] Delete repo/js/Auto Commission && Expedition/assets/AutoPath --- repo/js/Auto Commission && Expedition/assets/AutoPath | 1 - 1 file changed, 1 deletion(-) delete mode 100644 repo/js/Auto Commission && Expedition/assets/AutoPath diff --git a/repo/js/Auto Commission && Expedition/assets/AutoPath b/repo/js/Auto Commission && Expedition/assets/AutoPath deleted file mode 100644 index 8b137891..00000000 --- a/repo/js/Auto Commission && Expedition/assets/AutoPath +++ /dev/null @@ -1 +0,0 @@ - From 37d7f344cdead056c176d22c797f7479762436e4 Mon Sep 17 00:00:00 2001 From: Yemaxul <62631141+yemaxul@users.noreply.github.com> Date: Wed, 16 Oct 2024 21:37:28 +0800 Subject: [PATCH 3/8] =?UTF-8?q?Create=20=E5=86=92=E9=99=A9=E5=AE=B6?= =?UTF-8?q?=E5=8D=8F=E4=BC=9A=5F=E6=9E=AB=E4=B8=B9.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 传送到枫丹凯瑟琳 --- .../assets/AutoPath/冒险家协会_枫丹.json | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 repo/js/Auto Commission && Expedition/assets/AutoPath/冒险家协会_枫丹.json diff --git a/repo/js/Auto Commission && Expedition/assets/AutoPath/冒险家协会_枫丹.json b/repo/js/Auto Commission && Expedition/assets/AutoPath/冒险家协会_枫丹.json new file mode 100644 index 00000000..a04373a0 --- /dev/null +++ b/repo/js/Auto Commission && Expedition/assets/AutoPath/冒险家协会_枫丹.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "冒险家协会_枫丹", + "type": "collect", + "author": "yemaxul", + "version": "1.2", + "description": "枫丹冒险家协会,搭配原生BGI或者js脚本使用", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4508.990234375, + "y": 3630.582763671875 + }, + { + "id": 2, + "x": 4501.93212890625, + "y": 3626.40478515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4495.86767578125, + "y": 3638.030517578125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} From 43eb7b2a9f90829545bf1a41f4853d97a8d5721d Mon Sep 17 00:00:00 2001 From: Yemaxul <62631141+yemaxul@users.noreply.github.com> Date: Wed, 16 Oct 2024 21:39:15 +0800 Subject: [PATCH 4/8] 1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加传送至枫丹的每日委托和派遣 --- repo/js/Auto Commission && Expedition/main.js | 11 +++++++++++ repo/js/Auto Commission && Expedition/manifest.json | 13 +++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 repo/js/Auto Commission && Expedition/main.js create mode 100644 repo/js/Auto Commission && Expedition/manifest.json diff --git a/repo/js/Auto Commission && Expedition/main.js b/repo/js/Auto Commission && Expedition/main.js new file mode 100644 index 00000000..471154db --- /dev/null +++ b/repo/js/Auto Commission && Expedition/main.js @@ -0,0 +1,11 @@ +(async function () { + //传送到枫丹 + log.info('开始传送到枫丹廷'); + let Catherine_Egeria = `assets/AutoPath/冒险家协会_枫丹.json`; + await pathingScript.runFile(Catherine_Egeria); + log.info('开始每日委托或探索派遣,若无退出对话,则说明重复领取或未完成派遣'); + // 自动每日或纪行 + await keyPress("f"); + dispatcher.addTimer(new RealtimeTimer("AutoSkip", { "forceInteraction": true })); + +})(); \ No newline at end of file diff --git a/repo/js/Auto Commission && Expedition/manifest.json b/repo/js/Auto Commission && Expedition/manifest.json new file mode 100644 index 00000000..227c4625 --- /dev/null +++ b/repo/js/Auto Commission && Expedition/manifest.json @@ -0,0 +1,13 @@ +{ + "manifest_version": 1, + "name": "自动领取委托或派遣", + "version": "1.0", + "description": "自动传送到枫丹并领取每日委托或探索派遣,两个都要请运行两次,建议搭配领取历练点使用", + "authors": [ + { + "name": "yemaxul", + "link": "https://github.com/yemaxul" + } + ], + "main": "main.js" +} \ No newline at end of file From a89d2a0af1d93ad74ca468ac9dcfe258ef4aed33 Mon Sep 17 00:00:00 2001 From: Yemaxul <62631141+yemaxul@users.noreply.github.com> Date: Wed, 16 Oct 2024 21:42:01 +0800 Subject: [PATCH 5/8] =?UTF-8?q?Create=20=E5=86=92=E9=99=A9=E5=AE=B6?= =?UTF-8?q?=E5=8D=8F=E4=BC=9A=5F=E6=9E=AB=E4=B8=B9.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- repo/pathing/冒险家协会/冒险家协会_枫丹.json | 36 ++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 repo/pathing/冒险家协会/冒险家协会_枫丹.json diff --git a/repo/pathing/冒险家协会/冒险家协会_枫丹.json b/repo/pathing/冒险家协会/冒险家协会_枫丹.json new file mode 100644 index 00000000..a04373a0 --- /dev/null +++ b/repo/pathing/冒险家协会/冒险家协会_枫丹.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "冒险家协会_枫丹", + "type": "collect", + "author": "yemaxul", + "version": "1.2", + "description": "枫丹冒险家协会,搭配原生BGI或者js脚本使用", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4508.990234375, + "y": 3630.582763671875 + }, + { + "id": 2, + "x": 4501.93212890625, + "y": 3626.40478515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4495.86767578125, + "y": 3638.030517578125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} From 3df775f931b31978b3572225083f005559a4fc78 Mon Sep 17 00:00:00 2001 From: Yemaxul <62631141+yemaxul@users.noreply.github.com> Date: Wed, 16 Oct 2024 21:42:51 +0800 Subject: [PATCH 6/8] =?UTF-8?q?Create=20=E5=90=88=E6=88=90=E5=8F=B0=5F?= =?UTF-8?q?=E7=92=83=E6=9C=88.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- repo/pathing/合成台/合成台_璃月.json | 36 ++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 repo/pathing/合成台/合成台_璃月.json diff --git a/repo/pathing/合成台/合成台_璃月.json b/repo/pathing/合成台/合成台_璃月.json new file mode 100644 index 00000000..0eced60d --- /dev/null +++ b/repo/pathing/合成台/合成台_璃月.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "合成台_璃月", + "type": "collect", + "author": "Yemaxul", + "version": "1.0", + "description": "璃月合成台,搭配树脂自动合成使用", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 266.86328125, + "y": -652.8173828125 + }, + { + "id": 2, + "x": 258.4609375, + "y": -658.4111328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 266.3046875, + "y": -653.61328125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} From 9af8428c825d94b3fc6b6be7dfa483a5fe381eb4 Mon Sep 17 00:00:00 2001 From: Yemaxul <62631141+yemaxul@users.noreply.github.com> Date: Wed, 16 Oct 2024 22:06:58 +0800 Subject: [PATCH 7/8] Add files via upload 2.0 --- repo/pathing/冒险家协会/冒险家协会_枫丹.json | 24 +++++++------------- 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/repo/pathing/冒险家协会/冒险家协会_枫丹.json b/repo/pathing/冒险家协会/冒险家协会_枫丹.json index a04373a0..5d7c226f 100644 --- a/repo/pathing/冒险家协会/冒险家协会_枫丹.json +++ b/repo/pathing/冒险家协会/冒险家协会_枫丹.json @@ -3,34 +3,26 @@ "name": "冒险家协会_枫丹", "type": "collect", "author": "yemaxul", - "version": "1.2", - "description": "枫丹冒险家协会,搭配原生BGI或者js脚本使用", + "version": "2.0", + "description": "传送到枫丹冒险家协会", "bgiVersion": "0.35.0" }, "positions": [ { "id": 1, - "action": "", - "move_mode": "walk", + "x": 4508.97509765625, + "y": 3630.557373046875, "type": "teleport", - "x": 4508.990234375, - "y": 3630.582763671875 - }, - { - "id": 2, - "x": 4501.93212890625, - "y": 3626.40478515625, - "type": "path", "move_mode": "walk", "action": "" }, { - "id": 3, - "x": 4495.86767578125, - "y": 3638.030517578125, + "id": 2, + "x": 4495.7001953125, + "y": 3637.89501953125, "type": "target", "move_mode": "walk", "action": "" } ] -} +} \ No newline at end of file From 6125cef55643ee47c374a2a521f4a2a50d49888e Mon Sep 17 00:00:00 2001 From: Yemaxul <62631141+yemaxul@users.noreply.github.com> Date: Wed, 16 Oct 2024 22:07:53 +0800 Subject: [PATCH 8/8] Add files via upload 2.0 --- .../assets/AutoPath/冒险家协会_枫丹.json | 24 +++++++------------ 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/repo/js/Auto Commission && Expedition/assets/AutoPath/冒险家协会_枫丹.json b/repo/js/Auto Commission && Expedition/assets/AutoPath/冒险家协会_枫丹.json index a04373a0..5d7c226f 100644 --- a/repo/js/Auto Commission && Expedition/assets/AutoPath/冒险家协会_枫丹.json +++ b/repo/js/Auto Commission && Expedition/assets/AutoPath/冒险家协会_枫丹.json @@ -3,34 +3,26 @@ "name": "冒险家协会_枫丹", "type": "collect", "author": "yemaxul", - "version": "1.2", - "description": "枫丹冒险家协会,搭配原生BGI或者js脚本使用", + "version": "2.0", + "description": "传送到枫丹冒险家协会", "bgiVersion": "0.35.0" }, "positions": [ { "id": 1, - "action": "", - "move_mode": "walk", + "x": 4508.97509765625, + "y": 3630.557373046875, "type": "teleport", - "x": 4508.990234375, - "y": 3630.582763671875 - }, - { - "id": 2, - "x": 4501.93212890625, - "y": 3626.40478515625, - "type": "path", "move_mode": "walk", "action": "" }, { - "id": 3, - "x": 4495.86767578125, - "y": 3638.030517578125, + "id": 2, + "x": 4495.7001953125, + "y": 3637.89501953125, "type": "target", "move_mode": "walk", "action": "" } ] -} +} \ No newline at end of file