Skip to content

Weather

ZephiriusZephirius Member Posts: 411
I'm having problems getting it to snow or rain. Precipitation is at 100%. Not sure what is happening? I've never had this problem before.
Anyone experience weather problems before? Thanks for any help... ;)

Comments

  • ZephiriusZephirius Member Posts: 411
    edited May 2021
    I've still don't understand why no snow?

    Until then, just use code:
    void main()
    {
    
    object oPC = GetEnteringObject();
    if (!GetIsPC(oPC)) return;
    
    object oArea = OBJECT_SELF;
    SetWeather(oArea, WEATHER_SNOW, CLOUDY_W_CHANCE_OF_MEATBALLS);
    
    }
    
    Post edited by Zephirius on
  • Sylvus_MoonbowSylvus_Moonbow Member Posts: 1,085
    Make sure the area is not marked as an interior.
  • ABJECT_SELFABJECT_SELF Member Posts: 24
    Zephirius wrote: »
    I've still don't understand why no snow?
    SetWeather(oArea, WEATHER_SNOW, CLOUDY_W_CHANCE_OF_MEATBALLS);
    

    I see what you did there :D

    Seriously though, set precipitation to 0% if you're going to script weather behavior. Otherwise the default weather behavior will override your code.
  • ZephiriusZephirius Member Posts: 411
    Good to know.
Sign In or Register to comment.