[HELP] Players Stuck on Black Screen, Can Hear Noises/Run Around 1.8.6.1

DangerRuss

OpenDayZ Rockstar!
This question is for dayz 1.8.6.1

So this is actually an old bug on most dayz mods. Player logs in, screen is black, player can see side chat, hear noises, can hear himself running around, etc... but stuck on black screen until relog.
The original fix was in the compiles.sqf

you would change this
Code:
if (dayz_clientPreload && dayz_authed) exitWith { diag_log "PLOGIN: Login loop completed!"; };

to this

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

However, none of that original line is in the compiles.sqf for Vanilla 1.8.6.1
 
you can try adding endLoadingScreen; to a few spots in your init (middle and end) and see if that helps, i had to do that in the repack a while back but i did a bunch of other changes including the above fix so not sure if it will help
 
Back
Top