This commit is contained in:
辉鸭蛋
2024-10-06 00:16:35 +08:00
commit c9853b26b1
162 changed files with 9213 additions and 0 deletions

5
repo/js/JustTp/main.js Normal file
View File

@@ -0,0 +1,5 @@
(async function () {
// settings 的对象内容来自于 settings.json 文件生成的动态配置页面
await genshin.tp(settings.x, settings.y);
await sleep(1000);
})();

View File

@@ -0,0 +1,14 @@
{
"manifest_version": 1,
"name": "只是传送一下",
"version": "1.0",
"description": "BetterGI自带脚本只用于传送。方便在调度器配合键鼠脚本使用",
"authors": [
{
"name": "huiyadanli",
"link": "https://github.com/huiyadanli"
}
],
"settings_ui": "settings.json",
"main": "main.js"
}

View File

@@ -0,0 +1,12 @@
[
{
"name": "x",
"type": "input-text",
"label": "X"
},
{
"name": "y",
"type": "input-text",
"label": "Y"
}
]