PHP Code:
//Light sandstorm script by JW
//Fog effect from delaying the bear edited to mimic a light sandstorm.
_pos = position player;
_sand1 = "#particlesource" createVehicleLocal _pos;
_sand1 setParticleParams [
["\Ca\Data\ParticleEffects\Universal\universal.p3d" , 16, 12, 13, 0], "", "Billboard", 1, 10,
[0, 0, -6], [0, 0, 0], 1, 1.275, 1, 0,
[7,6], [[0.797, 0.676, 0.445, 0], [0.777, 0.648, 0.402, 0.04], [0.770, 0.598, 0.434, 0]], [1000], 1, 0, "", "", _pos
];
_sand1 setParticleRandom [3, [55, 55, 0.2], [0, 0, -0.1], 2, 0.45, [0, 0, 0, 0.1], 0, 0];
_sand1 setParticleCircle [0.001, [0, 0, -0.12]];
_sand1 setDropInterval 0.0001;
while {true} do
{
_pos = position player;
_sand1 setpos _pos;
sleep 2;
};
Thanks to JW Custom for the weather scripts. My family, brothers-uncles-kids, play MP coop ARMA2: OA together every week. Everyone enjoys the atmosphere your scripts help create.