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.
I got around to check if WoW is running or not, and if it is, start Honorbuddy:
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
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.

I got around to check if WoW is running or not, and if it is, start Honorbuddy:
So yeah, could someone please please provide some hints?@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
)
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

Last edited: