13 lines
222 B
Plaintext
13 lines
222 B
Plaintext
|
void main()
|
||
|
{
|
||
|
int nIdx;
|
||
|
object oArea = GetObjectByTag("iwd_e", nIdx);
|
||
|
while(GetIsObjectValid(oArea)==TRUE)
|
||
|
{
|
||
|
SetWeather(oArea, WEATHER_SNOW);
|
||
|
nIdx++;
|
||
|
oArea = GetObjectByTag("iwd_e", nIdx);
|
||
|
}
|
||
|
}
|
||
|
|