Files
bettergi-scripts-list/archive/js/稻妻合成台/main.js
起个名字好难 7a9f3296bb archive JS
2025-05-08 01:24:49 +08:00

14 lines
539 B
JavaScript

(async function () {
log.info('前往稻妻合成台,“那位莱特不行,他冲刺比其他成男角色远”(成男角色:钟离,公子,凯亚,迪卢克等)');
async function captureCrystalfly(locationName, x, y, num) {
log.info('前往 {name}', locationName);
await genshin.tp(x, y);
await sleep(5000);
let filePath = `assets/${locationName}.json`;
await keyMouseScript.runFile(filePath);
}
await captureCrystalfly('稻妻合成台', -4402.56, -3052.88);
})();