View Single Post
  #2  
Old 06-28-2019, 07:29 PM
dclarkpf
Fire Beetle
 
Join Date: Jul 2005
Location: Grants Pass, Or
Posts: 20
Default Ack.

While I was trying to find the glitch stated above, I was modifying my configs.. So I broke something. I figure it's probably in the config somewhere.. I can log in though the local login server, but I've got no servers listed after logging in. Anyone see anything wrong with this setup?

eqemu_config.json
Code:
{
   "server" : {
      "chatserver" : {
         "host" : "",
         "port" : "7778"
      },
      "database" : {
         "db" : "eqemudatabase",
         "host" : "localhost",
         "password" : "dbpassword",
         "port" : "3306",
         "username" : "dbusername"
      },
      "mailserver" : {
         "host" : "",
         "port" : "7778"
      },
      "qsdatabase" : {
         "db" : "eqemu",
         "host" : "localhost",
         "password" : "marcali37",
         "port" : "3306",
         "username" : "eqemu"
      },
      "webinterface" : {
         "port" : "9081"
      },
      "world" : {
         "address":"192.168.0.21",
         "localaddress":"192.168.0.21",
         "http" : {
            "enabled" : "true",
            "mimefile" : "mime.types",
            "port" : "9080"
         },
         "key" : "mykey",
         "loginserver1" : {
            "account" : "myaccount",
            "host" : "192.168.0.21",
            "legacy" : "1",
            "password" : "mypassword",
            "port" : "5998"
         },
         "loginserver2" : {
            "account" : "myaccount",
            "host" : "192.168.0.21",
            "legacy" : "0",
            "password" : "mypassword",
            "port" : "5999"
         },
         "longname" : "daves eqemu",
         "shortname" : "deqemu",
         "tcp" : {
            "ip" : "192.168.0.21",
            "port" : "9001"
         },
         "telnet" : {
            "enabled" : "true",
            "ip" : "0.0.0.0",
            "port" : "9000"
         }
      },
      "zones" : {
         "defaultstatus" : "0",
         "ports" : {
            "high" : "7400",
            "low" : "7000"
         }
      }
   }
}
login.ini
Code:
[database]
host = localhost
port = 3306
db = dbaccount
user = dbuser
password = dbpassword
subsystem = MySQL

[options]
unregistered_allowed = TRUE
reject_duplicate_servers = FALSE
trace = TRUE
world_trace = FALSE
dump_packets_in = FALSE
dump_packets_out = FALSE
listen_port = 5998
local_network = 192.168.0.
auto_create_accounts = TRUE

[security]
plugin = EQEmuAuthCrypto
mode = 5

[Titanium]
port = 5998
opcodes = login_opcodes.conf

[SoD]
port = 5999
opcodes = login_opcodes_sod.conf

[schema]
account_table = loginserver_server_accounts
world_registration_table = loginserver_world_server_registration
world_admin_registration_table = loginserver_server_admin_registration
world_server_type_table = loginserver_server_list_type
Thanks for the help!
Reply With Quote