Jump to content

Forums Announcement

Read-Only Mode for Announcements & Changelogs

Dear Survivors, we'd like to inform you that this forum will transition to read-only mode. From now on, it will serve exclusively as a platform for official announcements and changelogs.

For all community discussions, debates, and engagement, we encourage you to join us on our social media platforms: Discord, Twitter/X, Facebook.

Thank you for being a valued part of our community. We look forward to connecting with you on our other channels!

Stay safe out there,
Your DayZ Team

outlawzgosu

Members
  • Content Count

    3
  • Joined

  • Last visited

Everything posted by outlawzgosu

  1. outlawzgosu

    cant compile "mission" script module

    It was Documents > DayZ Other Profiles > Server
  2. outlawzgosu

    Server Time

    It's a common issue every server is having right now. This fix is supposed to skip skip night, so when it's 8PM the server will set ti's time to 7AM: 1. Open Mpmissions - dayzOffline.chernarusplus - init.c 2. At the top add: #include "$CurrentDir:\\mpmissions\\dayzOffline.chernarusplus\\Correct_InGame_time.c" 3. under the line: weather.SetWindFunctionParams add: GetGame().GetCallQueue(CALL_CATEGORY_GAMEPLAY).CallLater(Correct_InGame_time, 1000, true); 4. Create a file manually with the name "Correct_InGame_time.c" and fill it with the following text: static void Correct_InGame_time() { private int year, month, day, hour, minute; GetGame().GetWorld().GetDate( year, month, day, hour, minute ); if ((hour < 7) || (hour >= 20)) { if (hour < 7) { GetGame().GetWorld().SetDate(year, month, day, 7, 3); } if (hour >= 20) { GetGame().GetWorld().SetDate(year, month, (day + 1), 7, 3); } } }
  3. outlawzgosu

    ServerTime Settings not working anymore!

    It looks like it changed the time in-game, but which file do we edit to set the actual time? Or is there a way to make it so it's just always daytime?
×