Skip to content

Commit 0c5f6ae

Browse files
committed
* **V7.2.2**
* Fix bad train troop pixel porblems * Fix bot background mode when BlueStacks2 using OpenGL (GlRenderMode=4) * Fix max level and cost for spells * Fix Name tab for schedule notify * Fix Icons not updating * Fix disabled Misc Tab when Bot is running/paused * Lower Clock Tower Tolerance to improve Detection * Improve bot boot time by 17 Seconds for BlueStacks/BlueStacks2 * Update Azerbaijan and Turkish Language By Z E C K
1 parent 473ff05 commit 0c5f6ae

38 files changed

Lines changed: 462 additions & 384 deletions

CHANGELOG

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
* **V7.2.2**
2+
* Fix bad train troop pixel porblems
3+
* Fix bot background mode when BlueStacks2 using OpenGL (GlRenderMode=4)
4+
* Fix max level and cost for spells
5+
* Fix Name tab for schedule notify
6+
* Fix Icons not updating
7+
* Fix disabled Misc Tab when Bot is running/paused
8+
* Lower Clock Tower Tolerance to improve Detection
9+
* Improve bot boot time by 17 Seconds for BlueStacks/BlueStacks2
10+
* Update Azerbaijan and Turkish Language By Z E C K
11+
112
* **V7.2.1**
213
* Add Builder Base collect resources and activate Clock Tower
314
* Add Bot Android Option "Use script for accurate Click & Drag", unchecking can solve swipe issues

COCBot/GUI/MBR GUI Control Child Army.au3

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ Func chkTroopOrder($bSetLog = True)
342342
For $i = 0 To UBound($g_ahCmbTroopOrder) - 1
343343
GUICtrlSetState($g_ahCmbTroopOrder[$i], $GUI_ENABLE)
344344
Next
345-
If IsUseCustomTroopOrder() = True Then GUICtrlSetImage($g_ahImgTroopOrderSet, $g_sLibIconPath, $eIcnRedLight)
345+
If IsUseCustomTroopOrder() = True Then _GUICtrlSetImage($g_ahImgTroopOrderSet, $g_sLibIconPath, $eIcnRedLight)
346346
Else
347347
$g_bCustomTrainOrderEnable = False
348348
GUICtrlSetState($g_hBtnTroopOrderSet, $GUI_DISABLE) ; disable button
@@ -370,7 +370,7 @@ Func chkSpellsOrder()
370370
Next
371371
GUICtrlSetState($g_hBtnRemoveSpells, $GUI_ENABLE)
372372
GUICtrlSetState($g_hBtnSpellsOrderSet, $GUI_ENABLE)
373-
If IsUseCustomSpellsOrder() = True Then GUICtrlSetImage($g_ahImgSpellsOrderSet, $g_sLibIconPath, $eIcnRedLight)
373+
If IsUseCustomSpellsOrder() = True Then _GUICtrlSetImage($g_ahImgSpellsOrderSet, $g_sLibIconPath, $eIcnRedLight)
374374
Else
375375
$g_bCustomBrewOrderEnable = False
376376
For $i = 0 To UBound($g_ahCmbSpellsOrder) - 1
@@ -389,12 +389,12 @@ Func GUISpellsOrder()
389389
Local $iCtrlIdImage = $iGUI_CtrlId + 1 ; record control ID for $g_ahImgTroopOrder[$z] based on control of combobox that called this function
390390
Local $iSpellsIndex = _GUICtrlComboBox_GetCurSel($iGUI_CtrlId) + 1 ; find zero based index number of Spell selected in combo box, add one for enum of proper icon
391391

392-
GUICtrlSetImage($iCtrlIdImage, $g_sLibIconPath, $g_aiSpellsOrderIcon[$iSpellsIndex]) ; set proper Spell icon
392+
_GUICtrlSetImage($iCtrlIdImage, $g_sLibIconPath, $g_aiSpellsOrderIcon[$iSpellsIndex]) ; set proper Spell icon
393393

394394
For $i = 0 To UBound($g_ahCmbSpellsOrder) - 1 ; check for duplicate combobox index and flag problem
395395
If $iGUI_CtrlId = $g_ahCmbSpellsOrder[$i] Then ContinueLoop
396396
If _GUICtrlComboBox_GetCurSel($iGUI_CtrlId) = _GUICtrlComboBox_GetCurSel($g_ahCmbSpellsOrder[$i]) Then
397-
GUICtrlSetImage($g_ahImgSpellsOrder[$i], $g_sLibIconPath, $eIcnOptions)
397+
_GUICtrlSetImage($g_ahImgSpellsOrder[$i], $g_sLibIconPath, $eIcnOptions)
398398
_GUICtrlComboBox_SetCurSel($g_ahCmbSpellsOrder[$i], -1)
399399
GUISetState()
400400
$bDuplicate = True
@@ -406,7 +406,7 @@ Func GUISpellsOrder()
406406
Return
407407
Else
408408
GUICtrlSetState($g_hBtnSpellsOrderSet, $GUI_ENABLE) ; enable button to apply new order
409-
GUICtrlSetImage($g_ahImgSpellsOrderSet, $g_sLibIconPath, $eIcnRedLight) ; set status indicator to show need to apply new order
409+
_GUICtrlSetImage($g_ahImgSpellsOrderSet, $g_sLibIconPath, $eIcnRedLight) ; set status indicator to show need to apply new order
410410
EndIf
411411
EndFunc ;==>GUISpellsOrder
412412

@@ -420,9 +420,9 @@ Func BtnRemoveSpells()
420420
$g_aiCmbCustomBrewOrder[$i] = -1
421421
_GUICtrlComboBox_ResetContent($g_ahCmbSpellsOrder[$i])
422422
GUICtrlSetData($g_ahCmbSpellsOrder[$i], $sComboData, "")
423-
GUICtrlSetImage($g_ahImgSpellsOrder[$i], $g_sLibIconPath, $eIcnOptions)
423+
_GUICtrlSetImage($g_ahImgSpellsOrder[$i], $g_sLibIconPath, $eIcnOptions)
424424
Next
425-
GUICtrlSetImage($g_ahImgSpellsOrderSet, $g_sLibIconPath, $eIcnSilverStar)
425+
_GUICtrlSetImage($g_ahImgSpellsOrderSet, $g_sLibIconPath, $eIcnSilverStar)
426426
SetDefaultSpellsGroup(False)
427427
SetRedrawBotWindow($bWasRedraw, Default, Default, Default, "BtnRemoveSpells")
428428
EndFunc ;==>BtnRemoveSpells
@@ -433,12 +433,12 @@ Func GUITrainOrder()
433433
Local $iCtrlIdImage = $iGUI_CtrlId + 1 ; record control ID for $g_ahImgTroopOrder[$z] based on control of combobox that called this function
434434
Local $iTroopIndex = _GUICtrlComboBox_GetCurSel($iGUI_CtrlId) + 1 ; find zero based index number of troop selected in combo box, add one for enum of proper icon
435435

436-
GUICtrlSetImage($iCtrlIdImage, $g_sLibIconPath, $g_aiTroopOrderIcon[$iTroopIndex]) ; set proper troop icon
436+
_GUICtrlSetImage($iCtrlIdImage, $g_sLibIconPath, $g_aiTroopOrderIcon[$iTroopIndex]) ; set proper troop icon
437437

438438
For $i = 0 To UBound($g_ahCmbTroopOrder) - 1 ; check for duplicate combobox index and flag problem
439439
If $iGUI_CtrlId = $g_ahCmbTroopOrder[$i] Then ContinueLoop
440440
If _GUICtrlComboBox_GetCurSel($iGUI_CtrlId) = _GUICtrlComboBox_GetCurSel($g_ahCmbTroopOrder[$i]) Then
441-
GUICtrlSetImage($g_ahImgTroopOrder[$i], $g_sLibIconPath, $eIcnOptions)
441+
_GUICtrlSetImage($g_ahImgTroopOrder[$i], $g_sLibIconPath, $eIcnOptions)
442442
_GUICtrlComboBox_SetCurSel($g_ahCmbTroopOrder[$i], -1)
443443
GUISetState()
444444
$bDuplicate = True
@@ -449,7 +449,7 @@ Func GUITrainOrder()
449449
Return
450450
Else
451451
GUICtrlSetState($g_hBtnTroopOrderSet, $GUI_ENABLE) ; enable button to apply new order
452-
GUICtrlSetImage($g_ahImgTroopOrderSet, $g_sLibIconPath, $eIcnRedLight) ; set status indicator to show need to apply new order
452+
_GUICtrlSetImage($g_ahImgTroopOrderSet, $g_sLibIconPath, $eIcnRedLight) ; set status indicator to show need to apply new order
453453
EndIf
454454
EndFunc ;==>GUITrainOrder
455455

@@ -463,9 +463,9 @@ Func BtnRemoveTroops()
463463
$g_aiCmbCustomTrainOrder[$i] = -1
464464
_GUICtrlComboBox_ResetContent ($g_ahCmbTroopOrder[$i])
465465
GUICtrlSetData($g_ahCmbTroopOrder[$i], $sComboData, "")
466-
GUICtrlSetImage($g_ahImgTroopOrder[$i], $g_sLibIconPath, $eIcnOptions)
466+
_GUICtrlSetImage($g_ahImgTroopOrder[$i], $g_sLibIconPath, $eIcnOptions)
467467
Next
468-
GUICtrlSetImage($g_ahImgTroopOrderSet, $g_sLibIconPath, $eIcnSilverStar)
468+
_GUICtrlSetImage($g_ahImgTroopOrderSet, $g_sLibIconPath, $eIcnSilverStar)
469469
SetDefaultTroopGroup(False)
470470
SetRedrawBotWindow($bWasRedraw, Default, Default, Default, "BtnRemoveTroops")
471471
EndFunc ;==>BtnRemoveTroops
@@ -488,7 +488,7 @@ Func BtnSpellsOrderSet()
488488
If _GUICtrlComboBox_GetCurSel($g_ahCmbSpellsOrder[$i]) <> -1 And _
489489
_GUICtrlComboBox_GetCurSel($g_ahCmbSpellsOrder[$i]) = _GUICtrlComboBox_GetCurSel($g_ahCmbSpellsOrder[$j]) Then
490490
_GUICtrlComboBox_SetCurSel($g_ahCmbSpellsOrder[$j], -1)
491-
GUICtrlSetImage($g_ahImgSpellsOrder[$j], $g_sLibIconPath, $eIcnOptions)
491+
_GUICtrlSetImage($g_ahImgSpellsOrder[$j], $g_sLibIconPath, $eIcnOptions)
492492
$bReady = False
493493
Else
494494
GUICtrlSetColor($g_ahCmbSpellsOrder[$j], $COLOR_BLACK)
@@ -517,7 +517,7 @@ Func BtnSpellsOrderSet()
517517
If $aiBrewOrder[$j] <> -1 Then ; loop till find a valid troop enum
518518
$g_aiCmbCustomBrewOrder[$i] = $aiBrewOrder[$j] ; assign unused troop
519519
_GUICtrlComboBox_SetCurSel($g_ahCmbSpellsOrder[$i], $aiBrewOrder[$j])
520-
GUICtrlSetImage($g_ahImgSpellsOrder[$i], $g_sLibIconPath, $g_aiSpellsOrderIcon[$g_aiCmbCustomBrewOrder[$i] + 1])
520+
_GUICtrlSetImage($g_ahImgSpellsOrder[$i], $g_sLibIconPath, $g_aiSpellsOrderIcon[$g_aiCmbCustomBrewOrder[$i] + 1])
521521
$aiBrewOrder[$j] = -1 ; remove unused troop from array
522522
ExitLoop
523523
EndIf
@@ -539,7 +539,7 @@ Func BtnSpellsOrderSet()
539539
Case Else
540540
Setlog("Monkey ate bad banana, something wrong with ChangeSpellsBrewOrder() code!", $COLOR_ERROR)
541541
EndSwitch
542-
GUICtrlSetImage($g_ahImgSpellsOrderSet, $g_sLibIconPath, $eIcnRedLight)
542+
_GUICtrlSetImage($g_ahImgSpellsOrderSet, $g_sLibIconPath, $eIcnRedLight)
543543
Else
544544
Setlog("Spells Brew order changed successfully!", $COLOR_SUCCESS)
545545
For $i = 0 To $eSpellCount - 1
@@ -550,7 +550,7 @@ Func BtnSpellsOrderSet()
550550
EndIf
551551
Else
552552
Setlog("Must use all Spells and No duplicate troop names!", $COLOR_ERROR)
553-
GUICtrlSetImage($g_ahImgSpellsOrderSet, $g_sLibIconPath, $eIcnRedLight)
553+
_GUICtrlSetImage($g_ahImgSpellsOrderSet, $g_sLibIconPath, $eIcnRedLight)
554554
EndIf
555555
; GUICtrlSetState($g_hBtnTroopOrderSet, $GUI_DISABLE)
556556
SetRedrawBotWindow($bWasRedraw, Default, Default, Default, "BtnSpellsOrderSet")
@@ -575,7 +575,7 @@ Func BtnTroopOrderSet()
575575
If _GUICtrlComboBox_GetCurSel($g_ahCmbTroopOrder[$i]) <> -1 And _
576576
_GUICtrlComboBox_GetCurSel($g_ahCmbTroopOrder[$i]) = _GUICtrlComboBox_GetCurSel($g_ahCmbTroopOrder[$j]) Then
577577
_GUICtrlComboBox_SetCurSel($g_ahCmbTroopOrder[$j], -1)
578-
GUICtrlSetImage($g_ahImgTroopOrder[$j], $g_sLibIconPath, $eIcnOptions)
578+
_GUICtrlSetImage($g_ahImgTroopOrder[$j], $g_sLibIconPath, $eIcnOptions)
579579
$bReady = False
580580
Else
581581
GUICtrlSetColor($g_ahCmbTroopOrder[$j], $COLOR_BLACK)
@@ -604,7 +604,7 @@ Func BtnTroopOrderSet()
604604
If $aiUsedTroop[$j] <> -1 Then ; loop till find a valid troop enum
605605
$g_aiCmbCustomTrainOrder[$i] = $aiUsedTroop[$j] ; assign unused troop
606606
_GUICtrlComboBox_SetCurSel($g_ahCmbTroopOrder[$i], $aiUsedTroop[$j])
607-
GUICtrlSetImage($g_ahImgTroopOrder[$i], $g_sLibIconPath, $g_aiTroopOrderIcon[$g_aiCmbCustomTrainOrder[$i] + 1])
607+
_GUICtrlSetImage($g_ahImgTroopOrder[$i], $g_sLibIconPath, $g_aiTroopOrderIcon[$g_aiCmbCustomTrainOrder[$i] + 1])
608608
$aiUsedTroop[$j] = -1 ; remove unused troop from array
609609
ExitLoop
610610
EndIf
@@ -626,7 +626,7 @@ Func BtnTroopOrderSet()
626626
Case Else
627627
Setlog("Monkey ate bad banana, something wrong with ChangeTroopTrainOrder() code!", $COLOR_ERROR)
628628
EndSwitch
629-
GUICtrlSetImage($g_ahImgTroopOrderSet, $g_sLibIconPath, $eIcnRedLight)
629+
_GUICtrlSetImage($g_ahImgTroopOrderSet, $g_sLibIconPath, $eIcnRedLight)
630630
Else
631631
Setlog("Troop training order changed successfully!", $COLOR_SUCCESS)
632632
For $i = 0 To $eTroopCount - 1
@@ -637,7 +637,7 @@ Func BtnTroopOrderSet()
637637
EndIf
638638
Else
639639
Setlog("Must use all troops and No duplicate troop names!", $COLOR_ERROR)
640-
GUICtrlSetImage($g_ahImgTroopOrderSet, $g_sLibIconPath, $eIcnRedLight)
640+
_GUICtrlSetImage($g_ahImgTroopOrderSet, $g_sLibIconPath, $eIcnRedLight)
641641
EndIf
642642
; GUICtrlSetState($g_hBtnTroopOrderSet, $GUI_DISABLE)
643643
SetRedrawBotWindow($bWasRedraw, Default, Default, Default, "BtnTroopOrderSet")
@@ -670,7 +670,7 @@ Func ChangeSpellsBrewOrder()
670670
For $i = 0 To $eSpellCount - 1
671671
$g_aiBrewOrder[$i] = $NewTroopOrder[$i]
672672
Next
673-
GUICtrlSetImage($g_ahImgSpellsOrderSet, $g_sLibIconPath, $eIcnGreenLight)
673+
_GUICtrlSetImage($g_ahImgSpellsOrderSet, $g_sLibIconPath, $eIcnGreenLight)
674674
Else
675675
Setlog($iUpdateCount & "|" & $eSpellCount & " - Error - Bad Spells assignment in ChangeSpellsBrewOrder()", $COLOR_ERROR)
676676
SetError(3, 0, False)
@@ -709,7 +709,7 @@ Func ChangeTroopTrainOrder()
709709
For $i = 0 To $eTroopCount - 1
710710
$g_aiTrainOrder[$i] = $NewTroopOrder[$i]
711711
Next
712-
GUICtrlSetImage($g_ahImgTroopOrderSet, $g_sLibIconPath, $eIcnGreenLight)
712+
_GUICtrlSetImage($g_ahImgTroopOrderSet, $g_sLibIconPath, $eIcnGreenLight)
713713
Else
714714
Setlog($iUpdateCount & "|" & $eTroopCount & " - Error - Bad troop assignment in ChangeTroopTrainOrder()", $COLOR_ERROR)
715715
SetError(3, 0, False)

COCBot/GUI/MBR GUI Control Child Upgrade.au3

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ Func btnResetUpgrade()
8686
GUICtrlSetData($g_hTxtUpgradeLevel[$i], "") ; Clear GUI Unit Level
8787
GUICtrlSetData($g_hTxtUpgradeValue[$i], "") ; Clear Upgrade value in GUI
8888
GUICtrlSetData($g_hTxtUpgradeTime[$i], "") ; Clear Upgrade time in GUI
89-
GUICtrlSetImage($g_hPicUpgradeType[$i], $g_sLibIconPath, $eIcnBlank) ; change GUI upgrade image to blank
89+
_GUICtrlSetImage($g_hPicUpgradeType[$i], $g_sLibIconPath, $eIcnBlank) ; change GUI upgrade image to blank
9090
$g_aiPicUpgradeStatus[$i] = $eIcnTroops
91-
GUICtrlSetImage($g_hPicUpgradeStatus[$i], $g_sLibIconPath, $g_aiPicUpgradeStatus[$i]) ; Change GUI upgrade status to not ready
91+
_GUICtrlSetImage($g_hPicUpgradeStatus[$i], $g_sLibIconPath, $g_aiPicUpgradeStatus[$i]) ; Change GUI upgrade status to not ready
9292
GUICtrlSetState($g_hChkUpgrade[$i], $GUI_UNCHECKED) ; Change upgrade selection box to unchecked
9393
GUICtrlSetData($g_hTxtUpgradeEndTime[$i], "") ; Clear Upgrade time in GUI
9494
GUICtrlSetState($g_hChkUpgradeRepeat[$i], $GUI_UNCHECKED) ; Change repeat box to unchecked
@@ -102,14 +102,14 @@ Func chkLab()
102102
GUICtrlSetState($g_hLblNextUpgrade, $GUI_ENABLE)
103103
GUICtrlSetState($g_hCmbLaboratory, $GUI_ENABLE)
104104
;GUICtrlSetState($g_hBtnLocateLaboratory, $GUI_SHOW)
105-
GUICtrlSetImage($g_hPicLabUpgrade, $g_sLibIconPath, $g_avLabTroops[$g_iCmbLaboratory][4])
105+
_GUICtrlSetImage($g_hPicLabUpgrade, $g_sLibIconPath, $g_avLabTroops[$g_iCmbLaboratory][4])
106106
Else
107107
$g_bAutoLabUpgradeEnable = False
108108
GUICtrlSetState($g_hPicLabUpgrade, $GUI_HIDE)
109109
GUICtrlSetState($g_hLblNextUpgrade, $GUI_DISABLE)
110110
GUICtrlSetState($g_hCmbLaboratory, $GUI_DISABLE)
111111
;GUICtrlSetState($g_hBtnLocateLaboratory, $GUI_HIDE)
112-
GUICtrlSetImage($g_hPicLabUpgrade, $g_sLibIconPath, $g_avLabTroops[0][4])
112+
_GUICtrlSetImage($g_hPicLabUpgrade, $g_sLibIconPath, $g_avLabTroops[0][4])
113113
EndIf
114114
LabStatusGUIUpdate()
115115
EndFunc ;==>chkLab
@@ -133,7 +133,7 @@ EndFunc ;==>LabStatusGUIUpdate
133133

134134
Func cmbLab()
135135
$g_iCmbLaboratory = _GUICtrlComboBox_GetCurSel($g_hCmbLaboratory)
136-
GUICtrlSetImage($g_hPicLabUpgrade, $g_sLibIconPath, $g_avLabTroops[$g_iCmbLaboratory][4])
136+
_GUICtrlSetImage($g_hPicLabUpgrade, $g_sLibIconPath, $g_avLabTroops[$g_iCmbLaboratory][4])
137137
EndFunc ;==>cmbLab
138138

139139
Func ResetLabUpgradeTime()

COCBot/GUI/MBR GUI Control Donate.au3

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,18 +92,18 @@ Func cmbDonateCustomA()
9292
Local $combo1 = _GUICtrlComboBox_GetCurSel($g_ahCmbDonateCustomA[0])
9393
Local $combo2 = _GUICtrlComboBox_GetCurSel($g_ahCmbDonateCustomA[1])
9494
Local $combo3 = _GUICtrlComboBox_GetCurSel($g_ahCmbDonateCustomA[2])
95-
GUICtrlSetImage($g_ahPicDonateCustomA[0], $g_sLibIconPath, $g_aiDonIcons[$combo1])
96-
GUICtrlSetImage($g_ahPicDonateCustomA[1], $g_sLibIconPath, $g_aiDonIcons[$combo2])
97-
GUICtrlSetImage($g_ahPicDonateCustomA[2], $g_sLibIconPath, $g_aiDonIcons[$combo3])
95+
_GUICtrlSetImage($g_ahPicDonateCustomA[0], $g_sLibIconPath, $g_aiDonIcons[$combo1])
96+
_GUICtrlSetImage($g_ahPicDonateCustomA[1], $g_sLibIconPath, $g_aiDonIcons[$combo2])
97+
_GUICtrlSetImage($g_ahPicDonateCustomA[2], $g_sLibIconPath, $g_aiDonIcons[$combo3])
9898
EndFunc ;==>cmbDonateCustomA
9999

100100
Func cmbDonateCustomB()
101101
Local $combo1 = _GUICtrlComboBox_GetCurSel($g_ahCmbDonateCustomB[0])
102102
Local $combo2 = _GUICtrlComboBox_GetCurSel($g_ahCmbDonateCustomB[1])
103103
Local $combo3 = _GUICtrlComboBox_GetCurSel($g_ahCmbDonateCustomB[2])
104-
GUICtrlSetImage($g_ahPicDonateCustomB[0], $g_sLibIconPath, $g_aiDonIcons[$combo1])
105-
GUICtrlSetImage($g_ahPicDonateCustomB[1], $g_sLibIconPath, $g_aiDonIcons[$combo2])
106-
GUICtrlSetImage($g_ahPicDonateCustomB[2], $g_sLibIconPath, $g_aiDonIcons[$combo3])
104+
_GUICtrlSetImage($g_ahPicDonateCustomB[0], $g_sLibIconPath, $g_aiDonIcons[$combo1])
105+
_GUICtrlSetImage($g_ahPicDonateCustomB[1], $g_sLibIconPath, $g_aiDonIcons[$combo2])
106+
_GUICtrlSetImage($g_ahPicDonateCustomB[2], $g_sLibIconPath, $g_aiDonIcons[$combo3])
107107
EndFunc ;==>cmbDonateCustomB
108108

109109
Func _DonateBtn($hFirstControl, $hLastControl)

COCBot/GUI/MBR GUI Design About.au3

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Func CreateAboutTab()
4949
GUICtrlCreateLabel($sText, $x - 5, $y, 410, 20, BITOR($WS_VISIBLE, $ES_AUTOVSCROLL, $SS_LEFT),0)
5050
GUICtrlSetFont(-1, 9.5, $FW_BOLD, Default, "Arial")
5151
GUICtrlSetColor(-1, $COLOR_NAVY)
52-
$sText = "Boju, Codeslinger69, Cosote, Fliegerfaust, Hervidero, MMHK, MonkeyHunter, ProMac, TripleM, Trlopes"
52+
$sText = "Boju, Cosote, Fliegerfaust, MMHK, TripleM, Trlopes"
5353
GUICtrlCreateLabel($sText, $x + 5, $y + 15, 410, 50, BITOR($WS_VISIBLE, $ES_AUTOVSCROLL, $SS_LEFT),0)
5454
GUICtrlSetFont(-1,9, $FW_MEDIUM, Default, "Arial")
5555

@@ -58,7 +58,7 @@ Func CreateAboutTab()
5858
GUICtrlCreateLabel($sText, $x - 5, $y, 410, 20, BITOR($WS_VISIBLE, $ES_AUTOVSCROLL, $SS_LEFT), 0)
5959
GUICtrlSetFont(-1, 9.5, $FW_BOLD, Default, "Arial")
6060
GUICtrlSetColor(-1, $COLOR_NAVY)
61-
$sText = "Ezeck0001, IceCube, Kaganus, MR.ViPeR, Sardo, TheRevenor, Zengzeng"
61+
$sText = "Codeslinger69, Ezeck0001, Hervidero, IceCube, Kaganus, MR.ViPeR, Sardo, TheRevenor, Zengzeng"
6262
GUICtrlCreateLabel($sText, $x + 5, $y + 15, 410, 50, BITOR($WS_VISIBLE, $ES_AUTOVSCROLL, $SS_LEFT), 0)
6363
GUICtrlSetFont(-1, 9, $FW_MEDIUM, Default, "Arial")
6464

@@ -67,7 +67,7 @@ Func CreateAboutTab()
6767
GUICtrlCreateLabel($sText, $x - 5, $y, 410, 20, BITOR($WS_VISIBLE, $ES_AUTOVSCROLL, $SS_LEFT), 0)
6868
GUICtrlSetFont(-1, 9.5, $FW_BOLD, Default, "Arial")
6969
GUICtrlSetColor(-1, $COLOR_NAVY)
70-
$sText = "Antidote, AtoZ, Barracoda, Didipe, Dinobot, DixonHill, DkEd, GkevinOD, HungLe, KnowJack, LunaEclipse, Safar46, Saviart, TheMaster1st, and others"
70+
$sText = "Antidote, AtoZ, Barracoda, Didipe, Dinobot, DixonHill, DkEd, GkevinOD, HungLe, KnowJack, LunaEclipse, MonkeyHunter, ProMac, Safar46, Saviart, TheMaster1st, and others"
7171
GUICtrlCreateLabel($sText, $x + 5, $y + 15, 410, 50, BITOR($WS_VISIBLE, $ES_AUTOVSCROLL, $SS_LEFT), 0)
7272
GUICtrlSetFont(-1, 9, $FW_MEDIUM, Default, "Arial")
7373

COCBot/GUI/MBR GUI Design Child Attack - Options-Attack.au3

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ Func CreateAttackSearchOptionsAttack()
172172
GUICtrlSetState(-1, $GUI_DISABLE)
173173
_GUICtrlSetTip(-1, GetTranslatedFileIni("MBR Global GUI Design", "Only_during_day", -1))
174174
$g_ahChkAttackWeekdaysE = GUICtrlCreateCheckbox("", $x + 151, $y, 15, 15, BitOR($BS_PUSHLIKE, $BS_ICON))
175-
GUICtrlSetImage(-1, $g_sLibIconPath, $eIcnGoldStar, 0)
175+
_GUICtrlSetImage(-1, $g_sLibIconPath, $eIcnGoldStar, 0)
176176
GUICtrlSetState(-1, $GUI_UNCHECKED)
177177
GUICtrlSetState(-1, $GUI_DISABLE)
178178
_GUICtrlSetTip(-1, GetTranslatedFileIni("MBR Global GUI Design", "Clear_set_row_of_boxes", -1))
@@ -259,7 +259,7 @@ Func CreateAttackSearchOptionsAttack()
259259
GUICtrlSetState(-1, $GUI_CHECKED)
260260
GUICtrlSetState(-1, $GUI_DISABLE)
261261
$g_ahChkAttackHoursE1 = GUICtrlCreateCheckbox("", $x + 211, $y+1, 13, 13, BitOR($BS_PUSHLIKE, $BS_ICON))
262-
GUICtrlSetImage(-1, $g_sLibIconPath, $eIcnGoldStar, 0)
262+
_GUICtrlSetImage(-1, $g_sLibIconPath, $eIcnGoldStar, 0)
263263
GUICtrlSetState(-1, $GUI_UNCHECKED)
264264
GUICtrlSetState(-1, $GUI_DISABLE)
265265
_GUICtrlSetTip(-1, GetTranslatedFileIni("MBR Global GUI Design", "Clear_set_row_of_boxes", -1))
@@ -317,7 +317,7 @@ Func CreateAttackSearchOptionsAttack()
317317
GUICtrlSetState(-1, $GUI_DISABLE)
318318
_GUICtrlSetTip(-1, $sTxtTip)
319319
$g_ahChkAttackHoursE2 = GUICtrlCreateCheckbox("", $x + 211, $y+1, 13, 13, BitOR($BS_PUSHLIKE, $BS_ICON))
320-
GUICtrlSetImage(-1, $g_sLibIconPath, $eIcnGoldStar, 0)
320+
_GUICtrlSetImage(-1, $g_sLibIconPath, $eIcnGoldStar, 0)
321321
GUICtrlSetState(-1, $GUI_UNCHECKED)
322322
GUICtrlSetState(-1, $GUI_DISABLE)
323323
_GUICtrlSetTip(-1, GetTranslatedFileIni("MBR Global GUI Design", "Clear_set_row_of_boxes", -1))
@@ -410,7 +410,7 @@ Func CreateAttackSearchOptionsAttack()
410410
GUICtrlSetState(-1, $GUI_DISABLE)
411411
_GUICtrlSetTip(-1, $sTxtTip)
412412
$g_ahChkDropCCHoursE1 = GUICtrlCreateCheckbox("", $x + 211, $y+1, 13, 13, BitOR($BS_PUSHLIKE, $BS_ICON))
413-
GUICtrlSetImage(-1, $g_sLibIconPath, $eIcnGoldStar, 0)
413+
_GUICtrlSetImage(-1, $g_sLibIconPath, $eIcnGoldStar, 0)
414414
GUICtrlSetState(-1, $GUI_UNCHECKED )
415415
_GUICtrlSetTip(-1, GetTranslatedFileIni("MBR Global GUI Design", "Clear_set_row_of_boxes", -1))
416416
GUICtrlSetOnEvent(-1, "chkDropCCHoursE1")
@@ -467,7 +467,7 @@ Func CreateAttackSearchOptionsAttack()
467467
GUICtrlSetState(-1, $GUI_DISABLE)
468468
_GUICtrlSetTip(-1, $sTxtTip)
469469
$g_ahChkDropCCHoursE2 = GUICtrlCreateCheckbox("", $x + 211, $y+1, 13, 13, BitOR($BS_PUSHLIKE, $BS_ICON))
470-
GUICtrlSetImage(-1, $g_sLibIconPath, $eIcnGoldStar, 0)
470+
_GUICtrlSetImage(-1, $g_sLibIconPath, $eIcnGoldStar, 0)
471471
GUICtrlSetState(-1, $GUI_UNCHECKED )
472472
_GUICtrlSetTip(-1, GetTranslatedFileIni("MBR Global GUI Design", "Clear_set_row_of_boxes", -1))
473473
GUICtrlSetOnEvent(-1, "chkDropCCHoursE2")

0 commit comments

Comments
 (0)