Thread: Public Login
View Single Post
  #2  
Old 11-09-2025, 07:03 PM
EQBasic's Avatar
EQBasic
Fire Beetle
 
Join Date: Mar 2016
Location: Earth
Posts: 11
Default

Quote:
Originally Posted by cbotts99 View Post
Is it possible to allow eqemu login and direct public Ip login.
If what you're doing is using both the Emu public login and your own local login, your config would look like this: (make sure your login.json config is set to local address as well)

Code:
"world": {
   "address": "yourpublicIP",
   "key": "some0random0key0string",
   "localaddress": "127.0.0.1",
   "locked": "false",
   "loginserver1": {
    "account": "",
    "host": "127.0.0.1",
    "password": "",
    "port": "5998"
   },
    "loginserver2" : {
    "account" : "useraccountname",
    "host" : "login.eqemulator.net",
    "legacy" : "1",
    "password" : "yourpassword",
    "port" : "5998"
   },
If you're going to allow outside connections to your public IP and also connect to Emu loginserver, it would look like this: (replace the 000.000.000.000 with your public IP)
Code:
"ucs": {
   "host": "000.000.000.000",
   "port": "7778"
  },
  "world": {
   "address": "000.000.000.000",
   "key": "some0random0key0string",
   "localaddress": "127.0.0.1",
   "locked": "false",
   "loginserver1": {
    "account": "",
    "host": "000.000.000.000",
    "password": "",
    "port": "5998"
   },
    "loginserver2" : {
    "account" : "accountusername",
    "host" : "login.eqemulator.net",
    "legacy" : "1",
    "password" : "yourpassword",
    "port" : "5998"
   },
   "longname": "Your Server Long Name",
   "shortname": "servershortname",
   "tcp": {
    "ip": "000.000.000.000",
Reply With Quote