Skip to content

Commit 4a6fb33

Browse files
committed
* **V7.7.7**
* Fixed Search Attack (June 2019 Update) * Fixed Warden Detection on Army Overview and Attack (June 2019 Update) * Fixed halt mode not supported in account switching * Fixed bot accout switching all barracks upgrading logic running on all accounts when detected first time * Fixed Line 38926 array error in standard attack * Fixed "Impossible value (-1) from Msgbox" when using "Locate Upgrades" * Fixed spell popup window when switching between mini gui and normal gui mode * Fixed array error in TcpTable.au3 * Fixed switch account before donating in Halt attack mode. * Fixed Switch Account being stuck when going off Attack Schedule * Fixed not donating Ice Golem * Fixed KOPLAYER 2.0 mouse device detection * Fixed bot activation when android is hidden (improves Nox window popup when text input detected) * Fixed rare application crash due to unhandled exception in helper_functions.dll when screencap used * Added Resume Attack conditions after Halt-Attack due to full resources * Added Turn Idle as a bot command option, works with switch account mode * Added Timer for Halt-attack and Resume-attack schedule * Added Hog Glider to Auto Star Lab * Introduced new quick train system
1 parent dfc6279 commit 4a6fb33

122 files changed

Lines changed: 4302 additions & 2610 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
1-
* **V7.7.6**
1+
* **V7.7.7**
2+
* Fixed Search Attack (June 2019 Update)
3+
* Fixed Warden Detection on Army Overview and Attack (June 2019 Update)
4+
* Fixed halt mode not supported in account switching
5+
* Fixed bot accout switching all barracks upgrading logic running on all accounts when detected first time
6+
* Fixed Line 38926 array error in standard attack
7+
* Fixed "Impossible value (-1) from Msgbox" when using "Locate Upgrades"
8+
* Fixed spell popup window when switching between mini gui and normal gui mode
9+
* Fixed array error in TcpTable.au3
10+
* Fixed switch account before donating in Halt attack mode.
11+
* Fixed Switch Account being stuck when going off Attack Schedule
12+
* Fixed not donating Ice Golem
13+
* Fixed KOPLAYER 2.0 mouse device detection
14+
* Fixed bot activation when android is hidden (improves Nox window popup when text input detected)
15+
* Fixed rare application crash due to unhandled exception in helper_functions.dll when screencap used
16+
* Added Resume Attack conditions after Halt-Attack due to full resources
17+
* Added Turn Idle as a bot command option, works with switch account mode
18+
* Added Timer for Halt-attack and Resume-attack schedule
19+
* Added Hog Glider to Auto Star Lab
20+
* Introduced new quick train system
21+
22+
* **V7.7.6**
223
* Added start, stop, pause, resume and photo buttons to bot thumbnail preview window
324
* Added Android adb.exe replace option under Bot/Android to solve adb.exe issues
425
* Fixed forum authentication

COCBot/GUI/MBR GUI Control BOT Options.au3

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -460,34 +460,14 @@ Func chkmakeIMGCSV()
460460
EndFunc ;==>chkmakeIMGCSV
461461

462462
Func btnTestTrain()
463-
Local $currentOCR = $g_bDebugOcr
464463
Local $currentRunState = $g_bRunState
465464
$g_bRunState = True
466-
BeginImageTest()
465+
SetLog("Testing Train()", $COLOR_INFO)
467466

468-
Local $result
469-
SetLog("Testing checkArmyCamp()", $COLOR_INFO)
470-
$result = checkArmyCamp()
471-
If @error Then $result = "Error " & @error & ", " & @extended & ", " & ((IsArray($result)) ? (_ArrayToString($result, ",")) : ($result))
472-
SetLog("Result checkArmyCamp() = " & ((IsArray($result)) ? ("Array: " & _ArrayToString($result, ",")) : ($result)), $COLOR_INFO)
473-
474-
SetLog("Testing getArmyHeroTime()", $COLOR_INFO)
475-
$result = getArmyHeroTime("all")
476-
If @error Then $result = "Error " & @error & ", " & @extended & ", " & ((IsArray($result)) ? (_ArrayToString($result, ",")) : ($result))
477-
SetLog("Result getArmyHeroTime() = " & ((IsArray($result)) ? ("Array: " & _ArrayToString($result, ",")) : ($result)), $COLOR_INFO)
478-
479-
$result = "" ;
480-
SetLog("Testing ArmyHeroStatus()", $COLOR_INFO)
481-
For $i = 0 To 2
482-
$result &= " " & ArmyHeroStatus($i)
483-
Next
484-
If @error Then $result = "Error " & @error & ", " & @extended & ", " & ((IsArray($result)) ? (_ArrayToString($result, ",")) : ($result))
485-
SetLog("Result ArmyHeroStatus(0, 1, 2) = " & ((IsArray($result)) ? ("Array: " & _ArrayToString($result, ",")) : ($result)), $COLOR_INFO)
467+
TrainSystem()
486468

487469
SetLog("Testing Train DONE", $COLOR_INFO)
488-
EndImageTest()
489470

490-
$g_bDebugOcr = $currentOCR
491471
$g_bRunState = $currentRunState
492472
EndFunc ;==>btnTestTrain
493473

COCBot/GUI/MBR GUI Control Bottom.au3

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ Func Initiate()
4545
$g_bFirstStart = True
4646
$g_bInitiateSwitchAcc = True
4747
$g_sLabUpgradeTime = ""
48+
For $i = 0 To $eLootCount - 1
49+
$g_abFullStorage[$i] = False
50+
Next
4851

4952
;~ If $g_bNotifyDeleteAllPushesOnStart Then _DeletePush()
5053

0 commit comments

Comments
 (0)