What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

HBrelogger question

Kennethchr1986

New Member
Joined
Aug 31, 2016
Messages
20
Reaction score
0
Hello fellow botters

I was wondering is there is a way to make a schedule for your bots. I want bot X to run X hours then shut down for X hours and then start again.

Can HBrelog do this, or is there any plugin or the sorts that will do this for me?
 
yes, just open HBrelog and go to edit > tasks. its very easy to set up
 
yes, just open HBrelog and go to edit > tasks. its very easy to set up

So if i do like:

Logon (set all login info what bot and profile to use -> wait x mins (it will then run the profile for this long) -> Idle x mins (logs out of the gane) -> Logon

Will that be how to do it? I have been searching for guides, but cant find any. And i really eager to learn :)
 
You can do all that on HBrelog but I dont think you can do anything with system restarts
 
I have a simple batch script that runs on startup.
It will set a timer for restart in 24 hours, wait 7 hours, start HBRelog, which will start my botting schedule and continue untill restarted. Rinse and repeat, "emulating" 7 hours of sleep :)
 
I have a simple batch script that runs on startup.
It will set a timer for restart in 24 hours, wait 7 hours, start HBRelog, which will start my botting schedule and continue untill restarted. Rinse and repeat, "emulating" 7 hours of sleep :)
Whats the code for this?
 
I get off from work in 15 minutes, will post in about an hour or more
 
Code:
@echo off

timeout /t 30

shutdown -r -t 86360

timeout /t 25200

rmdir /S /Q "C:\HB\HB1\Cache"
rmdir /S /Q "C:\HB\HB1\CompiledAssemblies"
rmdir /S /Q "C:\HB\HB1\Logs"
rmdir /S /Q "C:\HB\HBRelog\Logs"
rmdir /S /Q "C:\Program Files (x86)\World of Warcraft\Cache"
rmdir /S /Q "C:\Users\USERNAME\AppData\Local\Bossland"
rmdir /S /Q "C:\Users\USERNAME\AppData\Local\Blizzard Entertainment"
rmdir /S /Q "C:\Users\USERNAME\AppData\Local\Battle.net"

timeout /t 30

start /min "" "C:\HB\HBRelog\HBRelog.exe"

It's quite simple really.
 
Back
Top