Weather

szaku2515

New member
Joined
Apr 14, 2011
Messages
8
Hello! Im trying to add some evil weather above point on my map and that's what i wrote:
Code:
define script Burza
begin script Burza
eRain = 0
start
set cloud for eRain above {994.62,120,2048.87}
set cloud alignment to -1 at {994.62,120,2048.87} radius 50
set cloud eRain size to x 100.0 y 10.0 z 100.0
set cloud generation 5
set cloud eRain altitude 60.0
set eRain properties rainfall 1 snowfall 0 overcast 0.6
set cloud eRain points to 3
disable eRain affected by wind
end script Burza

But the cloud and rain doesn't show up. How can i make dark clouds and heavy rain over some point? Can someone help?

Thanks.
 
I modified script and it now works well:
Code:
define script Burza

begin script Burza

eRain = 0
eDeszcz = 0
eDeszcz0 = 0
eDeszcz1 = 0

start

set cloud for eDeszcz above {993.13,2007.82}
set cloud for eRain above {984.74,2059.65}
set cloud for eDeszcz0 above {1128.29,2122.42}
set cloud for eDeszcz1 above {1141.73,1940.84}

set cloud generation 3
set cloud eRain points to 2

set cloud alignment to -1 at {993.13,2007.82} radius 25
set precipitation at {984.74,2059.65} radius 35 enable rainfall disable snowfall enable overcast
set precipitation at {1128.29,2122.42} radius 30 enable rainfall disable snowfall enable overcast

set eRain properties rainfall 1 snowfall 0 overcast 0.7
set eDeszcz properties rainfall 2 snowfall 0 overcast 0
set eDeszcz0 properties rainfall 1 snowfall 0 overcast 0.5
set eDeszcz1 properties rainfall 2 snowfall 0 overcast 0

disable eRain affected by wind
disable eDeszcz affected by wind
disable eDeszcz0 affected by wind
disable eDeszcz1 affected by wind

end script Burza

The problem was that i gave bad coordinates.
 
Back
Top