Jump to content

liuniwan528

Members
  • Content Count

    5
  • Joined

  • Last visited

Community Reputation

0 Neutral

About liuniwan528

  • Rank
    On the Coast
  1. liuniwan528

    DayZSC Config Tool

    The software you released does not have a second image feature.
  2. liuniwan528

    [problem solved] How to run multiple servers on a computer

    thank you for your help. After many tests, no matter how I map the port, the computer can only start one server. If start the second server, won't be able to find it in the game.
  3. Step 1: Map the ports based on the number of servers you have. Below is my server port. Server 1 (2302-2304, 27016) Server 2 (2402-2404, 27116) Server 3 (2502-2504, 27216) Step 2: Open [Firewall] - [Advanced Settings] - [Inbound Rules] - [New Rules] - [Programs] - [Next] - [Browse Server Directory, find DayZServer_x64.exe] - [Next] - [ Allow connection] - [Next] - [Select All, Next] - [Name - Random Name] - [Finish]
  4. liuniwan528

    The server is often raining, how to cancel

    thank you, friend.
  5. Why is it still raining after cancellation? void main() { Hive ce = CreateHive(); if ( ce ) ce.InitOffline(); Weather weather = g_Game.GetWeather(); weather.GetOvercast().SetLimits( 0.0 , 1.0 ); /*weather.GetRain().SetLimits( 0.0 , 1.0 );*/ weather.GetFog().SetLimits( 0.0 , 0.25 ); weather.GetOvercast().SetForecastChangeLimits( 0.0, 0.2 ); /*weather.GetRain().SetForecastChangeLimits( 0.0, 0.1 );*/ weather.GetFog().SetForecastChangeLimits( 0.15, 0.45 ); weather.GetOvercast().SetForecastTimeLimits( 1800 , 1800 ); /*weather.GetRain().SetForecastTimeLimits( 600 , 600 );*/ weather.GetFog().SetForecastTimeLimits( 1800 , 1800 ); weather.GetOvercast().Set( Math.RandomFloatInclusive(0.0, 0.3), 0, 0); /*weather.GetRain().Set( Math.RandomFloatInclusive(0.0, 0.2), 0, 0);*/ weather.GetFog().Set( Math.RandomFloatInclusive(0.0, 0.1), 0, 0); weather.SetWindMaximumSpeed(15); weather.SetWindFunctionParams(0.1, 0.3, 50); } Please help me, how to cancel the rainy days
×