The Bytecode Club

Full Version: BUG: 5.3.1: Bot hang/ blank windows
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8
where do i add the code? like which part of the script
Might be completely unrelated or placebo, but today my bot for once did not freeze overnight. The only noticeable difference that I can recall of this trial of running the bot was that I did not use a gem boost for the barracks. Has anyone who has encountered this error only have it happen when barracks were boosted?
Hello, I haven't been updating lately because I've been busy with school. Anyways, I've though of this but I had no idea how I would do it and it seems that the method you guys came up with works! Also I will be editing the DLL that will help with security and work with background mode later Smile
By the way, just notice that the first cycle of the bot going for attack, the cpu consumption is low 5-25%, when it done with attack and back to base, the cpu consumption goes to around 40-50% and stay constant at that level.. Something that can look into too...
(01-07-2015, 07:17 PM)AtoZ Wrote: [ -> ]@dinobot
Like these?
Restarter Bot
Code:
#RequireAdmin
#include <MsgBoxConstants.au3>

Global $Title="COC Bot Pre-Alpha v5.4"
Global $BotFile=@ScriptDir&"\COC Bot v5.4.exe"

WinKill($Title)
Sleep(2000)
ShellExecute($BotFile)
WinWaitActive($Title,"",10)
WinActivate($Title)
Sleep(3500)
ControlFocus($Title,"Start", "[CLASS:Button; INSTANCE:2]")
ControlClick($Title,"Start", "[CLASS:Button; INSTANCE:2]")
Sleep(500)
WinMove("COC Bot Pre-Alpha v5.3","",900,100)
Sleep(500)
ControlFocus($Title,"Ok", "[CLASS:Button; INSTANCE:1]")
ControlClick($Title,"Ok", "[CLASS:Button; INSTANCE:1]")

Function in apha bot
Code:
Func RestartBot()
  Local $BotTitle=""
  Local $BotFile= @ScriptDir&"\COC BOT v5 Restarter.au3" ;put filename here
     SetLog("RestartBOT: BOT RESTARTING NOW..")
 ShellExecute($BotFile)
 Sleep(1000)
 ControlFocus($BotTitle,"Ok", "[CLASS:Button; INSTANCE:1]")
 ControlClick($BotTitle,"Ok", "[CLASS:Button; INSTANCE:1]")
EndFunc
where i have to put these 2 codes exactly?
or,give us the edited bot so we can test it,thank you
i think part of the problems can be solved, if somehow we can access Developer Options in bluestacks and disable "Keep-Activies" so this way, when the bot restarts the game and press home button, it will kill CoC app and will start fresh.
Unfortunately the latest version of BS doesn't have developer option..
Anyway, if we are able to resolve the memory leak.. The hang wouldn't have occur..
Outside.. Will do it when home.. Anyway restarter is fun.. Lol.. I restart after every attack... Hahaha
Pages: 1 2 3 4 5 6 7 8