View Single Post
  #9  
Old 01-17-2013, 07:58 PM
c0ncrete's Avatar
c0ncrete
Dragon
 
Join Date: Dec 2009
Posts: 719
Default

all of what you need to run EQEmuLoginServer is in <source_dir>\EQEmuLoginServer\login_util

just copy the ini and conf files to your main server directory and edit and source in EQEmuLoginServerInstall.sql.

you'll have to have a build of the executable, of course. but if you have those files, you already have the source to compile it.

you can set up your server to run off both the public and your private login server simultaneously as well.

Code:
        <loginserver1>
            <host>eqemulator.net</host>
            <port>5998</port>
            <account>...</account>
            <password>...</password>
        </loginserver1>
        <loginserver2>
            <host>192.168.1.114</host>
            <port>5998</port>
            <account>...</account>
            <password>...</password>
        </loginserver2>
__________________
I muck about @ The Forge.
say(rand 99>49?'try '.('0x'.join '',map{unpack 'H*',chr rand 256}1..2):'incoherent nonsense')while our $Noport=1;

Last edited by c0ncrete; 01-17-2013 at 07:59 PM.. Reason: spellink errpr
Reply With Quote