JS脚本归档 (#599)

This commit is contained in:
起个名字好难的喵
2025-04-18 23:22:20 +08:00
committed by GitHub
parent 16cbcfc011
commit 9873074579
177 changed files with 1346 additions and 1346 deletions

View File

@@ -0,0 +1,8 @@
(async function () {
let walkTime = parseInt(settings.walkTime); // 使用 DEFAULT_TEAM
// 向右走walkTime
keyDown("D");
await sleep(walkTime);
keyUp("D");
log.info("已向右走${settings.walkTime}");
})();