View Single Post
  #5  
Old 11-10-2012, 03:36 PM
Gurgoth
Fire Beetle
 
Join Date: Oct 2012
Posts: 19
Default

eqemu_config.xml:

Code:
<?xml version="1.0">
<server>
	<world>
		<shortname>eq</shortname>
		<longname>eq</longname>
	
		<loginserver>
			<host>localhost</host>
			<port>5998</port>
			<account>eq</account>
			<password>eq</password>
		</loginserver>
	
	
	</world>

	<database>
        <host>localhost</host>
        <port>3306</port>
        <username>eq</username>
        <password>******</password>
        <db>eq</db>
    </database>

</server>
eqemulogin.ini

Code:
Port=5998
DumpPacketsIn=true
DumpPacketsOut=true
DatabaseServerName=localhost
DatabaseCatalogName=eq
DatabaseUserName=eq
DatabaseUserPassword=****
OPCodePathAndFileName=login_opcodes.conf

login.ini

Code:
[database]
host = localhost
port = 3306
db = eq
user = eq
password = ******
subsystem = MySQL

[options]
unregistered_allowed = FALSE
reject_duplicate_servers = FALSE
trace = TRUE
world_trace = FALSE
dump_packets_in = FALSE
dump_packets_out = FALSE
listen_port = 5998
local_network = localhost

[security]
plugin = EQEmuAuthCrypto
mode = 5

[Titanium]
port = 5998
opcodes = login_opcodes.conf

[SoD]
port = 5999
opcodes = login_opcodes_sod.conf

[schema]
account_table = tblLoginServerAccounts
world_registration_table = tblWorldServerRegistration
world_admin_registration_table = tblServerAdminRegistration
world_server_type_table = tblServerListType
Reply With Quote