rozerga   02-24-2015, 08:09 AM
#1
Hi. Newbie here Smile ,
I just want to modify barb to balloons and giant to dragons in donating, but i don't know what DonatePixel(DonateCC.au3) for loons and drags. I try to put 396 for gobs and it works, but when i put 657 for loons, the log says "No troops available for donation, donating later..." Please Help Smile
Code:
If _ColorCheck(_GetPixelColor(657, $DonatePixel[1] - 5), Hex(0x507C00, 6), 10) Or _ColorCheck(_GetPixelColor(657, $DonatePixel[1] - 10), Hex(0x507C00, 6), 10) Then
SetLog("Donating Balloons", $COLOR_BLUE)
If _Sleep(500) Then Return
Click(657, $DonatePixel[1] - 5, 5, 50)
$Donate = True
$CurBarb += 5
ElseIf $ichkDonateAllArchers = 1 Then
Sorry for poor English Smile
Thanks for responds
promac   02-24-2015, 10:49 AM
#2
Code:
Func DonateBarbs()
If $ichkDonateBarbarians = 1 Or $ichkDonateAllBarbarians = 1 Then
Click($DonatePixel[0], $DonatePixel[1] + 11)
If _Sleep(1000) Then Return
_CaptureRegion(0, 0, 725, $DonatePixel[1] + 50)
If _ColorCheck(_GetPixelColor(720, $DonatePixel[1] - 5), Hex(0x507C00, 6), 10) Or _ColorCheck(_GetPixelColor(720, $DonatePixel[1] - 10), Hex(0x507C00, 6), 10) Then
SetLog("Donating Wizards", $COLOR_BLUE)
If _Sleep(500) Then Return
Click(720, $DonatePixel[1] - 5, 5, 50)

_CaptureRegion .... 725 .... then after Getpixel is 720

In our case :

Code:
Func DonateBarbs()
If $ichkDonateBarbarians = 1 Or $ichkDonateAllBarbarians = 1 Then
Click($DonatePixel[0], $DonatePixel[1] + 11)
If _Sleep(1000) Then Return
_CaptureRegion(0, 0, 660, $DonatePixel[1] + 50)
If _ColorCheck(_GetPixelColor(657, $DonatePixel[1] - 5), Hex(0x507C00, 6), 10) Or _ColorCheck(_GetPixelColor(657, $DonatePixel[1] - 10), Hex(0x507C00, 6), 10) Then
SetLog("Donating Balons", $COLOR_BLUE)
If _Sleep(500) Then Return
Click(657, $DonatePixel[1] - 5, 5, 50)
rozerga   02-24-2015, 11:59 AM
#3
Thanks sir promac Smile it works with CaptureRegion 660 and GetPixelColor 657 for loons. Smile
but how about for drag and how you figure out the CaptureRegion needs to be 660? Smile
TREV71   02-24-2015, 11:33 PM
#4
After the new update it seems the bot dont donate giants. the log says "No troops available for donation, donating later..." What do i need to edit for giants?
promac   02-25-2015, 06:18 AM
#5
  
Users browsing this thread: 1 Guest(s)
Konloch Software - Bytecode Viewer - Reverse Engineering Forum
Copyright © 2014-2025 The Bytecode Club. Powered By MyBB.
CC0 Unless Specified Otherwise.