Difference between revisions of "User:Rasikko"
Jump to navigation
Jump to search
m
→Calendar Functions
imported>Rasikko m |
imported>Rasikko |
||
Line 135: | Line 135: | ||
Days of the week are also index based, where Sundas is 0, and Loredas is 6. One day passes on Morndas, 18th, Last Seed,4E201. The game starts at 8:00AM, Sundas, 17th Last Seed 4E 201, which is exactly 16 hours til the next day.<br /><br/> | Days of the week are also index based, where Sundas is 0, and Loredas is 6. One day passes on Morndas, 18th, Last Seed,4E201. The game starts at 8:00AM, Sundas, 17th Last Seed 4E 201, which is exactly 16 hours til the next day.<br /><br/> | ||
Skyrim's calendar resets(first day of the year starts on middas again) every 6 years, thus the average length of a skyrim year is exactly 365 days(2,190/6). | Skyrim's calendar resets(first day of the year starts on middas again) every 6 years, thus the average length of a skyrim year is exactly 365 days(2,190/6). | ||
The years can be broken up into indexes with 201 = 1, 202 = 2, 203 = 3, etc, resetting back to 1 on the year 207. To find the index for the year, divide the last two digits of the year by 6 and take only the remainder. I'm working towards a formula for getting the current 'calendar' for any skyrim year. Hoping to eventually | The years can be broken up into indexes with 201 = 1, 202 = 2, 203 = 3, etc, resetting back to 1 on the year 207. To find the index for the year, divide the last two digits of the year by 6 and take only the remainder. I'm working towards a formula for getting the current 'calendar' for any skyrim year. Hoping to eventually solve the problem concerning [[GetCurrentGameTime - Utility]].<br><br> | ||
Due to the game beginning on the 17th, a full calendar month thus occurs on the 17th of every month until 20th, First Seed 201 because of Sun's Dawn only having 28 days, from there, the 20th of every month will be a full calendar month. | |||
<br/><br /> | <br/><br /> | ||
The following function is the same as using GameMonth.GetValue(), but without using a property or [[GetValue - GlobalVariable]]. The idea behind all the following functions is to serve as an alternative to properties. | The following function is the same as using GameMonth.GetValue(), but without using a property or [[GetValue - GlobalVariable]]. The idea behind all the following functions is to serve as an alternative to properties. |