Files
gta-v-chaos-mod-custom-scripts/Weather/WeatherTrueSnow.lua
nathan 21ba12f5b9 Added + Edited Effects
Edited Snow Storm:
- Changed timecycle strength and added strength reset code

Added Horn Bombs:
- Vehicles Explode when they honk
2025-09-22 19:08:18 +01:00

26 lines
640 B
Lua

EffectInfo = {
Name = "Snow Storm",
EffectId = "weather_snowstorm",
TimedType = "Normal",
EffectGroup = "_group_weatherchange",
EffectCategory = "Shader"
}
function OnStart()
end
function OnStop()
SetSnowState(false)
SET_TIMECYCLE_MODIFIER_STRENGTH(1.0) -- reset the timecycle strength for any effects that require it but do not modify the strength by themselves.
CLEAR_TIMECYCLE_MODIFIER()
SET_WEATHER_TYPE_NOW("CLEAR")
end
function OnTick()
SetSnowState(true)
SET_WEATHER_TYPE_NOW("BLIZZARD")
SET_TIMECYCLE_MODIFIER("prologue_ending_fog")
SET_TIMECYCLE_MODIFIER_STRENGTH(0.6)
end