View Single Post
Old 04-16-2008, 12:28 PM   #16 (permalink)
GhostRiderGrey
Forum Novice
 
GhostRiderGrey's Avatar
 
Join Date: Nov 2007
Posts: 141
Default

Finally got the server to compile and run but was crashing as soon as I tried to type anything. Crashes were related to libz,

Code:
Error:
System.DllNotFoundException: libz
and some forum searching revealed the following fixes:

Changes in mono config (located at /etc/mono/config):

Code:
<dllmap dll="libz.so" target="libz.so.1" />
<dllmap dll="zlib32" target="libz.so" os="!windows" />
<dllmap dll="zlib32.dll" target="libz.so" os="!windows" />
This alone did not fix it, so I also ran the following to make link to the libz file:

Code:
sudo ln -s /usr/lib/libz.so.1 /usr/lib/libz.so
These fixed my crashing issues, but my character would still get stuck in the environment (fall through the floor). Turns out my client was at 5.0.6 and I need to be at 6.0.2.0 or higher.

Now for some script additions!!

Question: What is the latest version of the client I can use? 6.0.6.1??

Thanks!!
-GhostRiderGrey

Last edited by GhostRiderGrey; 04-16-2008 at 12:32 PM. Reason: Added question
GhostRiderGrey is offline   Reply With Quote