Well, crapola! says I...
I just figured out how to convert the hour using GameHour into an HH:MM:SS format. I really need to browse the wiki more aggressively. Well, for anybody who's interested, here's the script:
...Set fTotalOblivionSeconds to fOblivionTime * 3600.0Set fOblivionHours to fTotalOblivionSeconds / 3600Set fOblivionMinutes to (fTotalOblivionSeconds / 60) % 60Set fOblivionSeconds to fTotalOblivionSeconds % 60...
Thanks for the responses. I may go ahead and use GetCurrentTime, as it's more efficient.