Jump to content

meganoth

Moderators
  • Posts

    9,389
  • Joined

  • Days Won

    56

Everything posted by meganoth

  1. One thing you could do is starting the server without the mod to see whether it is something in the mod that does this or the vanilla game. In the second case TFP would be the guys to talk to. Another thing would be to check what happens internally with "strace -f -p <process-id>" to see what system-call might be involved in this. At 1 MB/s error messages the error loop must be very small and so the place of error very obvious. The error message sounds like it wants to open some c-sharp library and doesn't find it. Use the strace just when the server begins to smap the error message, strace usually slows down a program and you surely don't want to do all the initialization with an active strace slowing it down
  2. Then probably the download of the ravenhearst mod didn't work (which should happen in line 2 of the code posted by vitamin, the line beginning with "git clone") Probably your ubuntu doesn't have "git" installed. Lets improve the code: sudo apt-get update sudo apt-get install git cd /tmp git clone https://github.com/JaxTeller718/MainVersion/ ravenhearst cd /tmp/ravenhearst cp -rf $(ls -A) "$HOME/.steam/steam/steamapps/common/7 Days To Die/" The first line should ask for your password, the second should tell you that it will install git and a few other packages needed by git and ask you if it thats ok. Answer with "y" The fourth line (starting with "git clone") will tell you something like "Receiving objects: 1% ..." and depending on your internet connection will take quite a while for the 1% to get to 100% After that you should see a directory /tmp/ravenhearst and there should be a few directories in it, among others a data and mod directory. The last line will copy all files into your 7days steam directory.
  3. If you are more used to the GUI, you could also just use the built-in file-manager. Just copy all the directories in /tmp/ravenhearst to the target directory in .steam/steam/steamapps/common/7 day to die/ . Also check /tmp/ravenhearst whether you really have downloaded anything.
  4. Replace "" with " in the line of code vitamin gave you
  5. First page post says current version is 2.08. I guess this is just an editing mistake? Since the Modinfo.xml of the downloads are saying 2.11.3 and thats supposed to be 2.11.5 really (according to a poster here) it's a bit confusing now if someone tries to update manually. Still, If you don't check and just install -> no confusion -> no problem, I should do that more often ;-) On second thought, the bug with cooking-leveling seems to be brand new. Maybe I'll stay on 2.08 for the moment. Great mod by the way.
×
×
  • Create New...