Excellent job guys
for a VERY rough step by step on linux anyway
basically all I did was::
Code:
cd <eqemu root directory>
mkdir bin
cd EMuShareMem
make
cp libEMuShareMem.so <somewhere listed in your /etc/ld.so.conf>
cd ../world
make
cp world ../bin
cd ../zone
make
cp zone ../bin
cd ..
cp EQEMu\ Release/*.ini bin
cp EQEMu\ Release/*.bat bin
-edit the ini's to your specifications-
-create and import database, not explained here-
convert Boot5zones.bat to something similar to this:
Code:
IP=`/bin/getip`
./zone . ${IP} 7995 127.0.0.1 &
./zone . ${IP} 7996 127.0.0.1 &
./zone . ${IP} 7997 127.0.0.1 &
./zone . ${IP} 7998 127.0.0.1 &
./zone . ${IP} 7999 127.0.0.1 &
then to run the game assuming everything is in good shape
Code:
./world &
./Boot5zones.bat
Not that doing it this way is really cluttered you'll want to alter it if you are debugging since everything will be in the same xterm
And most importantly, compare everything I've said here with other guides, this is by no means anything official, just what I did to get it up and running