02-25-2015, 04:28 PM
lol,
as far I can see no major change has been made to attackTH module, or checktownhall function in V5.6.
It shouldn't be acting any better or worse than before.
The program basically on asks:
So if the TH is within those pixel locations on the screen, it calls it inside, and if its outside of them it call its outside. There is absolutely ZERO checking to see what is located around the TH, only that it is near an edge.
as far I can see no major change has been made to attackTH module, or checktownhall function in V5.6.
It shouldn't be acting any better or worse than before.
The program basically on asks:
Code:
If $THx > 227 And $THx < 627 And $THy > 151 And $THy < 419 And $searchTH <> "-" Then
$THLoc = "Inside"
Elseif $searchTH <> "-" Then
$THLoc = "Outside"
Else
$THLoc = $searchTH
$THx = 0
$THy = 0
EndIf