地脉花v.2.7版本:20250621 1优化超时时间的设定。 (#1158)

v.2.7版本:20250621
1、优化超时时间的设定。
This commit is contained in:
kaedelcb
2025-06-21 20:32:54 +08:00
committed by GitHub
parent 9b1ea7ae9b
commit 0c589fde35
4 changed files with 6 additions and 3 deletions

View File

@@ -74,7 +74,7 @@
var position ={};
var Lastexecution = false;//线路执行标志,用于判断上一线路是否执行。
var Fightquick = settings.Fightquick ? settings.Fightquick : false;
var Fighttimeout = settings.timeout = settings.timeout * 1000 || 240000;
var Fighttimeout = settings.timeout * 1000 ? settings.timeout * 1000 : 240000;//战斗超时时间默认为240秒
const ocrRegion2 = { x: 0, y: 200, width: 300, height: 300 }; // 追踪任务区域
const ocrRo2 = RecognitionObject.ocr(ocrRegion2.x, ocrRegion2.y, ocrRegion2.width, ocrRegion2.height);
const ocrRegion1 = { x: 800, y: 200, width: 300, height: 100 }; // 中心区域