Login  Register

Re: Singleplayer Server Dayz Adventures - Epoch / Overpochins / Overpoch

Posted by Eric the Viking on Dec 10, 2014; 5:06am
URL: http://kodabar-dayz-daizy-single-player-forum.163.s1.nabble.com/Singleplayer-Server-Dayz-Adventures-Epoch-Overpochins-Overpoch-tp17459p17577.html

Yes, sort of. There's probably a file missing or a config error.

Have a look in your "Instance" folder at the RPT log.... here's mine...



Look through it and see if you find any errors that relate to any scripts you may have added. You may not find any errors but there is a fix.

Go to your Epoch/addons folder, find and (using PBO Manager) extract dayz_code.pbo

Look in the init folder for compiles.sqf (see picture below) and edit it with Notepad++



Search for:  

if (dayz_clientPreload && dayz_authed) exitWith { diag_log "PLOGIN: Login loop completed!"; };

And replace it with:
 
            if (dayz_clientPreload && dayz_authed) exitWith {
                endLoadingScreen;
                diag_log "PLOGIN: Login loop completed!";
            };

so that it looks like this:



Save the file, repack dayz_code.pbo

The game should now progress beyond that point - don't surprised if you see an error box - this is what is causing the problem so you'll need to sort that out.

Hope it helps, good luck!


EDIT: This is not my script btw, waaaaay above my skill level. I had this problem and found help here.