View Single Post
  #3  
Old 01-29-2011, 04:12 AM
Huppy's Avatar
Huppy
Demi-God
 
Join Date: Oct 2010
Posts: 1,332
Default

Files to copy to server folder:

In /trunk/EQEmuServer/Build folder -

Chatserver.exe, eqlaunch.exe, World.exe, Zone.exe and EMuShareMem.dll

In /trunk/EQEmuServer/utils folder -

mail_opcodes.conf, opcodes.conf, patch_6.2.conf, patch_Anniversary.conf,
patch_HoT.conf, patch_SoD.conf, patch_SoF.conf, patch_Titanium.conf,
and patch_Underfoot.conf

In /trunk/EQEmuServer/utils/defaults folder -

Copy ALL the folders and files inside this folder.

You will also need all the .map files downloaded in the Maps folder.

You will need all the quests downloaded in to your quests folder and
then inside the quests folder (after downloading) there will be a sub
folder called plugins. Copy that whole folder in to your root server
folder. (Should have a folder there called plugins.

Go to this link and download the EQEmuLoginServer.rar
http://code.google.com/p/projecteqemu/downloads/list

Unrar all those files in to your server folder, then edit eqemu_config.conf
and the login.ini files.

Also, you will have to source in all the sql updates into your database,
from 1667 to 1823, found in /trunk/EQEmuServer/utils/sql/svn folder

You'll also have to create a login database (I call mine peqlogindb) and
source in an sql file called EQEmuLoginServerDBInstall.sql that you
would of got with the login.rar file you downloaded.

You also have to make TWO files, (I use notepad++)
Call them accounts.sql and worldreg.sql

Add the following line to accounts.sql - (edit AFTER the VALUES word, username, password and ip address of your client)

Quote:
INSERT INTO tblLoginServerAccounts (AccountName, AccountPassword, AccountEmail, LastLoginDate, LastIPAddress) VALUES('username', sha('password'), 'fakename@hotmail.com', now(), '192.168.1.xxx');
Add the following line to worldreg.sql - (edit AFTER the VALUES word, Your Long Name and shortname

Quote:
INSERT INTO `tblWorldServerRegistration` (`ServerID`, `ServerLongName`, `ServerTagDescription`, `ServerShortName`, `ServerListTypeID`, `ServerLastLoginDate`, `ServerLastIPAddr`, `ServerAdminID`, `Note`) VALUES ('1', 'Your Long Name', 'ServerTagDescription', 'shortname', '3', NULL, NULL, '1', NULL);
Then source both of these in to the login database you created.
Reply With Quote