Legions Server Browser - Now Online!

Bestking

Member
I don't know if its just me, but the legions server is stuck at "Last updated: Mon Nov 4 18:05:32 2013 GMT"
EDIT : Fixed now
 
Last edited:

Fixious

Test Lead
I decided to instal the URI finally, but ran into a problem. I installed it to the folder where legions.exe resides and ran it as administrator. When trying to join a server from the browser, it tried to launch Legions from my system32 folder, which obviously didn't work.

6fyVhiF.png


Manually choosing Legions.exe does launch the game, however it doesn't connect to the server.
 

Fixious

Test Lead
I thought perhaps there might've been issues since I was still using the old launcher (sorta need it to update Test and Public Test), so I downloaded a fresh version using the new launcher and the latest URI. Game launches, but still no connect.

console.log http://pastebin.com/zfJYvgHP
any.extreme http://pastebin.com/MPXTBPWB
error.extreme- Tried to disconnect from a server but was not connected!

Ran the test.bat you gave me earlier.

MGKp16y.png
 

nil

Private Tester
There is a problem with the last line of the batch file, since the pathto variable may contain double quotes. This can be fixed with this line:

Code:
SET pathto=%pathto:"=\"%

So together it will look like:


Code:
SET legions=legions.exe
SET pathto="%~dp0%legions%"
SET pathto=%pathto:"=\"%

REG ADD HKEY_CLASSES_ROOT\legions /t REG_SZ /d "URL:legions protocol"
REG ADD HKEY_CLASSES_ROOT\legions /v "URL Protocol" /t REG_SZ
REG ADD HKEY_CLASSES_ROOT\legions\shell\open /t REG_SZ
REG ADD HKEY_CLASSES_ROOT\legions\shell\open\command /t REG_SZ /d "%pathto% --connect=%%1"
 
Last edited:

Fixious

Test Lead
I eventually got this to work on another profile, so I'll just assume something is wonky with my main one (likely permissions for some reason).
 
Top