mirror of
https://github.com/babalae/bettergi-scripts-list.git
synced 2026-04-03 06:35:14 +08:00
feat(config): 更新自动化工具配置选项
- 添加配置模式-刷新-清空运行记录复选框 - 新增执行顺序规则输入字段 - 添加锄地队伍配置选项 - 更新七元素队伍配置说明 - 重新整理配置项顺序和分隔符位置
This commit is contained in:
@@ -1,120 +1,154 @@
|
||||
[
|
||||
{
|
||||
"name": "key",
|
||||
"type": "input-text",
|
||||
"label": "密钥",
|
||||
"default": ""
|
||||
},
|
||||
{
|
||||
"name": "config_run",
|
||||
"type": "select",
|
||||
"label": "配置模式",
|
||||
"options": [
|
||||
"刷新","加载","执行"
|
||||
],
|
||||
"default": "刷新"
|
||||
},
|
||||
{
|
||||
"name": "loading_level",
|
||||
"type": "input-text",
|
||||
"label": "加载路径层级(不可小于1)<配置模式 刷新 生效>",
|
||||
"default": "2"
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "config_white_list",
|
||||
"type": "input-text",
|
||||
"label": "刷新白名单 以,分割",
|
||||
"default": "晶蝶"
|
||||
},
|
||||
{
|
||||
"name": "config_black_list",
|
||||
"type": "input-text",
|
||||
"label": "刷新黑名单 以,分割",
|
||||
"default": "其他,锄地专区,食材与炼金"
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "open_cd",
|
||||
"type": "checkbox",
|
||||
"label": "启用CD算法",
|
||||
"default": false
|
||||
},
|
||||
{
|
||||
"name": "http_api",
|
||||
"type": "input-text",
|
||||
"label": "[默认CD算法api]\ncron解析Http地址\n[请部署bettergi-scripts-tools可支持]",
|
||||
"default": "http://<ip:port>/bgi/cron/next-timestamp"
|
||||
},
|
||||
{
|
||||
"name": "real_time_missions",
|
||||
"type": "multi-checkbox",
|
||||
"label": "实时任务",
|
||||
"options": ["自动对话","自动战斗","自动拾取"],
|
||||
"default": ["自动拾取"]
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "choose_best",
|
||||
"type": "checkbox",
|
||||
"label": "择优模式(默认关闭 优先跑之前没跑过的)",
|
||||
"default": false
|
||||
},
|
||||
{
|
||||
"name": "mode",
|
||||
"type": "select",
|
||||
"label": "模式",
|
||||
"options": [
|
||||
"全自动","半自动"
|
||||
],
|
||||
"default": "全自动"
|
||||
},
|
||||
{
|
||||
"name": "auto_semi_key_mode",
|
||||
"type": "select",
|
||||
"label": "[半自动]快捷键模式",
|
||||
"options": [
|
||||
"继续运行","跳过"
|
||||
],
|
||||
"default": "继续运行"
|
||||
},
|
||||
{
|
||||
"name": "auto_key",
|
||||
"type": "input-text",
|
||||
"label": "<继续运行|跳过>本次路线快捷键 (独立BGI的快捷键请勿冲突)"
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "team_fight",
|
||||
"type": "input-text",
|
||||
"label": "战斗队伍配置(同时也是行走队伍配置)"
|
||||
},
|
||||
{
|
||||
"name": "team_seven_elements",
|
||||
"type": "input-text",
|
||||
"label": "队伍配置 按 `矿物,火,水,风,雷,草,冰,岩` 该顺序填写",
|
||||
"default": ""
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "is_debug",
|
||||
"type": "checkbox",
|
||||
"label": "开发者模式",
|
||||
"default": false
|
||||
},
|
||||
{
|
||||
"name": "debug",
|
||||
"type": "input-text",
|
||||
"label": "调试快捷键(开发者)"
|
||||
}
|
||||
{
|
||||
"name": "key",
|
||||
"type": "input-text",
|
||||
"label": "密钥",
|
||||
"default": ""
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "config_run",
|
||||
"type": "select",
|
||||
"label": "配置模式",
|
||||
"options": [
|
||||
"刷新",
|
||||
"加载",
|
||||
"执行"
|
||||
],
|
||||
"default": "刷新"
|
||||
},
|
||||
{
|
||||
"name": "refresh_record",
|
||||
"type": "checkbox",
|
||||
"label": "配置模式-刷新-清空运行记录",
|
||||
"default": false
|
||||
},
|
||||
{
|
||||
"name": "loading_level",
|
||||
"type": "input-text",
|
||||
"label": "加载路径层级(不可小于1)<配置模式 刷新 生效>",
|
||||
"default": "2"
|
||||
},
|
||||
{
|
||||
"name": "order_rules",
|
||||
"type": "input-text",
|
||||
"label": "执行顺序规则(可留空)\n{语法:父文件夹名称->文件夹名称=顺序请填整数,.....}",
|
||||
"default": ""
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "config_white_list",
|
||||
"type": "input-text",
|
||||
"label": "刷新白名单 以,分割",
|
||||
"default": "晶蝶"
|
||||
},
|
||||
{
|
||||
"name": "config_black_list",
|
||||
"type": "input-text",
|
||||
"label": "刷新黑名单 以,分割",
|
||||
"default": "其他,锄地专区,食材与炼金"
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "open_cd",
|
||||
"type": "checkbox",
|
||||
"label": "启用CD算法",
|
||||
"default": false
|
||||
},
|
||||
{
|
||||
"name": "http_api",
|
||||
"type": "input-text",
|
||||
"label": "[默认CD算法api]\ncron解析Http地址\n[请部署bettergi-scripts-tools可支持]",
|
||||
"default": "http://<ip:port>/bgi/cron/next-timestamp"
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "real_time_missions",
|
||||
"type": "multi-checkbox",
|
||||
"label": "实时任务",
|
||||
"options": [
|
||||
"自动对话",
|
||||
"自动战斗",
|
||||
"自动拾取"
|
||||
],
|
||||
"default": [
|
||||
"自动拾取"
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "choose_best",
|
||||
"type": "checkbox",
|
||||
"label": "择优模式(默认关闭 优先跑之前没跑过的)",
|
||||
"default": false
|
||||
},
|
||||
{
|
||||
"name": "mode",
|
||||
"type": "select",
|
||||
"label": "模式",
|
||||
"options": [
|
||||
"全自动",
|
||||
"半自动"
|
||||
],
|
||||
"default": "全自动"
|
||||
},
|
||||
{
|
||||
"name": "auto_semi_key_mode",
|
||||
"type": "select",
|
||||
"label": "[半自动]快捷键模式",
|
||||
"options": [
|
||||
"继续运行",
|
||||
"跳过"
|
||||
],
|
||||
"default": "继续运行"
|
||||
},
|
||||
{
|
||||
"name": "auto_key",
|
||||
"type": "input-text",
|
||||
"label": "<继续运行|跳过>本次路线快捷键 (独立BGI的快捷键请勿冲突)"
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "team_fight",
|
||||
"type": "input-text",
|
||||
"label": "战斗队伍配置(同时也是行走队伍配置)"
|
||||
},
|
||||
{
|
||||
"name": "team_hoe_ground",
|
||||
"type": "input-text",
|
||||
"label": "锄地队伍配置\n{语法:父文件夹名称->文件夹名称=队伍名称,.....}\n如:敌人与魔物->蕈兽=队伍名称",
|
||||
"default": ""
|
||||
},
|
||||
{
|
||||
"name": "team_seven_elements",
|
||||
"type": "input-text",
|
||||
"label": "队伍配置 按 `矿物,火,水,风,雷,草,冰,岩` 该顺序填写(建议草神请填至`草`位)",
|
||||
"default": ""
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "is_debug",
|
||||
"type": "checkbox",
|
||||
"label": "开发者模式",
|
||||
"default": false
|
||||
},
|
||||
{
|
||||
"name": "debug",
|
||||
"type": "input-text",
|
||||
"label": "调试快捷键(开发者)"
|
||||
}
|
||||
]
|
||||
@@ -1,144 +1,154 @@
|
||||
[
|
||||
{
|
||||
"name": "key",
|
||||
"type": "input-text",
|
||||
"label": "密钥",
|
||||
"default": ""
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "config_run",
|
||||
"type": "select",
|
||||
"label": "配置模式",
|
||||
"options": [
|
||||
"刷新","加载","执行"
|
||||
],
|
||||
"default": "刷新"
|
||||
},
|
||||
{
|
||||
"name": "refresh_record",
|
||||
"type": "checkbox",
|
||||
"label": "配置模式-刷新-清空运行记录",
|
||||
"default": false
|
||||
},
|
||||
{
|
||||
"name": "loading_level",
|
||||
"type": "input-text",
|
||||
"label": "加载路径层级(不可小于1)<配置模式 刷新 生效>",
|
||||
"default": "2"
|
||||
},
|
||||
{
|
||||
"name": "order_rules",
|
||||
"type": "input-text",
|
||||
"label": "执行顺序规则(可留空)\n{语法:父文件夹名称->文件夹名称=顺序请填整数,.....}",
|
||||
"default": ""
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "config_white_list",
|
||||
"type": "input-text",
|
||||
"label": "刷新白名单 以,分割",
|
||||
"default": "晶蝶"
|
||||
},
|
||||
{
|
||||
"name": "config_black_list",
|
||||
"type": "input-text",
|
||||
"label": "刷新黑名单 以,分割",
|
||||
"default": "其他,锄地专区,食材与炼金"
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "open_cd",
|
||||
"type": "checkbox",
|
||||
"label": "启用CD算法",
|
||||
"default": false
|
||||
},
|
||||
{
|
||||
"name": "http_api",
|
||||
"type": "input-text",
|
||||
"label": "[默认CD算法api]\ncron解析Http地址\n[请部署bettergi-scripts-tools可支持]",
|
||||
"default": "http://<ip:port>/bgi/cron/next-timestamp"
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "real_time_missions",
|
||||
"type": "multi-checkbox",
|
||||
"label": "实时任务",
|
||||
"options": ["自动对话","自动战斗","自动拾取"],
|
||||
"default": ["自动拾取"]
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "choose_best",
|
||||
"type": "checkbox",
|
||||
"label": "择优模式(默认关闭 优先跑之前没跑过的)",
|
||||
"default": false
|
||||
},
|
||||
{
|
||||
"name": "mode",
|
||||
"type": "select",
|
||||
"label": "模式",
|
||||
"options": [
|
||||
"全自动","半自动"
|
||||
],
|
||||
"default": "全自动"
|
||||
},
|
||||
{
|
||||
"name": "auto_semi_key_mode",
|
||||
"type": "select",
|
||||
"label": "[半自动]快捷键模式",
|
||||
"options": [
|
||||
"继续运行","跳过"
|
||||
],
|
||||
"default": "继续运行"
|
||||
},
|
||||
{
|
||||
"name": "auto_key",
|
||||
"type": "input-text",
|
||||
"label": "<继续运行|跳过>本次路线快捷键 (独立BGI的快捷键请勿冲突)"
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "team_fight",
|
||||
"type": "input-text",
|
||||
"label": "战斗队伍配置(同时也是行走队伍配置)"
|
||||
},
|
||||
{
|
||||
"name": "team_hoe_ground",
|
||||
"type": "input-text",
|
||||
"label": "锄地队伍配置\n{语法:父文件夹名称->文件夹名称=队伍名称,.....}\n如:敌人与魔物->蕈兽=队伍名称",
|
||||
"default": ""
|
||||
},
|
||||
{
|
||||
"name": "team_seven_elements",
|
||||
"type": "input-text",
|
||||
"label": "队伍配置 按 `矿物,火,水,风,雷,草,冰,岩` 该顺序填写(建议草神请填至`草`位)",
|
||||
"default": ""
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "is_debug",
|
||||
"type": "checkbox",
|
||||
"label": "开发者模式",
|
||||
"default": false
|
||||
},
|
||||
{
|
||||
"name": "debug",
|
||||
"type": "input-text",
|
||||
"label": "调试快捷键(开发者)"
|
||||
}
|
||||
{
|
||||
"name": "key",
|
||||
"type": "input-text",
|
||||
"label": "密钥",
|
||||
"default": ""
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "config_run",
|
||||
"type": "select",
|
||||
"label": "配置模式",
|
||||
"options": [
|
||||
"刷新",
|
||||
"加载",
|
||||
"执行"
|
||||
],
|
||||
"default": "刷新"
|
||||
},
|
||||
{
|
||||
"name": "refresh_record",
|
||||
"type": "checkbox",
|
||||
"label": "配置模式-刷新-清空运行记录",
|
||||
"default": false
|
||||
},
|
||||
{
|
||||
"name": "loading_level",
|
||||
"type": "input-text",
|
||||
"label": "加载路径层级(不可小于1)<配置模式 刷新 生效>",
|
||||
"default": "2"
|
||||
},
|
||||
{
|
||||
"name": "order_rules",
|
||||
"type": "input-text",
|
||||
"label": "执行顺序规则(可留空)\n{语法:父文件夹名称->文件夹名称=顺序请填整数,.....}",
|
||||
"default": ""
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "config_white_list",
|
||||
"type": "input-text",
|
||||
"label": "刷新白名单 以,分割",
|
||||
"default": "晶蝶"
|
||||
},
|
||||
{
|
||||
"name": "config_black_list",
|
||||
"type": "input-text",
|
||||
"label": "刷新黑名单 以,分割",
|
||||
"default": "其他,锄地专区,食材与炼金"
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "open_cd",
|
||||
"type": "checkbox",
|
||||
"label": "启用CD算法",
|
||||
"default": false
|
||||
},
|
||||
{
|
||||
"name": "http_api",
|
||||
"type": "input-text",
|
||||
"label": "[默认CD算法api]\ncron解析Http地址\n[请部署bettergi-scripts-tools可支持]",
|
||||
"default": "http://<ip:port>/bgi/cron/next-timestamp"
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "real_time_missions",
|
||||
"type": "multi-checkbox",
|
||||
"label": "实时任务",
|
||||
"options": [
|
||||
"自动对话",
|
||||
"自动战斗",
|
||||
"自动拾取"
|
||||
],
|
||||
"default": [
|
||||
"自动拾取"
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "choose_best",
|
||||
"type": "checkbox",
|
||||
"label": "择优模式(默认关闭 优先跑之前没跑过的)",
|
||||
"default": false
|
||||
},
|
||||
{
|
||||
"name": "mode",
|
||||
"type": "select",
|
||||
"label": "模式",
|
||||
"options": [
|
||||
"全自动",
|
||||
"半自动"
|
||||
],
|
||||
"default": "全自动"
|
||||
},
|
||||
{
|
||||
"name": "auto_semi_key_mode",
|
||||
"type": "select",
|
||||
"label": "[半自动]快捷键模式",
|
||||
"options": [
|
||||
"继续运行",
|
||||
"跳过"
|
||||
],
|
||||
"default": "继续运行"
|
||||
},
|
||||
{
|
||||
"name": "auto_key",
|
||||
"type": "input-text",
|
||||
"label": "<继续运行|跳过>本次路线快捷键 (独立BGI的快捷键请勿冲突)"
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "team_fight",
|
||||
"type": "input-text",
|
||||
"label": "战斗队伍配置(同时也是行走队伍配置)"
|
||||
},
|
||||
{
|
||||
"name": "team_hoe_ground",
|
||||
"type": "input-text",
|
||||
"label": "锄地队伍配置\n{语法:父文件夹名称->文件夹名称=队伍名称,.....}\n如:敌人与魔物->蕈兽=队伍名称",
|
||||
"default": ""
|
||||
},
|
||||
{
|
||||
"name": "team_seven_elements",
|
||||
"type": "input-text",
|
||||
"label": "队伍配置 按 `矿物,火,水,风,雷,草,冰,岩` 该顺序填写(建议草神请填至`草`位)",
|
||||
"default": ""
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
"name": "is_debug",
|
||||
"type": "checkbox",
|
||||
"label": "开发者模式",
|
||||
"default": false
|
||||
},
|
||||
{
|
||||
"name": "debug",
|
||||
"type": "input-text",
|
||||
"label": "调试快捷键(开发者)"
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user