Corpsehatch Posted September 2, 2012 Share Posted September 2, 2012 Working on a mod that needs some way of changing the current game hour. When the player uses a load door I want to be able to add 3 hours to the time in game. So if it where 12p it would be 3p after using the door. If only scripting could use console commands because SetPCSleepHours would be perfect. Thanks. Link to comment Share on other sites More sharing options...
steve40 Posted September 3, 2012 Share Posted September 3, 2012 (edited) Try something like this. float newTime = GameHour.Mod(3.0) You will also need to define a property in your script/quest: GlobalVariable Property GameHour auto Edit: updated the name of the global variable to "GameHour", which is the correct one for Skyrim. Edited September 26, 2012 by steve40 Link to comment Share on other sites More sharing options...
Recommended Posts