Hi,
Is there a method to get the current game year? I can see the sysRealTime and the sysGetDateText but both don't appear on the surface to tell you the current game year.
Thanks,
Breosa
Game Time?
- morbydvisns
- Posts: 1889
- Joined: Sun Jan 30, 2005 12:51 am
$gGameDay ( Number of game-days passed since 1st Jan, Yr 0 )
$gGameTime (Number of game-time seconds passed since midnight on the current game day)
For simplicity theres no leap years in our universe, so the current game year is
A full list of system values is here:
http://theuniversal.net/worldmanual/dok ... tem_values
Further documentation will follow eventually
$gGameTime (Number of game-time seconds passed since midnight on the current game day)
For simplicity theres no leap years in our universe, so the current game year is
Code: Select all
$gameYear = $gGameDay / 365
http://theuniversal.net/worldmanual/dok ... tem_values
Further documentation will follow eventually