Epoch/Sources/epoch_server_events/EpochEvents/FastNights.sqf

7 lines
470 B
Plaintext
Raw Normal View History

2019-09-30 17:17:28 +00:00
params [["_nightmulti",48],["_daymulti",4]];
2016-04-26 15:07:31 +00:00
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
2019-09-30 17:17:28 +00:00
setTimeMultiplier _nightmulti // [0.1 ... 120] adjust this value for slower or faster night cycle ( 24 hours will take 0.5 hours )
2016-04-25 20:58:43 +00:00
} else {
2019-09-30 17:17:28 +00:00
setTimeMultiplier _daymulti // adjust this value for slower or faster day cycle ( 24 hours will take 6 hours )
2016-04-25 20:58:43 +00:00
};