scn MCTestWeatheractivator
short bounce
Begin onActivate
if MCTeachbook.wetter == 1
MessageBox "Welches Wetter wollt ihr haben?", "Klar", "Wolkig", "Nebel", "Regen", "Normales Wetter"
endif
End
Begin GameMode
Set bounce to GetButtonPressed
if (bounce == 0)
SetWeather Clear 1
Elseif (bounce == 1)
SetWeather Cloudy 1
Elseif (bounce == 2)
SetWeather Fog 1
Elseif (bounce == 3)
SetWeather Rain 1
Elseif (bounce == 4)
ReleaseWeatherOverride
endif
End