Farm looking for Th outside OR dead base - Printable Version +- The Bytecode Club - Reverse Engineering Forum (https://the.bytecode.club) +-- Forum: Lobby (https://the.bytecode.club/forumdisplay.php?fid=1) +--- Forum: Game Cheating, Botting & Reverse Engineering (https://the.bytecode.club/forumdisplay.php?fid=97) +--- Thread: Farm looking for Th outside OR dead base (/showthread.php?tid=966) Pages:
1
2
|
RE: Farm looking for Th outside OR dead base - n0tm3 - 02-25-2015 Ok lets compile all the codes into one. This will work if you check the search for dead base function. First your bot will find a base that meets your resources preference, then will check if the base is a dead base or has its town hall located outside or has a town hall level 7 and below. If any of this 3 condition is true, it will attack that base. just add this under the dead base if clause Code: ElseIf $searchTH <= 6 Then RE: Farm looking for Th outside OR dead base - promac - 02-25-2015 TH10 in champions league, searching for a deadbase <= 9 then Outside , can be too long the search and spend alot of gold .... RE: Farm looking for Th outside OR dead base - miguelito88 - 02-25-2015 thanks notme really appreciate it, im gonna try it tonight! Promac, its intended to be used in crystal up, best leagues to farm with th10, and its just searching for a dead base, OR a outside th, Or a low th, cant be too long to find just one of these, and thats the point RE: Farm looking for Th outside OR dead base - n0tm3 - 02-25-2015 you are very much welcome. :D RE: Farm looking for Th outside OR dead base - k3iroll - 02-25-2015 I've tried the codes. TH detection is still buggy with the latest version. The issue is when the bot cannot detect TH, but the loot is meeting the requirement. Then the bot will attack as it consider that particular case as weak base. RE: Farm looking for Th outside OR dead base - rh4e - 02-25-2015 I'm just wondering....if the bot cannot detect TH, is it possible to tell the bot to skip that base? In that way we'll be solving the issue k3iroll has found. I've noticed that the bot sometimes says TH outside or TH inside...However sometimes it just says "..." and I guess that "..." means the bot has been unable to detect TH. RE: Farm looking for Th outside OR dead base - n0tm3 - 02-26-2015 hmmm.. maybe they can add another else if somewhere in the search codes like if the checkTownhall() returns "-" , the bot will click next? I am not sure about this code, but maybe something like this Code: ElseIf checkTownhall() = "-" Then tried the code above, it didn't work. I'm about to try this code next. Still going to put this in the villageSearch under the deadbase if clause. Code: ElseIf $searchTH = "-" And $THLoc = "-" Then RE: Farm looking for Th outside OR dead base - flip003 - 03-04-2015 try this ? Code: ElseIf $iradAttackMode = 0 or $THLoc = "Outside" Then |