Skip to content

Commit 5f8604f

Browse files
committed
找色:腐血神荒重新取色
领取日常:修复御魂溢出 进入寮活动:修复顺序,优化突发情况 狭间暗域:重做
1 parent f52dc18 commit 5f8604f

File tree

6 files changed

+438
-658
lines changed

6 files changed

+438
-658
lines changed

src/common/funcList/311_红标.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ export class Func311 implements IFuncOrigin {
217217
const point_blood = thisScript.findMultiColorEx('红标_血条')
218218
const operList = [];
219219
for (const flagPoint of point_blood) {
220-
if (point.x > flagPoint.x + 4 && point.x < flagPoint.x + 115) {
220+
if (point.x >= flagPoint.x && point.x < flagPoint.x + 100) {
221221
operList.push(flagPoint);
222222
}
223223
}

src/common/funcList/518_领取日常奖励.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,11 +568,16 @@ export class Func518 implements IFuncOrigin {
568568
return true;
569569
}
570570
if (thisScript.global.function_Swith.email) {
571+
if (thisScript.global.email_yuHun >= 3) {
572+
thisScript.global.function_Swith.email = false;
573+
thisScript.doPush(thisScript, { text: '邮件里御魂已满', before() { thisScript.myToast('邮件里御魂已满'); } });
574+
}
571575
if (thisScript.oper({
572576
id: 518,
573577
name: '邮件',
574578
operator: [thisOperator[8], thisOperator[10]]
575579
})) {
580+
thisScript.global.email_yuHun++;
576581
return true;
577582
}
578583
if (thisScript.oper({
@@ -587,7 +592,7 @@ export class Func518 implements IFuncOrigin {
587592
if (thisScript.oper({
588593
id: 518,
589594
name: '邮件',
590-
operator: [thisOperator[9], thisOperator[11], thisOperator[15]]
595+
operator: [thisOperator[15], thisOperator[11], thisOperator[9]]
591596
})) {
592597
return true;
593598
}

0 commit comments

Comments
 (0)