Posts: 21
Threads: 1
Joined: Jan 2015
Reputation:
10
I've made a few edits myself already increasing deployment speed, decreasing kings power activation and increasing return home time. I'm trying to find the file and code to keep the bot constantly training and thus, constantly donating, currently there's a 1 minute delay between training. Any know where I can find this?
Posts: 92
Threads: 3
Joined: Dec 2014
02-19-2015, 10:55 AM
(This post was last modified: 02-19-2015, 10:59 AM by promac.)
In COC bot.au3
Do you have severals _Sleep , reduce the number and you can do it
_Sleep(milliseconds) is the delay between functions
1 second = 1000 milliseconds
search :
While $fullArmy = False
If $CommandStop = -1 Then SetLog("~~~Waiting for full army~~~", $COLOR_PURPLE)
Local $hTimer = TimerInit()
If _Sleep(30000) Then ExitLoop
Posts: 92
Threads: 3
Joined: Dec 2014
root \COC bot.au3 , not in COCBot\functions\Other\_Sleep.au3
Posts: 92
Threads: 3
Joined: Dec 2014
02-19-2015, 11:42 AM
(This post was last modified: 02-19-2015, 11:43 AM by promac.)
welcome