Jump to content

outlawzgosu

Members
  • Content Count

    3
  • Joined

  • Last visited

Community Reputation

1 Neutral

About outlawzgosu

  • Rank
    On the Coast
  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?
×