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

Make your own .bat files to make updating quicker.

nooblet

Active Member
Joined
May 4, 2012
Messages
1,420
Reaction score
12
Hi there just wanted to share a couple .bat files I use on a daily basis to keep HB running smooth.

To make a .bat file just open notepad and copy paste the code below into notepad. When it comes time to save it put " around the file name. eg. "Cache clear.bat" Then save it.

First one is a simple one that clears wow cache and the HB cache. Make sure you change the directory to the one you use.

rmdir /s /q "E:\Buddy Products\Honorbuddy\Cache"
rmdir /s /q "E:\World of Warcraft\Cache"
rmdir /s /q "E:\World of Warcraft\Data\Cache"

This one has all my svn files in it. Once again make sure you use your own file locations for the svn locations. You can add as many as you like.

@echo offFOR %%A IN (
"D:\Buddy Products\Honorbuddy\aa - Downloaded Stuff\Endless Farming Profiles"
"D:\Buddy Products\Honorbuddy\aa - Downloaded Stuff\Profs\Cooking"


//Auction House
"D:\Buddy Products\Honorbuddy\aa - Downloaded Stuff\AHBuddy"
//TuanAH CR's
"D:\Buddy Products\Honorbuddy\Routines\TuanHADeathKnightWoD"
"D:\Buddy Products\Honorbuddy\Routines\TuanHADruidWoD"


//Garrison


//Bot Bases
"D:\Buddy Products\Honorbuddy\Bots\Simcraft"
"D:\Buddy Products\Honorbuddy\Bots\Autoangler2"


//Pet Battle
"D:\Buddy Products\Honorbuddy\Bots\Prosto_Pets Battle Pets Botbase - BETA!"
) DO START TortoiseProc.exe /command:update /path:%%A /closeonend:0
 
Last edited:
Hi,

Thanks for sharing this.
Could you explain what the command do in your example ?

" %%A IN ( ) DO START TortoiseProc.exe /command:update /path:%%A /closeonend:0" ??

Kind regards,
 
Appreciated! But, for the not-so-knowing amongst us, your text file starts with:

@echo offFOR %%A IN (

This of course needs to be:

@echo off
FOR %%A IN (

Windows interprets the commands as "@echo" and "offFOR" so that does not work obviously.
 
Last edited:
Still works for me. Might be a little outdated but I use this everyday.
 
But does this require that you have SVN enabled on the folders you want to update?

EDIT: And for us with slow internets it might not be the best idea to remove Mesh folder each day :)
 
EDIT: And for us with slow internets it might not be the best idea to remove Mesh folder each day :)

This!

@Nooblet:
Please, without placing understandable-to-the-community explanations, do not share information, which would harm probably more than 90% of the users botting experience.

With meshes folder removed, they would need to download mesh files with 400-1500 MB size on a daily basis.
 
Ok I deleted the line for the meshes. the rest is fine and works 100% for me there is no need to change anything.
 
Back
Top