View Single Post
  #8  
Old 02-12-2011, 09:36 PM
Capheus
Hill Giant
 
Join Date: Apr 2008
Location: Milwaukee
Posts: 141
Default

Ok so here is my eqemu_config.xml

Code:
<?xml version="1.0"?>
<server>
<world>
<shortname>myworld</shortname>
<longname>myworld long name</longname>

<!-- address has to be specified for minilogin to work -->
<address>192.168.1.101</address>
<localaddress>192.168.1.101</localaddress>

<!-- Loginserver information. -->
<loginserver>
<host>192.168.1.101</host>
<port>5999</port>
<account>Nightworker8</account>
<password>Password</password>
</loginserver>

<!-- Sets the shared key used by zone/launcher to connect to world -->
<key>blehblahblehblee</key>

<!-- Enable and set the port for the HTTP service -->
<http port="9080" enable="true" mimefile="mime.types"/>
</world>

<!-- Database configuration, replaces db.ini -->
<database>
<host>localhost</host>
<port>3306</port>
<username>root</username>
<password>****</password>
<db>peq1667</db>
</database>
</server>
so like c0ncrete was saying to make it work I would need to setup my tblserveradminregistration found in the local database as such:

Code:
INSERT INTO `tblserveradminregistration` (`ServerAdminID`, `AccountName`, `AccountPassword`, `FirstName`, `LastName`, `Email`, `RegistrationDate`, `RegistrationIPAddr`) VALUES (2, 'Nightworker8', 'Password', 'J', 'c', 'j@j.COM', '2010-09-04 06:24:59', '192.168.1.101');
For my eqemulogin.ini, I would set it up like this (change your opcodes file to whatever version of EQ you are running, I am using Titanium here):

Code:
Port=5999
DumpPacketsIn=true
DumpPacketsOut=true
Trace=true
DatabaseServerName=localhost
DatabaseCatalogName=local
DatabaseUserName=root
DatabaseUserPassword=****
OPCodePathAndFileName=login_opcodes.conf
And eqhost.txt:

Code:
[LoginServer]
Host=192.168.1.101:5999
I don't think login.ini does anything, unless it was included recently.
Reply With Quote