(02-16-2015, 07:48 PM)SongHyeKyo Wrote: All of your suggestion is already in 5.5.1.1 version
(02-16-2015, 08:00 PM)usabug Wrote:(02-16-2015, 07:48 PM)SongHyeKyo Wrote: All of your suggestion is already in 5.5.1.1 version
Dear Mrs. SongHyeKyo ,
I do use the Bot Ver: 5.5.1.1 but there is no possibility to configure all my suggestions .
For example :
There is a check box for AQ/BK to deploy them in Dead Bases or All bases . If we dont need to deploy them in dead base we cannot check any of the boxes . Also the CC there is no option NOT to be deployed in Dead Bases .
Regarding the ability of AQ/BK there is no option for custom time . We have to configure it manually by editing the relevant file .
(02-16-2015, 08:05 PM)SongHyeKyo Wrote: In attack setting ..
Royals and clan castle setting
there is a option that you can or not attack your cc / bk / aq.
(02-16-2015, 08:12 PM)usabug Wrote: Dear Mrs. SongHyeKyo ,
Yes in " Attack Settings .. " There are options for my cc / bk /aq .
But there in NO option which i can select not to use my cc / bk / aq in dead bases but can be used in all other bases .
For example .
I want to search for bases with gold and elixir more than 100k .
If the base is dead then use only my Barrack troops , If the base is not dead then use all my troops , my heroes nad my CC.
I can not configure this in this version .
(02-16-2015, 08:13 PM)MrGioba Wrote: I've understood your problem. I'm not able to use autoit so i won't build a version but i'm pretty sure you can change manually the option.
So,
1) Open ..\COC-Bot-5.5.1.1\COCBot and look for Global Variables.au3
Now go on line 93 and here you are. Modify 6000 to what u want.
Case 2 ;All Base
If $KingSlot <> -1 And $KingAttack[2] = 1 Then
SetLog("Dropping King", $COLOR_BLUE)
Click(68 + (72 * $KingSlot), 595) ;Select King
If _Sleep(500) Then Return
Click($x, $y)
$checkKPower = True
EndIf
Case 2 ;All Base
If checkDeadBase() Then
{
SetLog("Dead base. NOT dropping King", $COLOR_BLUE)
}
Else
{
If $KingSlot <> -1 And $KingAttack[2] = 1 Then
SetLog("Dropping King", $COLOR_BLUE)
Click(68 + (72 * $KingSlot), 595) ;Select King
If _Sleep(500) Then Return
Click($x, $y)
$checkKPower = True
}
EndIf