Add files via upload

This commit is contained in:
洪籽阳外婆
2024-10-13 20:50:41 +08:00
committed by GitHub
parent 54f64921cb
commit 226892c168
14 changed files with 197 additions and 0 deletions

13
repo/js/NextParty/main.js Normal file
View File

@@ -0,0 +1,13 @@
(async function () {
setGameMetrics(3840, 2160, 2);
keyPress("L");
await sleep(4500);
click(3684, 1078);
await sleep(800);
click(3200, 2050);
await sleep(1000);
keyPress("Escape");
await sleep(1000);
log.info("已切换至下一队");
})();

View File

@@ -0,0 +1,12 @@
{
"manifest_version": 1,
"name": "切换下一队",
"version": "1.0",
"description": "用于切换到下一队",
"authors": [
{
"name": "HZYgrandma",
}
],
"main": "main.js",
}