Need Help Getting Clear sky and always sunny

birce

New Member
I have a Dayz.st With a custom anti hack and I need help getting Need Help Getting Clear sky and always sunny Will Pay
 
You need to get your dayz_code.pbo , unpack it copy the DynamicWeatherEffects.sqf from the external directory and complies.sqf from the init directory then:

edit the file DynamicWeatherEffects.sqf copy and find this:

Code:
_maximumOvercast = 1;

change it to this:

Code:
_maximumOvercast = 0;

edit the compiles.sqf copy at the bottom look for this :


Code:
    //Start Dynamic Weather
    execVM "\z\addons\dayz_code\external\DynamicWeatherEffects.sqf";

change it to this:

Code:
    //Start Dynamic Weather
    execVM "fixes\DynamicWeatherEffects.sqf";

Upack your mission file

Create a fixes directory in your mission file add the new copies of DynamicWeatherEffects.sqf and compiles.sql you just changed.

Finaly edit your init.sqf find this line:

Code:
call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\compiles.sqf";

Change it to this:

Code:
call compile preprocessFileLineNumbers "fixes\compiles.sqf";

Repack your mission file and your good to go. However after all this you will need the dayz_code.pbo and i'm fairly sure DayZ.ST don't give you access to it.
 
Back
Top