Skip Server Browser [Workaround]

Have some feedback for Life is Feudal? Post it here!

Stukii
Alpha Tester
 
Posts: 12
Joined: 28 Aug 2014, 22:33

Skip Server Browser [Workaround]

Post by Stukii » 23 Sep 2014, 19:26

If you have problems with the server browser this method might help you:

Okay this works 100% now (for me :Yahoo!: )

Open console and enter
(If server has password)
$JoinGamePassword =ThePassword

next enter

startConnection("IP:Port")
f.e. startConnection("91.250.83.204:28000")


So easy.. :D

__________________________________________

1. Get the Ip of the desired Server

Once you are connected open the console and search for initConnection - You will find the ip there. Or ask someone else for the server ip.

2. Enter the IP here and write down the numeric string you receive.
http://www.geektools.com/cgi-bin/ipconv.cgi
You will need it to connect to your server

3. At the start window of the game (do not open server browser) open console.
Enter
connect (NumberYouReceived)
If the server has a password // Not working sry
connect (NumberYouRecieve, Password) //Gotta find out

f.e. connect (133758259, Fishmac)
Last edited by Stukii on 24 Sep 2014, 03:32, edited 4 times in total.


Stukii
Alpha Tester
 
Posts: 12
Joined: 28 Aug 2014, 22:33

Re: Skip Server Browser [Workaround]

Post by Stukii » 23 Sep 2014, 19:44

Sadly getting timeouts for protected servers :(


Rhinosaurus
 
Posts: 51
Joined: 23 Sep 2014, 13:32

Re: Skip Server Browser [Workaround]

Post by Rhinosaurus » 23 Sep 2014, 20:51

Huge. Going to try this. If it works I love you.


Stukii
Alpha Tester
 
Posts: 12
Joined: 28 Aug 2014, 22:33

Re: Skip Server Browser [Workaround]

Post by Stukii » 23 Sep 2014, 20:54

Yes tell me please if you encounter problems.

Still trying to figure out how to set password via console.


Rhinosaurus
 
Posts: 51
Joined: 23 Sep 2014, 13:32

Re: Skip Server Browser [Workaround]

Post by Rhinosaurus » 23 Sep 2014, 22:24

doesn't work. Just trying to connect to 127.255.255.255:28000 repeatedly. Even if I change the code.


Stukii
Alpha Tester
 
Posts: 12
Joined: 28 Aug 2014, 22:33

Re: Skip Server Browser [Workaround]

Post by Stukii » 23 Sep 2014, 22:40

Obsolete
Last edited by Stukii on 24 Sep 2014, 03:33, edited 1 time in total.


Dods
 
Posts: 47
Joined: 01 Apr 2014, 23:04

Re: Skip Server Browser [Workaround]

Post by Dods » 24 Sep 2014, 00:43

I'll test this ... if it works ... amazing :)


Stukii
Alpha Tester
 
Posts: 12
Joined: 28 Aug 2014, 22:33

Re: Skip Server Browser [Workaround]

Post by Stukii » 24 Sep 2014, 06:22

joinToRemoteServer("ip:port","password");

even better :)


Masterfull
 
Posts: 10
Joined: 06 Mar 2014, 18:27

Re: Skip Server Browser [Workaround]

Post by Masterfull » 24 Sep 2014, 11:04

how about official server for example 23 or 14 ?


Miraie
 
Posts: 8
Joined: 24 Sep 2014, 11:04

Re: Skip Server Browser [Workaround]

Post by Miraie » 24 Sep 2014, 11:13

Stukii wrote:joinToRemoteServer("ip:port","password");

even better :)


Where do you put this command? can we mod a file like an dll to make only my personal server appear on the list?


Stukii
Alpha Tester
 
Posts: 12
Joined: 28 Aug 2014, 22:33

Re: Skip Server Browser [Workaround]

Post by Stukii » 24 Sep 2014, 11:30

Masterfull wrote:how about official server for example 23 or 14 ?


You need to get the server IP. When you are connected you can find it in the console. Look for "initConnect".

Miraie wrote:
Where do you put this command? can we mod a file like an dll to make only my personal server appear on the list?


In the console.
And yes this should be possible, would be easier tho to add a function to connect to a specific server. Doesn't even have to be a dll, just plain textfile torquescript.

f.e. add this to yo.cs
Code: Select all
function bobikSmells()
   {
      $JoinGameAddress = "123.45.67.89:2800";
      $JoinGamePassword = "LovelyScent";
      initConnection();
   }

So you would just have to enter bobikSmells() into console.
Could also bind this to a hotkey... everything possible here :)


Alfie
Alpha Tester
 
Posts: 110
Joined: 06 Aug 2012, 23:09
Location: England, Birmingham

Re: Skip Server Browser [Workaround]

Post by Alfie » 24 Sep 2014, 11:47

Does this still work? (don't have passworded server to try + not at proper PC atm)
It's also what Bobik replied to in bug tracker with.

joinToRemoteServer("<ip>:<port>", "<password>");
Anquer Quare
www.Anquer-Quare.com | www.AQServers.com

Forgive your enemies, but never forget their names.
John F Kennedy
____________________________________________________________________________________________


Stukii
Alpha Tester
 
Posts: 12
Joined: 28 Aug 2014, 22:33

Re: Skip Server Browser [Workaround]

Post by Stukii » 24 Sep 2014, 11:59

Yep works.


Miraie
 
Posts: 8
Joined: 24 Sep 2014, 11:04

Re: Skip Server Browser [Workaround]

Post by Miraie » 25 Sep 2014, 03:30

Miraie wrote:
Where do you put this command? can we mod a file like an dll to make only my personal server appear on the list?


In the console.
And yes this should be possible, would be easier tho to add a function to connect to a specific server. Doesn't even have to be a dll, just plain textfile torquescript.

f.e. add this to yo.cs
Code: Select all
function bobikSmells()
   {
      $JoinGameAddress = "123.45.67.89:2800";
      $JoinGamePassword = "LovelyScent";
      initConnection();
   }

So you would just have to enter bobikSmells() into console.
Could also bind this to a hotkey... everything possible here :)[/quote]


Ok thank.. but i'm kinda noob here how can I open the console in game or in main menu?


Radical
 
Posts: 62
Joined: 20 Sep 2014, 10:17
Location: France / England

Re: Skip Server Browser [Workaround]

Post by Radical » 25 Sep 2014, 05:13

Miraie wrote:Ok thank.. but i'm kinda noob here how can I open the console in game or in main menu?


^
Image


Alfie
Alpha Tester
 
Posts: 110
Joined: 06 Aug 2012, 23:09
Location: England, Birmingham

Re: Skip Server Browser [Workaround]

Post by Alfie » 25 Sep 2014, 07:53

Radical wrote:
Miraie wrote:Ok thank.. but i'm kinda noob here how can I open the console in game or in main menu?


^


Might be different for others (I've got UK keyboard layout) but for me it's:

' (apostrophe)

For me, that's on the same key as @
Anquer Quare
www.Anquer-Quare.com | www.AQServers.com

Forgive your enemies, but never forget their names.
John F Kennedy
____________________________________________________________________________________________

Return to Feedback Section