DayZ
STALKER EVR Anomaly Storm Chernarus
NICKI 24 May, 2022 @ 12:52am
Time how and what must how?
Hello, I have prepared this mod with someone to run on a server. At the beginning it worked perfectly.

After all, after a few times, she no longer appeared and doesn't call anymore. Can you help me please.
so problems:
- how must it be with the time
- how should it be adjusted
- how to move the ball
- how to set the repeat.

Kind regards Nickssoo
< >
Showing 1-3 of 3 comments
Harkness (Harks Modding)  [developer] 29 May, 2022 @ 11:00am 
Open the mod and read the code its not super advanced its all real simple and easy to understand.
Once you read the code you will understand the answers to all those questions, Mostly what your looking for can be set in the code you add to you init.c
NICKI 1 Jun, 2022 @ 7:20am 
Yes ok, unterstand thx
Harkness (Harks Modding)  [developer] 2 Jun, 2022 @ 6:18am 
Originally posted by Nickssoo:
Yes ok, unterstand thx
there is also a comment in the code explaining what each value means.

override void OnInit()
{
super.OnInit();
if ( m_EventManagerServer )
{

// enable/disable event system, min time between events, max time between events, max number of events at the same time

m_EventManagerServer.OnInitServer( true, 550, 1000, 2 );
m_EventManagerServer.RegisterEvent( Aurora, 0.85 );
m_EventManagerServer.RegisterEvent( Blizzard, 0.4 );
m_EventManagerServer.RegisterEvent( ExtremeCold, 0.4 );
m_EventManagerServer.RegisterEvent( Snowfall, 0.6 );
m_EventManagerServer.RegisterEvent( EVRStorm, 0.35 );
m_EventManagerServer.RegisterEvent( HeavyFog, 0.3 );
}
}
< >
Showing 1-3 of 3 comments
Per page: 1530 50