When I open POE with a .bat file it wants to download the whole game

So, after almost dying because I had forgotten to start my logout AHK script before launching the game, I wrote a batch file to open the two scripts I run alongside POE.

However, as I said in the title, when I do that, the "Allocating Space" bar appears followed by the client beginning a 5+GB download of the entire game.

This is the code in the batch file.

"
@echo off

start D:\Games\"Path of Exile Tools"\"AHK Scripts"\logOut.ahk
start D:\Games\"Path of Exile Tools"\"AHK Scripts"\poeAllInOne.ahk
start D:\Games\"Path of Exile"\Client.exe


I've tried it with both the "PathoOfExlile.exe" and the "Client.exe". Both with the same result.

Can anyone help me with that?
You can't "Run" the PathOfExile.exe from a separate directory than it is in. It downloads to "active" path... so if you run it from your desktop, it will download the files to the desktop.

In addition to that, it is bad-form to put quotation marks INSIDE the path.

"
@echo off

start "D:\Games\Path of Exile Tools\AHK Scripts\logOut.ahk"
start "D:\Games\Path of Exile Tools\AHK Scripts\poeAllInOne.ahk"
cd /d "D:\Games\Path of Exile\"
start PathOfExile.exe


I believe that is correct.
Последняя редакция: Drakier#1520. Время: 28 авг. 2014 г., 19:56:51
Thanks for the help. This solved the problem.

Пожаловаться на запись форума

Пожаловаться на учетную запись:

Тип жалобы

Дополнительная информация