-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from wy3057/main
脚本添加
- Loading branch information
Showing
32 changed files
with
457 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
(async function () { | ||
setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI | ||
keyPress("1"); | ||
|
||
log.info("已切换1号角色"); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"manifest_version": 1, | ||
"name": "切换1号角色", | ||
"version": "1.0", | ||
"description": "用于切换1号角色", | ||
"authors": [ | ||
{ | ||
"name": "风埠", | ||
} | ||
], | ||
"main": "main.js", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
(async function () { | ||
setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI | ||
keyPress("2"); | ||
|
||
log.info("已切换2号角色"); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"manifest_version": 1, | ||
"name": "切换2号角色", | ||
"version": "1.0", | ||
"description": "用于切换2号角色", | ||
"authors": [ | ||
{ | ||
"name": "风埠", | ||
} | ||
], | ||
"main": "main.js", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
(async function () { | ||
setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI | ||
keyPress("3"); | ||
|
||
log.info("已切换3号角色"); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"manifest_version": 1, | ||
"name": "切换3号角色", | ||
"version": "1.0", | ||
"description": "用于切换3号角色", | ||
"authors": [ | ||
{ | ||
"name": "风埠", | ||
} | ||
], | ||
"main": "main.js", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
(async function () { | ||
setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI | ||
keyPress("4"); | ||
|
||
log.info("已切换4号角色"); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"manifest_version": 1, | ||
"name": "切换4号角色", | ||
"version": "1.0", | ||
"description": "用于切换4号角色", | ||
"authors": [ | ||
{ | ||
"name": "风埠", | ||
} | ||
], | ||
"main": "main.js", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
(async function () { | ||
setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI | ||
// 向前走5s | ||
keyDown("w"); | ||
await sleep(5000); | ||
keyUp("w"); | ||
|
||
log.info("已进入向前走5s"); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"manifest_version": 1, | ||
"name": "向前行走5秒,搭配进尘歌壶脚本并在入口处放合成台,可以自动走到到合成台", | ||
"version": "1.0", | ||
"description": "用于向前走5秒", | ||
"authors": [ | ||
{ | ||
"name": "风埠", | ||
} | ||
], | ||
"main": "main.js", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
(async function () { | ||
setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI | ||
// 向右走5s | ||
keyDown("D"); | ||
await sleep(5000); | ||
keyUp("D"); | ||
|
||
log.info("已进入向右走5s"); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"manifest_version": 1, | ||
"name": "向右行走5秒", | ||
"version": "1.0", | ||
"description": "向右行走5秒", | ||
"authors": [ | ||
{ | ||
"name": "风埠", | ||
} | ||
], | ||
"main": "main.js", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
(async function () { | ||
setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI | ||
// 向后走5s | ||
keyDown("S"); | ||
await sleep(5000); | ||
keyUp("S"); | ||
|
||
log.info("已进入向后走5s"); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"manifest_version": 1, | ||
"name": "向后行走5秒", | ||
"version": "1.0", | ||
"description": "向后行走5秒", | ||
"authors": [ | ||
{ | ||
"name": "风埠", | ||
} | ||
], | ||
"main": "main.js", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
(async function () { | ||
setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI | ||
// 向左走5s | ||
keyDown("A"); | ||
await sleep(5000); | ||
keyUp("A"); | ||
|
||
log.info("已进入向右左走5s"); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"manifest_version": 1, | ||
"name": "向左行走5秒", | ||
"version": "1.0", | ||
"description": "向左行走5秒", | ||
"authors": [ | ||
{ | ||
"name": "风埠", | ||
} | ||
], | ||
"main": "main.js", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
(async function () { | ||
setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI | ||
// 向右走1.5s | ||
keyDown("D"); | ||
await sleep(1500); | ||
keyUp("D"); | ||
|
||
log.info("已进入向左走1.5s"); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"manifest_version": 1, | ||
"name": "向右行走1.5秒,搭配进入尘歌壶可以到阿圆那领取洞天宝钱和好感值(这个成男角色容易掉下去比如那维莱特)", | ||
"version": "1.0", | ||
"description": "向右行走1.5秒", | ||
"authors": [ | ||
{ | ||
"name": "风埠", | ||
} | ||
], | ||
"main": "main.js", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
(async function () { | ||
setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI | ||
// 向左走1.5s | ||
keyDown("A"); | ||
await sleep(1500); | ||
keyUp("A"); | ||
|
||
log.info("已进入向左走1.5s"); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"manifest_version": 1, | ||
"name": "向左行走1.5秒,搭配进入尘歌壶可以到阿圆那领取洞天宝钱和好感值", | ||
"version": "1.0", | ||
"description": "向左行走1.5秒", | ||
"authors": [ | ||
{ | ||
"name": "风埠", | ||
} | ||
], | ||
"main": "main.js", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
(async function () { | ||
setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI | ||
// 向右走0.5s | ||
keyDown("D"); | ||
await sleep(500); | ||
keyUp("D"); | ||
|
||
log.info("已进入向左走0.5s"); | ||
})(); |
Oops, something went wrong.