View Single Post
  #4  
Old 12-16-2015, 12:47 PM
provocating's Avatar
provocating
Demi-God
 
Join Date: Nov 2007
Posts: 2,175
Default

In your EqEmu config you should have the login and password set for the login server.

Code:
<loginserver>
	<host>127.0.0.1</host>
	<port>5999</port>
	<account>myaccount</account>
	<password>mypassword</password>
</loginserver>
In your login database, the tblServerAdminRegistration should have the same account reflected.

Code:
INSERT INTO `tblServerAdminRegistration` (`ServerAdminID`, `AccountName`, `AccountPassword`, `FirstName`, `LastName`, `Email`, `RegistrationDate`, `RegistrationIPAddr`) VALUES (1, 'myaccount', 'mypassword', '', '', '', '0000-00-00 00:00:00', '');
Reply With Quote