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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Help with a batch? :b

reoxftw

New Member
Joined
Aug 11, 2011
Messages
316
Hey.

I'm currently trying to get a thing working:

Running the batch will do the following:
Check if WoW is running. If it is, start Honorbuddy. If it is not, ask if WoW should be started (input required). If the input is given (lets say "yes"), start WoW, log in on account (details given in a file or something else), select character aswell, then start Honorbuddy.

I'm kinda new to the whole batch stuff, so yeah. :P

I got around to check if WoW is running or not, and if it is, start Honorbuddy:
@echo off
echo Checking...
tasklist /nh /fi "imagename eq wow.exe" | find /i "wow.exe" >nul && (
echo World of Warcraft is running. Starting HB
cd path/to/hb
Honorbuddy.exe /autostart
) || (
echo WoW not running
)
So yeah, could someone please please provide some hints?

Thank you!

[BTW I know I could use ARelog, but I'd like to get this working]
Ah and, I doubt the chararcter selection/login is gonna work with a batch file, so you can skip this part :P
 
Last edited:
Back
Top