View Single Post
  #2  
Old 01-14-2020, 03:24 PM
Fridgecritter
Hill Giant
 
Join Date: Feb 2008
Posts: 188
Default

On the server installer page, they list LOCKED as one of the variables, but if you go to the link for the base line config file example, Akka doesn't have a LOCKED section in his code either.

Here's what his looks like on the example from the website:

Code:
{
	"server": {
		"zones": {
			"defaultstatus": "0",
			"ports": {
				"low": "7000",
				"high": "7400"
			}
		},
		"qsdatabase": {
			"host": "localhost",
			"port": "3306",
			"username": "root",
			"password": "eqemu",
			"db": "peq"
		},
		"chatserver": {
			"port": "7778",
			"host": ""
		},
		"mailserver": {
			"host": "",
			"port": "7778"
		},
		"webinterface": {
			"port": "9081"
		},
		"world": {
			"loginserver1": {
				"account": "",
				"password": "",
				"legacy": "1",
				"host": "login.eqemulator.net",
				"port": "5998"
			},
			"loginserver2": {
				"port": "5998",
				"account": "",
				"password": "",
				"host": "127.0.0.1"
			},
			"tcp": {
				"ip": "127.0.0.1",
				"port": "9001"
			},
			"telnet": {
				"ip": "0.0.0.0",
				"port": "9000",
				"enabled": "true"
			},
			"key": "somelongrandomstring12345asdfffff",
			"http": {
				"port": "9080",
				"enabled": "true",
				"mimefile": "mime.types"
			},
			"shortname": "Akkas PEQ Installer",
			"longname": "Akkas PEQ Installer"
		},
		"database": {
			"db": "peq",
			"host": "localhost",
			"port": "3306",
			"username": "root",
			"password": "eqemu"
		}
	}
}
Reply With Quote