View Full Version : Working EqEmu download anywhere?
I'm new to this, but I have spent a good deal of time searching for an EqEmu download. It seems that every link that I can find for it either does not have the download, or the page/file no longer exists.
Does anyone know of a place I can download it from?
blackdragonsdg
09-28-2009, 03:09 PM
Try this: http://code.google.com/p/projecteqemu/downloads/list
Try this: http://code.google.com/p/projecteqemu/downloads/list
I was there before but haven't seen the file. I assumed it was stripped off the list similarly to all the other code.google.com links for EqEmu. Do you know which download it is?
leslamarch
09-28-2009, 03:45 PM
this link is there and working just fine http://projecteqemu.googlecode.com/files/Rev974-Bots.zip
this link is there and working just fine http://projecteqemu.googlecode.com/files/Rev974-Bots.zip
Thank you so much :-D , wish I had known it was named that earlier
What is a good version of ActivePerl to use with EqEmu? I have tried a few different releases for Perl but seem to keep getting some sort of error with Perl58.dll when I attempt to launch World.exe.
These are the versions I tried separately to try to get it to work with no luck.
5.6.1.635
5.8.1.807
5.8.8.820
5.8.9.826
5.10.1.1006
With an error saying
"The procedure entry point Perl_newXS_flag could not be located in the dynamic link library perl58.dll"
I had some luck with version 5.8.8.822 which has Perl_newXS_flag in the link library for perl58.dll, but I am now getting the error:
"The procedure entry point Perl_hv_common_key_len could not be located in the dynamic link library perl58.dll"
So is there something I can do to fix this, or is there a better version to use with EqEmu?
Vainglory69
09-29-2009, 10:55 PM
Read the sticky at the top of the page regarding perl.
http://www.eqemulator.net/forums/showthread.php?t=26643 (http://www.eqemulator.net/forums/showthread.php?t=26643)
Read the sticky at the top of the page regarding perl.
http://www.eqemulator.net/forums/showthread.php?t=26643 (http://www.eqemulator.net/forums/showthread.php?t=26643)
Thanks, that fixed that problem. Embarrassing to know that I somehow didn't see that sticky. Especially when there are only two stickies on this forum section to begin with :oops:
It doesn't give me the error anymore, but now it gives me
[Debug] Starting log: logs/eqemu_debug_2276.log
[Debug] [Launcher_INIT] Loading server configuration..
[Debug] [NET_WORLD] WorldConnection connect: Connecting to the server 127.0.0.1:9000 failed: TCPConnection::Connect(): connect() failed. Error: 10061
[Debug] [LAUNCHER_ERROR] worldserver.Connect() FAILED! Will retry.
[Debug] [LAUNCHER_INIT] Starting main loop...
I have gone through every thread relating to this problem and have attempted many solutions such as opening ports 9000, 9080, 7000-7100, 10234 and 5999 as UDP, with no success.
I tried to boot up World.exe in the Command Prompt to try and diagnose the problem more specifically and got:
Failed to open log file: logs/eqemu_debug_world_4848.log
[Debug] [WORLD_INIT] Loading server configuration..
Unable to load 'eqemu_config.xml': Failed to open file
[Debug] [WORLD_INIT_ERR] Loading server configuration failed.
I could not find anything on the forums relating to that error. I have the config file in the same directory as World.exe. I don't know what else the problem could be.
serivoth1234
10-01-2009, 04:56 PM
The problem with servers are there are so many possible problems that can arise. Even following the best tutorials you can still encounter problems.
I noticed you are using 127.0.0.1 as your IP. If you are on a lan I'd use your lan IP. When you use 127.0.0.1 just presents a host of problems (my personal experience anyway)
Worldserver is failing to connect more then likely your problem is in your eqemu_config file, can you post it please if we can have a look at that we might be able to assist you better. Naturally leave out your passwords :)
Rogean
10-01-2009, 05:00 PM
Its assuming 127.0.0.1 because it can't read the eqemu_config.xml, so either that file doesn't exist or is in an incorrect format.
Here is eqemu_config.xml
_____________________________________
<?xml version="1.0">
<server>
<world>
<shortname>Server</shortname>
<longname>Servername</longname>
<!-- Only specify these two if you really think you need to. (read: You don't) -->
<!-- <address>192.168.0.195</address> -->
<!-- <localaddress>127.0.0.1</localaddress> -->
<!-- Loginserver information. Defaults shown -->
<loginserver>
<host>new.eqemulator.net</host>
<port>5998</port>
<account></account>
<password></password>
</loginserver>
<!-- Server status. Default is unlocked -->
<!--<locked/>-->
<!-- <unlocked/> -->
<!-- Sets the ip/port for the tcp connections. Both zones and console (if enabled). Defaults are shown -->
<tcp ip="localhost" port="9000" telnet="disable"/>
<!-- Sets the shared key used by zone/launcher to connect to world -->
<key>some long random string</key>
<!-- Enable and set the port for the HTTP service. Defaults are shown -->
<http port="9080" enabled="false" mimefile="mime.types" />
</world>
<!-- Chatserver (channels) information. Defaults shown -->
<chatserver>
<host>channels.eqemulator.net</host>
<port>7778</port>
</chatserver>
<!-- Mailserver (in-game mail) information. Defaults shown -->
<mailserver>
<host>channels.eqemulator.net</host>
<port>7779</port>
</mailserver>
<zones>
<defaultstatus>20</defaultstatus>
<!-- Sets port range for world to use to auto configure zones -->
<ports low="7000" high="7100"/>
</zones>
<!-- Database configuration, replaces db.ini. Defaults shown -->
<database>
<host>127.0.0.1</host>
<port>3306</port>
<username>root</username>
<password>****</password>
<db>peq</db>
</database>
<!-- Launcher Configuration -->
<launcher>
<!-- <logprefix>logs/zone-</logprefix> -->
<!-- <logsuffix>.log</logsuffix> -->
<!-- <exe>zone.exe or ./zone</exe> -->
<!-- <timers restart="10000" reterminate="10000"> -->
</launcher>
<!-- File locations. Defaults shown -->
<files>
<!-- <spells>spells_us.txt</spells> -->
<!-- <opcodes>opcodes.conf</opcodes> -->
<!-- <logsettings>log.ini</logsettings> -->
<!-- <eqtime>eqtime.cfg</eqtime> -->
</files>
<!-- Directory locations. Defaults shown -->
<directories>
<!-- <maps>Maps</maps> -->
<!-- <quests>quests</quests> -->
<!-- <plugins>plugins</plugins> -->
</directories>
</server>
___________________________
As a side note it was edited in Wordpad to compliment the PDF guide.
serivoth1234
10-01-2009, 05:15 PM
<!-- <address>This should be your routers IP</address> -->
<!-- <localaddress>This should be the server machines local lan IP</localaddress> -->
<!-- Loginserver information. Defaults shown -->
<loginserver>
<host>208.64.37.23</host>
<port>5998</port>
<account></account>
<password></password>
</loginserver>
Also you may want to change this
<defaultstatus>20</defaultstatus>
to
<defaultstatus>0</defaultstatus>
or all your new players will have guide status.
The amendments to my config file have to been made. Although the error is still inhabiting.
vBulletin® v3.8.11, Copyright ©2000-2025, vBulletin Solutions Inc.