From 0d76e224fd3a4aea2ef41cc6b88bf712bbd184ab Mon Sep 17 00:00:00 2001 From: Uleat Date: Fri, 9 Aug 2019 21:28:07 -0400 Subject: [PATCH] Updated eqemu_server.pl login server config example to json standard [skip ci] --- utils/scripts/eqemu_server.pl | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/utils/scripts/eqemu_server.pl b/utils/scripts/eqemu_server.pl index f05c2c266..b2a53b864 100644 --- a/utils/scripts/eqemu_server.pl +++ b/utils/scripts/eqemu_server.pl @@ -1587,22 +1587,24 @@ sub add_login_server_firewall_rules { print "If firewall rules don't add you must run this script (eqemu_server.pl) as administrator\n"; print "\n"; print "[Install] Instructions \n"; - print "[Install] In order to connect your server to the loginserver you must point your eqemu_config.xml to your local server similar to the following:\n"; + print "[Install] In order to connect your server to the loginserver you must point your eqemu_config.json to your local server similar to the following:\n"; print " - - login.eqemulator.net - 5998 - - - - - 127.0.0.1 - 5998 - - - + \"loginserver1\" : { + \"account\" : \"\", + \"host\" : \"login.eqemulator.net\", + \"password\" : \"\", + \"port\" : \"5998\", + \"legacy\": \"1\" + }, + \"loginserver2\" : { + \"account\" : \"\", + \"host\" : \"192.168.197.129\", + \"password\" : \"\", + \"port\" : \"5998\" + }, + \"localaddress\" : \"192.168.197.129\", "; - print "[Install] When done, make sure your EverQuest client points to your loginserver's IP (In this case it would be 127.0.0.1) in the eqhosts.txt file\n"; + print "[Install] When done, make sure your EverQuest client points to your loginserver's IP (In this case it would be 192.168.197.129) in the eqhosts.txt file\n"; } }