telnetSetParameters Crashing dedicated server

Place for sharing your game modifications for Life is Feudal: Your Own

MannieJay
 
Posts: 2
Joined: 13 Jan 2018, 18:32

telnetSetParameters Crashing dedicated server

Post by MannieJay » 05 Sep 2018, 02:23

After the latest patch, "telnetSetParameters" crashes dedicated server on startup. Has anyone else been experiencing this issue?


Tjaden_de
 
Posts: 3
Joined: 07 Sep 2018, 20:44

Re: telnetSetParameters Crashing dedicated server

Post by Tjaden_de » 05 Oct 2018, 23:33

Yes, the is an non initialized variable so it crash the server when you use telnetSetParameters...

you can fix it, if you define it before...

Try:
Code: Select all
// Serverkonsole
// @param port^^  Port to listen on for console connections (0 will shut down listening).
// @param consolePass Password for read/write access to console.
// @param listenPass  Password for read access to console.
// @param writerPass  Password for write-only access to console.
// @param remoteEcho  [optional] Enable echoing back to the client, off by default.

$telnet::bindAddress = $cm_config::localIpAddress;
telnetSetParameters(4000, "consolePassword", "listenPassword", "writerPassword", false);



best regards
Christian

Return to Game mods