View Single Post
  #10  
Old 11-02-2018, 07:24 PM
Asylum
Sarnak
 
Join Date: Jun 2013
Posts: 81
Default

I think I understood those changes and made them correctly; the files are not in the same order but the hierarchy should match. I hope I remembered how to embed the code.

eqemu_config.json
Code:
{
     "server" : {
          "chatserver" : {
               "host" : "my ip address",
               "port" : "7778"
          },
          "database" : {
               "db" : "peq",
               "host" : "192.168.0.10",
               "password" : "******",
               "port" : "3306",
               "username" : "root"
          },
          "mailserver" : {
               "host" : "my ip address",
               "port" : "7778"
          },
          "qsdatabase" : {
               "db" : "peq",
               "host" : "192.168.0.10",
               "password" : "******",
               "port" : "3306",
               "username" : "root"
          },
          "webinterface" : {
               "port" : "9081"
          },
          "world" : {
				"address": "my ip address",
				"http" : {
                    "enabled" : "true",
                    "mimefile" : "mime.types",
                    "port" : "9080"
               },
               "key" : "longstringofnonsensekey",
               "loginserver1" : {
                    "account" : "",
                    "host" : "login.eqemulator.net",
                    "legacy" : "1",
                    "password" : "",
                    "port" : "5998"
               },
               "loginserver2" : {
					"account" : "",
                    "host" : "192.168.0.10",
                    "password" : "",
                    "port" : "5998" <-- not 5999? does it matter here?
               },
               "longname" : "The Fallen Empire EQEmuServer",
               "shortname" : "The Fallen Empire",
               "tcp" : {
                    "ip" : "my ip address",
                    "port" : "9001"
               },
               "telnet" : {
                    "enabled" : "true",
                    "ip" : "my ip address",
                    "port" : "9000"
               }
          },
          "zones" : {
               "defaultstatus" : "0",
               "ports" : {
                    "high" : "7400",
                    "low" : "7000"
               }
          }
     }
}
login.ini

Code:
[database]
host = myipaddress
port = 3306
db = peq
user = root
password = eqemu
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 = 12.345.678. <-- left off the last number set
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
Reply With Quote