[DiscordArchive] I made this extremely simple .bat file to run the servers and client but for some reason the client
[DiscordArchive] I made this extremely simple .bat file to run the servers and client but for some reason the client
Archived author: Asgavin • Posted: 2024-11-23T22:58:29.242000+00:00
Original source
I made this extremely simple .bat file to run the servers and client but for some reason the client is the only thing that actually launches:
`@echo off
start "" "D:\WoW\Build\bin\RelWithDebInfo\authserver.exe"
start "" "D:\WoW\Build\bin\RelWithDebInfo\worldserver.exe"
start "" "D:\WoW\Client\World of Warcraft 3.3.5a\Wow.exe"`
Is there something that prevents .bat files from launching the servers?
Archived author: Ryan Turner • Posted: 2024-11-23T22:59:27.009000+00:00
Original source
I pressume it has to do because both auth and world execute in the cmd window
Archived author: Ryan Turner • Posted: 2024-11-23T22:59:45.589000+00:00
Original source
but they need to be their own cmd window cant be 1 for both if not mistaken
Archived author: Revision • Posted: 2024-11-23T23:00:47.809000+00:00
Original source
authserver and worldserver probably fail to load because it's trying to find what it needs in the folder that the bat script is in
Archived author: Revision • Posted: 2024-11-23T23:01:39.808000+00:00
Original source
You could try cd'ing to RelWithDebInfo in the script before you start those two
Archived author: Asgavin • Posted: 2024-11-23T23:02:09.195000+00:00
Original source
This is right, I moved the .bat file to the servers folder and it worked haha