-
Notifications
You must be signed in to change notification settings - Fork 55
/
CHANGELOG
2342 lines (2203 loc) · 129 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
* **v.7.9.7**
* Fix boost SuporTroops for slower VPS reported by @Wazzock1972
* Fix ClanGames get information by @xbebenk
* Adjust field widths to show 20.000.000 G,E and 11.000 DE in log by @HArchH
* Adjust field widths to allow 1M+ entries in "Share Replay" screen
* Fix DonateCC - Can not find Clan Tab error by @xbebenk
* fix attack window fail. because pixel to check covered by siege empty message by @xbebenk
* Suggestion by @MrPleb to increase search field widths, G, E, DE
* Change tolerance _92 -> _93 solve misdetection in attackbar autumn scenery by @miked
* Fix Telegrapm "Run Time" value.
* Attempt to stop calling BM "dead" prematurely
* Autumn Update
-- Change BB boat and tree images for zoomout
-- Fix SCID switch account
-- Set levels and prices for troops and spells. Mod GUI to show 2-digit levels in Custom Training.
-- Superbowler support, including boost
* Fix combo box for instance without emulator
* Fix for SCID switch crash by @grumpyhog
* Report missing imgxlm files as errors to user's console.
* Restart MBR if MBR hangs on "Attack results" screen after BB attack.
* Donate screen, first column now shows orange outline.
* Set "alert sound" volumne to 50% before playing it.
* **v.7.9.6**
* Fix attack log in all languages reported by Boldina
* Fix misdetection wall lvl9
* Fix no elixer / gold button in wall upgrade for 14.93.6 game version
* Fix for max pet levels
* Fix BB not attacking when loot available
* Fix misdetect army overview RLoons with Loons
* Fix for autoTH level search, don't regress, adjust some TH image tolerances
* Fix smart train not waiting for royal champion
* Fix BB option checkboxes not enabling/disabling properly
* Fix account log file after switch account
* Emulator/Instance Selection at Android Tab
* Removed support for LeapDroid, KOPLAYER and Droid4X
* Added Supertroops AutoBoost by xbebenk and TFKNazgul
* **V7.9.5**
* Fix Train issues
* Fix PB Time
* Fix New Version for future release
* **V7.9.4**
* Fix ScreenShot when bot as paused
* Fix SmartZap Level 9 Lightening Spell
* Fix Device Connect Android 7
* Fix QuickTrain after SummerUpdate
* WallCost LVL12/13 updated to latest game-update @isaiahig
* Fix Wall lvl15 counter @moebius14
* Small French typo fix @Arisk0
* Fix Pethouse array issue when pets maxed @GrumpyHog
* Fix for Laboratory drag @xbebenk
* Fix PBTime
* Improve OCR for Over Damage
* Improve Townhall Detection
* Add New Super Troop Rocket Balloon
* Add New Elixir Dragon Rider
* **v7.9.3**
* Spring 2021 Update
** Globals: TH Level 14, BK, AQ, GW, RC new levels
** Added TH14 images
** Fixed auto Townhall locate - removed opencv Townhall detection
** Update TH14 building arrays
** Increased StoneCC image tolerance due to interference with Jungle Scenery
** Update League Day End image
** Fixed Lab array error
** Added Jungle Scenery
** Fixed upgrade walls
** GUI & ini support for level 15 walls.
** Support for Pet upgrades with first GUI
** Fix Collect Achievements scrolling forever, now only collects one per visit
** Renamed, updated CSV script [TH12-13] EDragv2...csv. Update your profile if you use it!
** Fixed TH14 induced array error in Upgrades
** 3 slots in CC: Added Clone spell donations.
** Added Inferno lvl8 images
** Added 1 Scattershot lvl3 image - see readme
** Added lvl15 wall images
** Added PetGuiDisplay - research timer
** Added PetHouse image search
** Added Laboratory image search
* Add BB "Drop Battle Machine First" feature @ahmed.hamdy
* Cleaned up NOTES on "[TH12-14] EDragv2 210425.csv" for @anondad
** Fixed SuperCell SwitchAccount
* **v7.9.1**
* TH8 village fix
* updated italian language by quisazadrah
* Fix gui issue with freeze spell requests
* Added Stone and Trees info to MakeScreenShot
* Added Attack CC, HM, WS, PC sceneries - SetSAtk(True) in Run Function
* Added Hog Mountain Scenery
* Added Winter Scenery
* Added Pirate Scenery
* Added GetVillageSize info to AttackDebug Image
* **V7.9.0**
* December Update 2020:
** Added Spell Invisibility (CSV name = ISpell)
** Added Siege Log Launcher (CSV name = LogL)
** New Royal Champion Levels
** Added Log Launcher and renamed EDragv2 CSV to "[TH12-13] EDragv2 201222a.csv"
** Fixed daily challenge collection caused by new checkmark.
** Super Troops capabilities added to Custom Train, QuickTrain, Donations, and Attack. New profiles required, or check Request Troops tab for correct Troops, Spells, and Siege Machines.
* Improved donations tab GUI
* Add BB Battle Challenges to Clan Games
* Fix OCR on Clan Games
* Fix log message during search by @xbebenk
Usage Warnings:
- If you make multiple types of siege machines your queues may become unbalanced. There is no code to delete siege machines from camps and queues due to their high cost.
- If you use SCID and have 4 or more accounts there is a problem scrolling to number 4 and above.
- Super Troops capabilities added to Custom Train, QuickTrain, Donations, and Attack. New profiles required, or check Request Troops tab for correct Troops, Spells, and Siege Machines. "Any" now at the top of the list to help avoid this in the future.
* **V7.8.9**
* Fixed queue for Siege Machine
* New Level 13 wall images
** Updated some attack scripts.
** Added auto boost to Super Troops (Doesnt work with multiple super troops yet)
* Added Queens Gambit script
* When Search Limit exceeded and Check Donate Often checked, will process main loop before resuming search.
* Fix switch account using scid
* **V7.8.8**
* Oct 20 Update
** Remove hard coding for camp and spell space
** Updated troop status
** Added SuperMinion, SuperValk. Smart Farm Update, CSV Atttack
** Updated standard attack to use SuperTroops
** Smart Farm not drops "Remain" troops
** Added SuperBall to Standard Attack, SmartFarm and Scripts
** Added code to REMAIN for dropping SuperTroops
** Added code to read SuperTroops in QuickTrain
** Added SuperValk Images
** Updated standard attack to use new supertroops
* Updated SmartFarm
* Updated Script Attack
* Smartfarm now drops excess super troops
* Updated troop stats, TODO list
* Developer specific changes
** Added custom, quick, comp troop arrays for SuperTroops
** Add .code-workspace to gitignore
** Add function to get queued siege machines
** Restored GetVariable but QT preset broken
* Fix super giant not working with custom train
* Fix switch account using scid
* Removed Skeleton Barrel troop
* Fixed Level 14 wall upgrades
* **V7.8.7**
* Additional fixes to village measuring
* **V7.8.6**
* Added additional error handling to the ZoomOut function
* Add handling for End Boost pop-up when Auto Upgrading
* Add scroll bar to switch profiles dropdown boxes
* Fix Click $speed parameter ignored by bot if passed when calling the function (reported by Boldina)
* Update Lab upgrade Lightening Spell (reported by @Boldina)
* Fix village measuring errors due to scenery changes
* **V7.8.5**
* Fix Clangames air troop challenge typo. Reported and found by @MyBotIvan
* Add scroll bar to profiles combobox
* Fix Troops Array!
* Add scroll bar to profiles combobox
* Correct auto switch wall level
* Add additional check for missing images
* Update lightening image
* Add function 'Collect Achievement Rewards'
* Update mine level 14, collector level 14 and drill level 8
* Siege machine hidden on train tab - reported by @ydoyoudothis
* Add Automatic Town Hall level update to FirstCheck
**V7.8.4**
* Add New Donation System!
* Fix lightning spell detection (Summer 2020 Update. Reported by @grumpyhog)
* Fix lightning spell space (Summer 2020 Update)
* Add new super troop support and fix new troop level values (Summer 2020 Update)
* Add New Dark Troop Headhunter (Summer 2020 Update)
* Fix array error on scid account switch. Reported by @passionfruit
* Fix legend league 'search for opponent' screen. Reported by @nytol
* Fix legend league not finding 'confirm attack' button when trophies are below 5000. Reported by @nytol
* Fix 'important notice' window not getting detected. Reported by @MikeD
* Fix getarmycctroops crashing when cc contains super troops. Reported by @nytol
* Fix array error while training troops/spells. Reported by @HarchH
* Improve new maintenance screen handling. Reported by @RoKSeus @priapus.cranium @HarchH
* Improve Away Clicks to be more randomized. Suggested by @grumpyhog
* @grumpyhog's fix to DropTrophy to also use RC
* Close up blank lines when "Reset Upgrades" button is pressed (Village / Upgrade / Buildings)
* Fixed status icon in the Village / Upgrade / Buildings screen
* Stop processing the building upgrade list when you run out of builders.
* Updated BK and AQ upgrade costs. Reported by @Brazuca87
* Support 6/22 upgrade AQ & BK levels 71 to 75 and new rates
* Added Help example of making a .bat file to start multiple instances
* Fix array error on spells queue read
* Add GUI option to sell all extra magic items for gems in personal challenges
* More work on SuperTroops use in CSV attacks. (Needs more testing with more troop types)
* Fixed Global vars for SuperTroops by @TFKNazgul
* Fixed SuperTroops CSV support by @Grumpyhog
* Smartfarm support for SuperTroops by @Grumpyhog
* **V7.8.3**
* Add Super Troops Training and Attacking (Spring 2020 Update) - Not Complete
* Fix Lootcart Position (Spring 2020 Update)
* Fix Main Village Zoomout (Spring 2020 Update)
* Fix Diamond Shape (Spring 2020 Update)
* Fix Maintenance Detection (Spring 2020 Update)
* Fix Clan Castle Request (Spring 2020 Update)
* Fix Search Condition Townhall Filter. Reported by @coccolino
* Fix Builder Base Attack Ending
* Fix Train Siege not Working on MiniGui. Reported by @grumpyhog
* Fix Bot not Switching Accounts when all legend attacks are done.
* Fix DonateCC OCR Position (Spring 2020 Update)
* Fix Donations from 2 Row! (Spring 2020 Update)
* Fix LatinA OCR Problems (Spring 2020 Update)
* Fix Royal Champion Ability
* Fix Google Play account list detection
* More fixes for optional update moving donate screen
* **V7.8.2**
* Fix lv14 walls amount not saving
* Fix lab upgrading wrong troops when user has made a selection.
* Fix csv train command with Champion. Reported by @Ratakantez.
* Fix attack BB infintie clouds loop.
* Fix bot not attacking when Royal Champion upgrading
* Fix bot dropping sieges when no cc present and drop "Castle Only" selected.
* Fix telegram builder info window not being displayed completely
* Fix Hide Shields
* Fix Drop Trophies clicking on Boost Heroes
* Fix FreeMagicItems
* Fix Boost Grand Warden
* **V7.8.1**
* Fix Bot Crash on SCID Switch! Reported by @paulinho
* Fix character 'з' is not detected correctly on Cyrillic font, Reported by @OlegD
* Fix Forum Login
* Add BB Ignore Wall AutoUpgrade
* Winter Update:
** Add Support for Townhall 13 (December Update)
** Add ScatterShot Support CSV Script attack. (December Update)
** Add Royal Champion Support. (December Update)
** Add Yeti support. (December Update)
** Add Siege Barracks support. (December Update)
** Add New Heroes\Troops\Spells Levels Info (December Update)
** Add Support Wall Level 13. (December Update)
** Fix ADB Can't Start The Game. (December Update)
** Fix Heroes Positions. (December Update)
** Fix Heroes Time Read Positions. (December Update)
** Fix Snow Theme Detection (December Update)
** Improve/Fix Laboratory for the Main Village (December Update)
** Update Defense Levels TH13 (December Update)
* **V7.8**
* Fix Surrender button reported by @Hecki
* Fix Switch Account with new SCID Update (Support for 8 Accs)
* Fix Error finding clan tab button
* Fix for Invalid slot # found = -1 for Archer
* Fix for October release change to Google ID
* Fix for October release for "balance donations"
* Fix for October release Chinese fonts in donation requests
* Fix October release Quick Train
* Fix Language Check
* Fix Empty sieges not dropping when empty
* Fix Star lab not upgrading troops in Builder Base
* Fix BuilderBase can't place new building
* Fix False positive on the bush when bot tries removing obstacles! Reported by @MikeD
* Update Turkish @F A T İ H
* Update Army Levels Now as Optional
* Add Random Clicks
* Add BuilderBase Attack
* Fix Order for IceGolem Donate Reported by @ anondad
* Legends sleep now random, 7 to 25 mins rather than fixed at 30.
* Improvement Inferno Tower Level 6 Detection
* Improvement Air Defense Level 10 Detection
* Improvement X-Bow Level 6 Detection
* Improvement Wizard Tower Level 11 Detection
* **V7.7.9**
* Fix builder base remove obstacle Button not found @DUC4TI
* Fix share replay function
* Fix cannot find confirm attack button @nytol
* Fix loot cart collection (October 2019 Update)
* Fix clan games (October 2019 Update)
* Fix donations (October 2019 Update)
* Fix quick train (October 2019 Update)
* **V7.7.8**
* Added Legend League attack with auto sign-up: any dead or live base search conditions are ignored
* Added precise Army to train system
* Added collect rewards in daily challenge
* Added check discount rate for heroes and wall upgrade
* Added resume attack to collect star bonus
* Improved quick train and double custom train to brew 11 lightning spells
* Improved train siege machine, not being skipped when halt-attack
* Improved request CC and attack when full to fall back to troop only when no troop types have been selected
* Fixed smartzap crashed with level-5 EQ spell
* Fixed collect free magic items
* Fixed builder base detection when master builder is gone
* Fixed delete army in quick train
* Fixed make 2nd army while in Halt-attack/Donate-only mode
* Fixed train tab display in languages other than English
* Fixed star laboratory crashed
* Fixed hero auto upgrade issues
* Fixed loot cart collection & obstacle removal when shovel is available
* Fixed Extended Attackbar Issues with 13 Slots
* Renamed debugImageSave and remove ability to choose jpg images
* Increased bot/emulator alignment offset
* Removed milking & townHall Sniping
* **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
* **V7.7.6**
* Added start, stop, pause, resume and photo buttons to bot thumbnail preview window
* Added Android adb.exe replace option under Bot/Android to solve adb.exe issues
* Fixed forum authentication
* Fixed queued troops (removed old and updated balloon and wall breaker)
* Fixed stuck situation when android emulator was restarted on builder base
* Fixed inconsistent adb state on error initializing adb connection
* Fixed rare "error launching ADB shell for minitouch" when mouse device not correctly identified
* Fixed pull/push of shared_prefs when bot profile name contains umlauts
* Fixed Clash of Clans crash right after launching the game by clearing cache when shared_prefs are available
* Fixed Unbreakable Mode not using standard CoC close function by @mitzu
* Fixed bot not account switching when all barracks upgrading by @Mika
* Updated Persian lang file by @MohamamdKhan
* **V7.7.5**
* April Update Fixed collect treasury
* April Update Fixed boost potion thx @mitzu
* Added new conditions "50%", "AQ", "BK", "GW" and "AQ+BK" to csv WAIT command
* see CSV HowTo Guide for usage
* Added possibility to check for donations every idle round
* Added boost option for siege workshop thx @mitzu
* Added Bot/Android "Additional Click Delay" general option to delay Android clicks (additional delay is now 10ms)
* Fixed pushing shared_prefs when profile contains spaces
* Fixed wall upgrade
* Fixed Nox v6.2.x nox_adb.exe crash by replacing it with MyBot.run.adb.dummy.exe
* Fixed Nox shared folder detection
* Fixed "Cannot replace [Android emulator] ADB with MyBot.run version" by kill adb process
* Fixed new shared_prefs zoomout causing CoC/Android restart loop when obstacle blocks tree
* Fixed CoC Google Connect popup with pushing shared_pref
* Fixed setting bot dpi aware when screen is scaled and Android using screencap
* Fixed shared_prefs zoomout not working when clan games results are available
* Improved forum authentication on internet or forum error retrying for 1 Minute
* Improved Abndroid "device offline" issues and added Bot/Android "Use dedicated ADB port" default is disabled
* Improved shared_prefs zoomout not centering home base
* Improved BlueStacks launch failure when registy screen settings is wrong
* Revert adb version to 28.0.1 (Aug 2018)
* **V7.7.4**
* April Update Fixed loot cart
* April Update Fixed building info positions
* April Update Fixed building icon positions
* April Update Fixed auto upgrade upgrade button position
* April Update Fixed Okay click
* April Update Fixed star bonus
* April Update Fixed wall upgrade
* April Update Fixed Builder Base Upgrade
* April Update Added auto upgrade wall exclude
* Fixed main screen detection
* Fixed zoomout / village measuring in rare cases
* Fixed siege not dropping in CSV attack
* Fixed zoom out mode setting not saved
* Fixed BlueStacks v4 not showing the alternative launcher like nova launcher when started
* Fixed shared folder sometimes not being initialized
* Fixed pull/push of shared_prefs when profile contain special characters
* Fixed KOPLAYER 2.0 additional instance support and screen resolution detection
* Fixed Rage detected as Skeleton spell
* Fixed train cost by @DUC4TI
* Fixed Nox v6.2.8 nox_adb.exe crash by replacing it with MyBot.run.adb.dummy.exe
* Improved shared folder detection
* Improved zoomout behavior when "Update shared_prefs" is enabled and selected in zoomout-mode to restart
* Improved Builder Base zoomout when Bot/Android "Update shared_prefs" is enabled
* Improved undocked Android Emulator windows to be grouped in taskbar
* Updated adb version to 28.0.2 (March 2019)
* Removed Rearm as it is not needed anymore (April 2019)
* **V7.7.3**
* Added Telegram notification when the lab is idle by @mitzu2250
* Added Google Play Services button under Bot/Android Play Store to manually install/update Google Play Services
* Added conditions "TH", "SIEGE" and "TH+SIEGE" to csv WAIT command, to break the wait early thx @Fahid.Mahmood for the inspiration
* see CSV HowTo Guide or Max-Human-Like TH12 LavaLoonion.csv for usage
* Added Bot/Android "Update shared_prefs" option to always push and pull shared_prefs to reset zoom, set language to English, disable snow and rate popup
* Fixed forum authentication crashing the bot with FileNotFoundException (as reported in Windows Event Log)
* Fixed forum authentication http error 500
* Fixed forum authentication interfering with watch dog
* Fixed forum authentication due to windows permissions, saving .mybot.run.authentication file now in @AppDataDir (existing will be moved)
* Fixed shared_prefs pull/push due to windows permissions, saving now in @AppDataDir\MyBot.run-Profiles (existing will be moved)
* Fixed CSV attack with 11+ slots in attackbar
* Fixed Telegram push for Smart Wait Time by @mitzu2250
* Fixed Clangames "Caravan is not available"
* Fixed minitouch click and click&drag for BlueStacks 4
* Fixed KOPLAYER "device offline" problem
* Fixed MEmu and BlueStacks CoC crashing when using home button or polite close
* Fixed Nox DirectX mode for versions 3.3.0 - 6.2.0 ("Unsupported Nox screen size of 864 x 36" or similar)
* Fixed Nox "Nox unsupported Graphics Engine Type" log message
* Fixed Nox shared folder detection and disabled VM is running check (as it might not work)
* Fixed missing shared folder by adding configuration to instance
* Fixed docked mode manual mouse double click (fixed also mouse device issues for MEmu and LeapDroid)
* Fixed LeapDroid and iTools version identification
* Fixed check obstables not restarting CoC due to recursion
* Improved running different Android Emulator by replacing emulator provided adb.exe with MyBot.run version
* **V7.7.2**
* Fixed forum authentication with non ansi characters like Hindi, Cyrillic or Asian
* Fixed incorrect share folder detection when permission denied ocurres
* Fixed removal of "Zone.Identifier" for files in lib\adb and lib\curl folders
* Fixed forum authentication running before check prerequisites
* **V7.7.1**
* Added MyBot.run Forum user authentication registration to bot fixing COPYCAT problems
* Added Android click mode (minitouch or WinAPI) to Bot/Android options, default is now minitouch as it's most stable
* Added REMAIN cmd in csv attack
* Added KOPLAYER 2.0.0 support
* Fixed "Troop ... is not available due to full queue"
* Fixed "Cannot find/verify 'Okay' Button in Army tab #2"
* Fixed minitouch port initialization
* Fixed attackbar troop count detection, when count is 200+
* Fixed minitouch group clicks deploy
* Fixed LeapDroid render mode detecion
* Fixed LeapDroid "device offline" problem
* Fixed SmartFarm debug errors
* Fixed hero sometime not dropped when CSV recalc not detecting hero anymore
* Fixed stopping ADB shell instance when bot stopped
* Fixed bot exeution when "Zone.Identifier" exist on exe or dll files
* Improved BB boat detection to return to home base
* Improved minitouch fixing tcp connection problems
* Improved manual clicks when bot stopped/paused and bot is docked
* Improved BlueStack/BlueStacks2 command line key to be used on any BlueStacks version
* Improved MEmu smartwait closing CoC preventing CoC unresponsiveness crash
* Improved Builder Base village measuring/zoomout
* Improved one star battle end to activate also Warden
* Improved Copycat warning
* **V7.7**
* Added Automatic Builder Base Troop Upgrades
* Added Wall detection in CSV attack, see BoWiHe v3.2 by @Zeck for details
* Added zoomout mode under Bot/Android/Android Options
* Added /minimizebot command line option to minimize bot after auto-start
* Added Grand Warden mode selection
* Fixed Grand Warden Boosting when 7 Buttons exist
* Fixed Auto Hero Upgrade Button not being found
* Fixed BS2/BS3/BS4 adb connection issues, use dedicated adb daemon on free tcp port per instance
* Fixed Cyrillic OCR
* Fixed Extended Attackbar Slot Detection
* Fixed infinite looping between home and builder base
* Fixed bot running in a folder with umlauts
* Fixed freeze in village search waiting for clouds to clear
* Fixed command line help (parameter /? or /help)
* Fixed help display when links used in bot
* Fixed page error on Battle End Screen
* Fixed array errors in multiple places when image search returned no result
* Fixed bot crash when using screencap with wrong coordinates
* Fixed bot running directly from UNC network path like \\mybot_pc\mybot_home\...
* Fixed Android "reset" (soft reboot) when Bot is paused during Android suspend
* Fixed Droid4X 0.10.7 support
* Fixed wall upgrade using elsewhere needed recources, when upgrading more than one wall
* Improved siege machine selection
* Improved TH12 detection
* Improved bot responsiveness during image processing
* Improved android zoomout
* Improved android accurate click&drag
* Improved bot first time detection
* Improved timed heroes activation to 3 digit number, e.g. 150 sec.
* Improved detection for SmartFarm and SmartZap
* Improved zoom-out error handling restarting android on multiple failures
* Improved measuring village & centering village
* Improved measuring builder base
* Improved Eagle lvl 2 weak base detection
* Improved frequent android restarts due to page error by resetting error counter when beginning to search villages
* Improved last raid notify text @MikeD
* Changed CoC launch to push shared_prefs only when account switching is enabled
* **V7.6.6**
* Added check & remove unwanted CC siege machine
* Fixed Custom Drop Order @ViperZ (December 2018 Update)
* Fixed "Wait for Siege Machine", when bot is in "Halt Attack"
* Fixed wait for CC Troops when CC Spells are not used and "Village/Req. & Donate/When lacking" options are not configured
* Fixed several small bugs from previous Version
* Fixed Rearm for Infernos and Xbows/Eagle
* Fixed weak base detection when TH not detected to assume then TH12
* Fixed exiting search due to zoom-out level, now it just measures village
* Fixed reading quantity of Bat Spell in Clan castle
* Fixed Heroes in AutoUpgrade
* Fixed RequestCC can not request, cause Army Overview moves slightly
* Fixed Haste donation
* Fixed Clock tower boost
* Fixed losing CoC Android shared_prefs when shared folder not available
* Fixed BlueStacks2 support for all versions (incl. 4)
* Fixed Smartfarm for Snow theme
* Fixed shared folder detection for all android emulators
* Fixed returning home from battle report
* Fixed heroes activation when getting weak
* Improved deadbase collector lvl 12 and lvl 13 (snow) and 50% detection
* Improved Eagle lvl 1-3 weak base detection, also re-check weak-base after 5 sec.
* Improved Laboratory, prefer units in current army composition
* Improved Giant Deployment in SmartFarm/Standard Attack
* **V7.6.5**
* Added Ice Golem Support @ViperZ
* Added Bat Spell Support @ViperZ
* Added Stone Slammer Support @ViperZ
* Fixed Snow Theme Detection (December 2018 Update)
* Fixed Request Clan Castle (December 2018 Update)
* Fixed Edit/Remove Army (December 2018 Update)
* Fixed Clan Games not opening due to snow (December 2018 Update)
* Fixed Switch Account (December 2018 Update)
* Fixed Laboratory (December 2018 Update)
* Fixed Collectors Level 13 Snow Theme (December 2018 Update)
* Fixed Laboratory Time Position Change, reported/fixed by Fahid.Mahmood (October 2018 Update)
* Fixed new elixir collector level 13 (October 2018 Update)
* Fixed new dark elixir drill level 7 (October 2018 Update)
* Fixed error "Cannot open Army Overview window" when "Wait for Clan Castle" enabled and Castle is not full, fixed by @Demen
* Fixed switch account never switch back to the account in personal break, fixed by @Demen
* Fixed clan chat did not open when donating CC, fixed by @Demen
* Fixed Nox 6.2.5.3 in DirectX rendering mode
* Improved clan games, new challenges added
* Improved the attack bar getting spells levels and quantities when exist heroes or not
* Improved Laboratory, updates selected troop to max possible
If no further upgrade possible, or "Any" selected, cheapest upgrade will be done next
1 Dark Elixir is worth 50 Elixir in comparism context
* Increased Android Launch Timout to 10 min
* **V7.6.4**
* October Update Fixed Drop Trophies , Now the slots are not selected by default
* October Update Fixed Heroes Recover timer when is boosted
* October Update Fixed values to Train Costs, WB, Baby Dragon , Golem , Bowler and Witch
* October Update Fixed values to Siege Build Costs
* October Update Fixed Siege Donate XP to 30
* Fixed Troop/Spell drop in CSV after hero activation
* Fixed Switch Account when wait hero
* Fixed Queued minion detection
* Fixed Spells Donation
* Fixed Hero Upgrade when boost potion present
* Fixed ReplayShare every 30 minutes , reported/fixed by @Fahid.Mahmood
* Fixed Hero Heal Time While Boosting , reported/fixed by @Fahid.Mahmood
* Improved Healer detection on attack bar
* Improved Laboratory White font number 9
* Added Drop trophy with balloon, wizard and minion at any troop slot
* **V7.6.3**
* Fixed Google Play account switch
* Fixed lab status display
* Added Donate only troops and spells in queue
* Added Double train siege machine when it is set to build only 1 type of siege machine
* Added Translating troop list in Request CC to other languages
* Improved multi-stats, improved SwitchAccount stats display for current account only
* Improved CC spell selection
* Improved check & remove unwanted CC spells
* Improved lab check, only check once every 6 hours
* Improved double train with less open & close army window
* **V7.6.2**
* Fixed Bluestacks 4.x and CoC PB message , different font and place.
* Fixed Siege Build when queued empty and camp is full, making a double sieges.
* Fixed Conflict with Balloons and siege on attack bar, reported by @Black-sTyle-Vii
* Fixed Donate only - Switch account and a second train army reported by @hrishikesh
* Fixed UI translate code reported by @Black-sTyle-Vii
* Fixed Group of 10 clicks issue, when android click is enabled + Adb Screencapture
* Fixed Deployed Sides [DS] at attack log when was csv attack
* Fixed Failed Switch to Clash Castle at attack bar because the delay, reported by @Pepito
* fixed Switch account and Heroes status , reseting hero status on account switch
* Added Clan Games new version with option to 60min events
* Added New method to get version from Github, using the github API.
* Added Enable/Disable 'Show touch' on emulator under Android TAB
* Added Check CC troops and remove unwanted
* Improved BlueStacks newest versions Undocked and Docked
* Improved Using Siege to attack deadbase while DropTrophy
* Improved Collect, added conditions for collect
* Improved Collect, optionally collect Loot Cart before Resources
* Improved Delay between remaining troops drop
* Improved COM obj errors detection to Telegram and change to InetRead
* Improved Remain Troops, less clicks, at Smart-Farm
* Improved Double Train with making donated troops for army 1
* Improved Donate CC - skip reading spell and siege when not needed
* Improved SC_id login on MEmu 2.5.0 and 2.8.6 , smaller buttons! reported @NguyenAnhHD
* Changed MyBot icons
* Removed 24 unnecessary ocr/bundle files
* Updated scripts Attacks to last version
* Updated German lang file by @Black-sTyle-Vii
* Updated Azerbaijani lang file by @Z E C K
* Updated Turkish lang file by @Z E C K
* **V7.6.1**
* Fixed Queen activation at scripted Attacks
* Fixed Train Sieges on Quick Train , by @ChacalGyn
* Fixed Train Sieges after donate all current sieges and camp is 0
* Improved MEmu/Nox OpenGL and DirectX Render detection for Win10 Build 17134
* Improved Heroes Upgrade, don't check a hero, which is already upgrading
* Improved Heroes Upgrade, reserve builders for upgrading
* Improved Wall Upgrade, allow upgrade by elixier, when Warden is already upgrading
* Removed the Scheduler Notify Tab
* **V7.6**
* Added New Logo/banner by @Hecki
* Added Double Train Army by @Demen
* Added Support for attack bar with more than 11 slots by @Demen
* Added Siege Machines at Train
* Added Siege Machines at Donation.
* Added Siege Machines at Clan Games.
* Added Siege Machines at Attack.
* Added Local DB [using SQLite] to collect more attack stats.
* Added Smart-Farm Attack to standard dead bases attack
* Added Boost using Magic Training Potion by @ViperZ
* Added Telegram - Shutdown , Hibernate and Standby with a confirm message, just to avoid user errors
* Added Telegram and invalid commands
* Added Profile button to save current setting without having to start bot
* Fixed Reset last command on Telegram
* Fixed UI Responsiveness when the telegram is checked
* Fixed Forced PBT for Normal Switch
* Fixed Some issues in switch from-to Builder base - Main Village, Get village measuring and zoomout
* Fixed Village Measuring and Zoomout problem when the emulator is to slow
* Fixed The Standby command on Telegram
* Fixed Queued Troops and Spells new bundle of images
* Improved Siege Switch and attack bar benchmarks, 'big' images had size reduction and screencaptures
* Improved Switch between Bases
* Improved Builder Base detection
* Improved Bot function sequences, your army is ready to attack then before any other routine will train and attack
* Improved Request CC, only "Wait for Castle" on Search Tab, settings are on Request Tab
* Improved Request CC, enforce Spells even without "Wait for Castle"
* Improved Donate CC, will not proceed with the routine if the words doesn't match , reducing times and logs , by @Demen
* Improved Clone Detection on Army window and Spells Log
* Removed PushBullet code because the limit of 100/month
* Updated Android Status & Information.txt
* **V7.5.4**
* Added Electro Dragon in to Clan Games
* Added Only request donation, when specific Clan Castle type is missing by @Demen
* Added Restart search to pick healed heroes up by @Demen
* Fixed Issue on waiting for heroes and exist Barbarian King upgrading
* Fixed When the Heroes are not prepared and log doesn't say nothing
* Fixed The url issue on Support Development label, reported by @Hecki
* Fixed Correct profile log when is switch account
* Fixed Train Skip counter issue, idle loop until reaching train time , fix by @Demen
* Fixed Rare situations when exist a double Castle Spells but with different levels by @Demen
* Fixed Tencent CoC Version in Infinite Start Loop , reported by @PoH98
* Fixed Embedded user clicks for Nox 6.2.0.0
* Fixed Remove clan castle spell slots - June 2018
* Fixed Donate window with 7 slots per row
* Fixed Correct path for ImageDetection, reported by @alepitta
* Fixed Hogs donation, reported by @dharyadi
* Fixed New coordinates for full army check - June 2018 Update
* Fixed Switch accounts and PBT + Disable accounts check
* Fixed Switch accounts + Halt Attack + Smart Switch issue, reported by @rbrt
* Fixed Rearm/Reload button problems when there are more then 7 buttons, reported by @HarchH
* Fixed Lab Debug Icon Save
* Fixed Lab icon coordinates
* Fixed Lab resource OCR
* Fixed Lab "Max Level" detection
* Fixed Lab "Lab Upgrade Required" detection
* Fixed Wall upgrade resource check
* Fixed Wall upgrade priority check
* Fixed Hero upgrade priority check
* Fixed Lab add sieges
* Fixed Lab "Not Unlocked" detection
* Fixed Lab not unlocked treated as read error
* Fixed Lab 2nd page click drag
* Fixed Lab window random coordinates
* Fixed Lab OCR won't read again (wrong flag) after read error
* Fixed Lab apply read flag wrongly on "lab upgrade required" and "not unlocked"
* Fixed Lab OCR read flag won't reset when bot starts, except bot shut down completely
* Fixed Lab OCR white 3 5 6 8, thx ProMac
* Fixed Building upgrade repeat checks Array error for TH12
* Fixed Building upgrade Error finding button for TH12
* Fixed Android hold back ADB click causing infinite Android reboots because clicks never released
* Improved Test click drag
* Improved The Lab check , reported by @Demen
* Updated Chinese Simplified Translations by @PoH98
* Updated Android information file
* **V7.5.3**
* Fixed Miner XP Value , reported by @Spartan
* Fixed Wizard detection on attack bar reported by @liam0603
* Fixed Smartwait4Train when Barracks are boosted , reported by @sleepnmojo
* Fixed Attack Now buttons and New status icons issue , reported by @vLab97
* Fixed Boost button detection on Heroes , reported by @Mantaka
* Fixed Rearm on TH12 when exist 7 button , reported by @HArchH
* Fixed Input Train digit limits to Minions and Electro Dragon , reported by @jwodonto
* Fixed Laboratory Troops and Spells Upgrades - June 2018
* Improved the setlog on Prerequisites
* Improved the Check Laboratory status
* Updated Russian Translations by @VLab97
* **V7.5.2**
* Added Electro Dragon Support
* Added TH12 Images
* Added Clan Castle Selection on Attack (Siege Machine not supported yet)
* Added Capacity OCR for Siege on Donations (Siege Machine donating not supported yet)
* Added TH12 CSV settings support. Refer "Barch four fingers.csv" for sample commands
* Added Verification the display resolution and taskbar on Prerequisites
* Added TH12 Giga Tesla upgrade support (both auto and manual)
* Added Attack Now Button (Useful for CSV Testing) in Debug mode
* Added Heroes and Laboratory status to bot UI
* Fixed Remaining time for CC request - June Update
* Fixed Donations - June Update
* Fixed Attack Bar - June Update
* Fixed Train Tabs - June Update
* Fixed Remain Train Time - June Update
* Fixed Request Clan Castle Troops - June Update
* Fixed Freeze Spell Attack/Train/Donate - June Update
* Fixed Spells CC on Army Window - June Update
* Fixed SuperCell ID Login main page- June Update
* Fixed Buildings Upgrade - June Update
* Updated Troop/Spell/Hero Values - June Update
* Updated Wall Values - June Update
* **V7.5.1**
* Fixed Switch account on SC_ID log out Button
* Fixed Personal Break time stuck on reload button
* Fixed Personal Break time not forcing to switch to another account
* Fixed Bluestacks v3 undocked and request troops
* Fixed Wizard detection on attack bar
* Fixed Treasury Window check for CoC v10.134.11 (9th april 2018)
* Improve Switch Account check for donation only accounts + PBT account = All account, goes to a none PBT village.
* Improve collect free magic items and 'No Space in Clan Castle'
* Improve Clan Games and Quick Train for Troops Challenges
* Update Russian Language File (by @Vlab97)
* **V7.5**
* Add Clan Games support (special thx go to ViperZ and Uncle Xbenk)
* Add Collect Free Magic Items
* Add support for SuperCell ID accounts switch
* Fix DonateCC "Unable to read Chat Request" in both Chinese languages and Korean language
* Fix "Log in with Supercell ID" screen (push CoC shared_prefs folder if detected, click by account list when shared_prefs is not available and switch accounts enabled)
* Fix rare "ADB Prompt not identified!" issue
* Fix multiple sharef_prefs folders problem and push not working on newer ADB versions
* Fix permission and owner when pushing sharef_prefs folder
* Fix waiting in the cloud not found Clan button
* Fix check treasury when button is smaller than usual due to Clan Games
* Fix never returning from battle when CoC hanging in network re-connecting state with "End Battle" button
* Fix ADB connection error when rebooting Android on error
* Fix ADB connection error when Android is not properly working
* Fix shared_prefs push for Android Nougat
* Fix bot config.ini reset when no space left in profile path (100 MB required free disk space)
* Fix auto upgrade on main base not stopping on first upgrade without enough resources
* Fix auto upgrade new buildings on Builder Island
* Fix brew Spells unconditionally, When the troops queue was empty, create the spells without checking if they were already in the queue.
* **V7.4.4**
* Add AutoIt 3.3.14.3 support (though not advided to use, as still not all problems are resolved!)
* Add CoC shared_prefs folder support to Switch Accounts supporting also SuperCell ID accounts (saved in current users documents folder in MyBot.run-Profiles)
* Add allows account switching in the order: Donate - Shortest Active - Donate.....
* Add Automatically change the EN language when the language is wrong
* Add Not wait for Heroes when upgrade detected
* Fix DonateCC find donation button when opening donation window
* Fix Array-Error in weak-base routine
* Fix the stats for Dark Elixir using the previous account
* Fix no "External Edges" option for some languages
* Fix donate stats negative values on stats reset
* Fix unnecessary restart of CoC
* Fix ADB communication when Android is unrooted
* Fix Trouble finding research button
* Fix bot crash at launch when profile already in use
* Fix obstacles check not closing Google Play Games Accounts List
* Fix zoom-out issues and bot not working when special umlauts exist in installation path
* Fix BlueStacks not connecting ADB when ADB daemon not running before BlueStacks launch
* Improve Debug Button - Test Click Drag with user coor input, image save
* Improve Log file handling and create new log file only if none had been created in this and prior hour
* Update Arabic Language File (by @awssaad)
* Update Russian Language File (by @Vlab97)
* **V7.4.3**
* Add MEmu 5 support
* Fix DonateCC find donation button and not detecting opening window sometimes
* Fix Android System Personal Break not detected in BlueStacks 0.x (and other Androids)
* Improve Android Instance handling supporting case insensitive instance names and listing available instances when specified not found
* **V7.4.2**
* Fix BlueStacks2 reboot loop due to DPI=160 not correctly set in registry
* Fix "No upgrade here... Wrong click.." auto upgrade error
* **V7.4.1**
* Fix BlueStacks reboot loop due to DPI=160 not correctly set in registry
* **V7.4**
* Add Switch Accounts feature
* Add BlueStacks N support, still using Android Emulator Key BlueStacks2 (https://www.bluestacks.com/download-android-n.html)
* Add apply button for CSV settings parsing. Refer "Barch four fingers.csv" for sample commands
* Fix Google Account selection at CoC start breaking bot operation by always selecting first account
* Fix MEmu 2.5/2.6 clicks opening/closing toolbar
* Fix MEmu & Nox DirectX Background Mode not working on Windows Build 16299 - Fall Creators Update (also OpenGL must be selected in Android to actually use DirectX)
* Fix BlueStacks DPI 160 when missing in bootparameters
* Fix BlueStacks 3.50 and newer mouse off when running un-docked
* Fix Bot crash when army contains a special event troop
* Fix sometimes ignore donate
* Fix Building OCR not reading 46 properly
* Fix Boost Button not found when boosting
* Fix Error "Selected Upgrade Window Opening Error, try again" by increasing wait time for window
* Fix Page error count increased and stuck on train tabs when Barracks/Spell Factory are already boosted
* Fix switching between Mini and Normal GUI showing Copycat warning or corrupting configuration or GUI
* Fix Add Profile not saving current before swicthing to new (thanks to @mhk2012)
* Fix double launching CoC on Android system messages
* Fix Log GUI refresh issues in Debug Messages mode
* Fix Watchdog re-launching bots that cannot run (profile or Android already in use)
* Fix Microsoft .Net Framework 4.5 is not installed check
* Improve reloading instead of restarting CoC to avoid new CoC load wait after Dec. Update
* Improve Wall Upgrade, upgrade adjacent walls first, continous upgrade and autoswitch to next level
* Improve SmartZap, reducing idle times
* Improve Eagle Lvl 2 and Gembox tiles
* Improve Clear Tombstones
* **V7.3.5**
* Fix request troop button not found * Dec Update
* Fix OCR for remaining clancastle request * Dec Update
* Fix OCR for remaining Laboratory * Dec Update
* Fix cannot find edit/okay button on army overview * Dec Update
* Fix snow theme detection * Dec Update
* Fix Boost Barracks/Spell Factory * Dec Update
* Fix Weakbase conditionals with Air Defenses Level
* Fix wait for spells ready not working
* Fix lavahound donation
* Fix Nox Shared Folder path to > v5.2.0
* Fix some issues on Attack report Loot
* Fix TH level 6 filter conditional not working
* Fix making wrong donated spells
* Improve ReadTroopQuantity function (from DocOC Team)
* Improve troop training log messages
* Improve wait for clouds pixel check for Imgloc image detection
* Update levels and costs for troops/heroes * Dec Update
* Update Italian language (by @quisazadrah)
* **V7.3.4**
* Fix redline detection freezing bot when computer doesn't have enough "free" CPUs
* Fix image processing time for Train Window, SmartZap and ReArm
* Fix King not activating when Warden was activated
* **V7.3.3**
* Add MEmu 3.6.7.0 DirectX+ support
* Add Drop Order Troops
* Fix ignoring collect DE drill
* Fix Train Window identify Clan Castle Spells
* Fix Battle exit "when percentage doesn't change" not working (did exit when damage is above percentage, thanks to @mhk2012)
* Fix "Image Threads for this bot" setting using always "Image Threads for all bots" setting
* Fix Treasury not honoring minimum collect values (thanks to @mhk2012)
* Fix Android initialization variables introduced in prior release causing Android ADB Port error and general bot failure
* Fix Nox OpenGL mode
* Fix a bug not find the ReplayShare button
* Improve thread handlng to better balance concurrent thread usage when multiple bots run
* Update Italian language (by @quisazadrah)
* **V7.3.2**
* Add BlueStacks 3.50.x support
* Add Nox 6.0.0 support
* Add Quick Train Combo System
* Add Unlimited Boost Option
* Add Android option to close Android when bot exists
* Add Android Lollipop support tested with Nox 6.0.0 and MEmu 3.6.2, support system messages are out of sync, other device connected, rate CoC and general error
* Add more options for Custom Donate
* Add notify Start button
* Fix army not yet ready when wait for CC Spell is used in disable search type and not used in enabled search type
* Fix Bot not removing wrong Spells when Custom Spell Brew Order is enabled (thanks to @Sjakie1987 for helping)
* Fix SmartWait4Train waiting for normal hero recovery when hero is boosted
* Fix Auto Upgrade not honoring the reserved builder for walls
* Fix Auto Upgrade not upgrading lower levels
* Fix Builder Base Auto Upgrade stop checking further upgrades when not enough resources
* Fix Builder Base Auto Upgrade not upgrading Battle Machine
* Fix bot z-order change when not docked and Android Window should stay in front of bot
* Fix update stats when switching bot from mini to normal GUI mode
* Fix Android Window positioning and force Android Window always on top when background mode disabled
* Fix ADB path favoring current Android Emulator, save path in profile.ini and allow to rename/delete Android ADB.EXE to improve multi-bot environments of different vendors
* Fix missing icon and version info on compiled bot files
* Add Builder Base rebuild Battle Machine support
* Add /HideAndroid command line option to hide Android automatically when bot auto-starts
* Add Android Emulator, Instance and Device information to ADB Shell Console Window
* Update Vietnamese language
* **V7.3.1**
* Split Hero Ability Activation Methods for each Hero and add new Option
* Fix missing Valkyrie level 6
* Fix Custom Donate not working properly
* Fix logs not refresh after switching from Mini to Normal GUI Mode
* Fix Android Window hide/show and manual re-positioning
* Fix Builder Base having Problems zooming out sometimes
* Fix loading auto upgrade min resource configuration when using /mg command line options
* Fix enabled GUI Controls when switching from mini to normal mode in waiting run mode
* Improve CC Spell drop when same type exists in Army (CSV RECALC not required anymore)
* Improve hero upgrade detection
* Improve bot rebooting Android when Gfx Errors (missing objects) detected
* Improve window position of bot and Android window for new profile
* Add /console option to show console window with raw logs
* Update Italian Language File by @quisazadrah
* **V7.3**
* Add Auto Update for Normal and Builder Base and Builder Base Stats (thx to DocOC team and ViperZ)
* Add MEmu 3.5.0.2 DirectX support
* Add Clash Of Magic support, https://www.clashofmagic.net/
Server 3: http://download825.mediafireuserdownload.com/g29mv74piaqg/jeab7w484b77n86/Magic-CoC_S3-9.105-R1.apk
http://www.tomzpot.com/android-games/clash-of-magic-9-105-10-private-server-september-2017/
* Add Mini GUI mode to run/launch more than 10 bots (can be also enabled with command line option /minigui or /mg)
New title bar icon to switch between normal and mini GUI mode
* Add automatic Android reboot after configured run-time hours (default is 24) to prevent severy Android issues like memory leak, graphics error etc.
* Add /? command line option to show help on additonal command line paramter and options
* Fix wall upgrade not saving resources for enabled non-repeated building upgrades when a builder is available
* Fix Wait For Clan Castle Spell not getting detected sometimes
* Fix Log Messages when Heroes are not enabled to auto Upgrade
* Fix Balloon Donation Issues
* Fix Wall Upgrade Ignoring Auto Warden Upgrade when checking if enough Elixir is available
* Fix Several Bugs and outdated values by @NguyenAnhHD
* Fix Clone Spell not getting brewed before going to Attack by @ViperZ
* Improve Weak Base Eagle Lvl 2 Detection
* Improve Dead Base Collector Lvl 11 Detection
* Improve village measuring with secondary images to fix zoom out loop when village cannot be measured
* Improve remaing attack time calculation
* Improve bot launch time when no Android Emulator command line parameter was specified
* Improve Android reboot on time lag after 2 detections
* Improve watchdog process restarting unresponsive bots after 3 Minutes (was 2 Minutes) and Bot API window communication
* Improve ADB Click&Drag for input drag mode (when not accurate Click&Drag script is used)
* Update ProfileReport Code & OCR
* Show bot window when Android Window activated (both ways)
* Bot start/stop/pause and resume added to tray menu
* New MyBot.run.MiniGui "reference app for modders/devs" controlling bot backend process using Window Messages
* **V7.2.5**
* Add Inferno Lvl 5 to Weak Base Images/GUI settings, add Lvl 4 tile and lowered tolerance
* Lower Eagle Lvl 1 tolerance for better Weak Base detection
* Fix Weak Base
* Fix Wait for Heroes Queen and Warden
* Fix train Balloon
* Fix upgrades possible when bot is paused
* Fix rare redline variable not declared error
* Update Arabic Language By @awssaad
* **V7.2.4**
* Add Bot / Android Option to select preferred Android Background Mode
* Add BlueStacks2/3 and iTools support for ADB screencap Background Mode
* Add KOPLAYER and Nox WinAPI/DirectX support for Background Mode
* Add Nox Dock Mode support
* Add Ability to Disable Bot Notifications suggested By HarchH
* Fix Bad Pixel Check in Training when Bot runs while Troops change
* Fix closing WerFault Message
* Fix Share Replay Function
* Fix SmartWait for Heroes
* Update DropTrophy Drop Location to drop Troops/Heroes further into the grass
* Update Azerbaijan and Turkish Language By Z E C K
* Update Vietnamese Language by NguyenAnhHD
* **V7.2.3**
* Fix Main Screen Locating & Troop Training for August 4th Update
* Add activate Clock Tower Boost when available w/o condictions
* Add BlueStacks 3 multi-instance support (bot command line parameter is still BlueStacks2!)
* Add additional Android options under Bot/Android to launch a ADB shell or install apps from Play Store
* Add support for CoC distributor Tencent
* Fix Clock Tower Detection & Activation
* Fix Heroes not boosting
* Fix Builder base not collecting all resources
* Fix Bot Crash when Wait for CC is enabled with duplicate Spells in CC
* Fix switching between Builder Base and Normal Village
* Fix Bot crash when computer run cycle reaches 48.7 days
* Fix bot crash when initiate attacks using external edge in most languages except BahasaIND, French, Italian,
Spanish
* Fix CSV row number error
* Fix failed to find/press retry search button when every 30 minutes in cloud
* Fix Retry search button pushed in cloud, search not continued but waiting for CoC restart issue
* Fix Korean OCR for donation
* Fix 0 Second Random Train Delay Issue by sleepnmojo
* Improve MEmu 3.x screen resize
* Improve BlueStacks DPI setting to 160 DPI
* Update Azerbaijan and Turkish Language By Z E C K
* Update Arabic Language By awssaad
* Update Vietnamese Language by NguyenAnhHD
* Update German Language
* **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
* **V7.2.1**
* Add Builder Base collect resources and activate Clock Tower
* Add Bot Android Option "Use script for accurate Click & Drag", unchecking can solve swipe issues
* Improve reliability of detecting if window is open to builder base and not main base