fix
This commit is contained in:
parent
9637aa5108
commit
003771bc82
|
@ -18,7 +18,7 @@ stdScreenH := 2160
|
||||||
waitTolerance := 50
|
waitTolerance := 50
|
||||||
colorTolerance := 15
|
colorTolerance := 15
|
||||||
|
|
||||||
currentVersion := "v0.1.13"
|
currentVersion := "v0.1.14"
|
||||||
usr := "kyokakawaii"
|
usr := "kyokakawaii"
|
||||||
repo := "DoroHelper"
|
repo := "DoroHelper"
|
||||||
|
|
||||||
|
@ -387,6 +387,10 @@ OutpostDefence()
|
||||||
MsgBox "前哨基地防御异常!"
|
MsgBox "前哨基地防御异常!"
|
||||||
ExitApp
|
ExitApp
|
||||||
}
|
}
|
||||||
|
if A_Index > 10 {
|
||||||
|
BackToHall()
|
||||||
|
goto Start
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2483,9 +2487,10 @@ MissionFailed()
|
||||||
{
|
{
|
||||||
stdCkptX := [2306, 1920, 1590, 1560]
|
stdCkptX := [2306, 1920, 1590, 1560]
|
||||||
stdCkptY := [702, 1485, 1489, 1473]
|
stdCkptY := [702, 1485, 1489, 1473]
|
||||||
desiredColor := ["0xB71013", "0xE9E9E7", "0x161515", "0xE9E9E7"]
|
desiredColor1 := ["0xB71013", "0xE9E9E7", "0x161515", "0xE9E9E7"]
|
||||||
|
desiredColor2 := ["0xAD080B", "0xE9E9E7", "0x161515", "0xE9E9E7"]
|
||||||
|
|
||||||
if UserCheckColor(stdCkptX, stdCkptY, desiredColor, scrRatio)
|
if UserCheckColor(stdCkptX, stdCkptY, desiredColor1, scrRatio) or UserCheckColor(stdCkptX, stdCkptY, desiredColor2, scrRatio)
|
||||||
return true
|
return true
|
||||||
else
|
else
|
||||||
return false
|
return false
|
||||||
|
|
Loading…
Reference in New Issue