FastNights

This commit is contained in:
He-Man 2019-09-30 19:17:28 +02:00
parent 208c361d35
commit 2aeead19b4
2 changed files with 4 additions and 2 deletions

View File

@ -26,6 +26,7 @@ forceRestartTime = 14400; // 4 hour restarts
},
// { 1800, "PaydayEvent", 0, 2},
// { 1200, "MessageServer", 0, 2},
{ 30, "FastNights", 0 , 2, -1, {48,4} ,{"VR"}}, // TimeMulti Nighttime = 48 / TimeMulti Daytime = 4
{ 1200, "HeliCrash", 0 , 2, -1, {} ,{"VR"}},
{ 2700, "AirDrop", 0 , 2, -1, {} ,{"VR"}},
{ 2400, "EarthQuake", 0 , 2, -1, {} ,{"VR"}},

View File

@ -1,5 +1,6 @@
params [["_nightmulti",48],["_daymulti",4]];
if (sunOrMoon < 0.99) then { // adjust this lower to change sooner. Note: "0.99 value, the twilight is still quite dark" https://community.bistudio.com/wiki/sunOrMoon
setTimeMultiplier 13 // adjust this value for slower or faster night cycle ( 24 hours will take 1 hour )
setTimeMultiplier _nightmulti // [0.1 ... 120] adjust this value for slower or faster night cycle ( 24 hours will take 0.5 hours )
} else {
setTimeMultiplier 5 // adjust this value for slower or faster day cycle ( 12 hours will take 1 hour )
setTimeMultiplier _daymulti // adjust this value for slower or faster day cycle ( 24 hours will take 6 hours )
};