mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
13 lines
282 B
Plaintext
13 lines
282 B
Plaintext
#include "script_component.hpp"
|
|
|
|
// Rain
|
|
GVAR(rain_next_period) = -1;
|
|
GVAR(rain_period_count) = 0;
|
|
GVAR(current_rain) = 0;
|
|
GVAR(rain_current_range) = -1+(random 2);
|
|
|
|
// Wind
|
|
call FUNC(initWind);
|
|
|
|
[FUNC(serverController), GVAR(serverUpdateInterval)] call cba_fnc_addPerFrameHandler;
|