Mookeylama Posted July 6, 2013 Share Posted July 6, 2013 is there a way to check what current stage the weather is at in game? like a console way to check? i'd like to check both vanilla and Climates of Tamriel (in case there's a special way to check COT). i don't really wanna change the weather. i have a Scriptdragon function that does that. no, i just wanna check what the weather condition that i'm currently in, is called Link to comment Share on other sites More sharing options...
SeraphimKensai Posted July 6, 2013 Share Posted July 6, 2013 (edited) you could....make a custom item with an OnEquip script and throw in these lines. Then you could tell what the weather classification is whenever you equipe the item, say maybe a hat or something. Sounds like you have some scripting experience, so I'll supply you with the incomplete stuff to allow you to figure it out on your onw, hopefully this points you in the right direction. if Weather.GetCurrentWeather().GetClassification() == 0 DebugTrace("Nice Weather.") else if Weather.GetCurrentWeather().GetClassification() == 1 DebugTrace("Cloudy Weather.") else if Weather.GetCurrentWeather().GetClassification() == 2 DebugTrace("Rainy Weather.") else if Weather.GetCurrentWeather().GetClassification() == 3 DebugTrace("Snowy Weather.") else if Weather.GetCurrentWeather().GetClassification() == -1 DebugTrace("Unclassified Weather.") endIf http://www.creationkit.com/Weather_Script might have more information as well. Edited July 6, 2013 by SeraphimKensai Link to comment Share on other sites More sharing options...
Zlayerzz Posted July 6, 2013 Share Posted July 6, 2013 im sure frostfall http://skyrim.nexusmods.com/mods/11163/? have a check weather command or needs and diseases http://skyrim.nexusmods.com/mods/26228/? not sure which one is Link to comment Share on other sites More sharing options...
Recommended Posts