Arma 3 – How to Change Rain to Snow without Mods

How to use a new Arma 3 feature to change the rain to snow without a mod.

Add the Code to Change the Rain to Snow

All credit goes to Меченый !

Put this code in the initServer.sqf file. This will work just fine.

0 setOvercast 1;
0 setRain 1;
0 setFog 0.1; // snow affects visibility at distance
setHumidity 0.9; // don't want to see dust clouds
enableEnvironment [false, true]; // don't want to see snakes and butterflies either

forceWeatherChange;
[
	"a3\data_f\rainnormal_ca.paa",	// rainDropTexture
	1,	// texDropCount
	0.01,	// minRainDensity
	15,	// effectRadius
	0.3,	// windCoef
	0.5,	// dropSpeed
	0.7,	// rndSpeed
	0.5,	// rndDir
	0.01,	// dropWidth
	0.01,	// dropHeight
	[0.2, 0.1, 0.1, 1],	// dropColor
	0.1,	// lumSunFront
	0.1,	// lumSunBack
	5.5,	// refractCoef
	0.3,	// refractSaturation
	true,	// snow
	false	// dropColorStrong
]
call BIS_fnc_setRain;

This will change the rain drops into snowflakes. This is a neat trick!

Volodymyr Azimoff
About Volodymyr Azimoff 13936 Articles
I love games and I live games. Video games are my passion, my hobby and my job. My experience with games started back in 1994 with the Metal Mutant game on ZX Spectrum computer. And since then, I’ve been playing on anything from consoles, to mobile devices. My first official job in the game industry started back in 2005, and I'm still doing what I love to do.

Be the first to comment

Leave a Reply

Your email address will not be published.


*