NWNDS/nwnds_module/ds_sundial.nss
Jaysyn904 de24f81734 Added NWN Dark Sun module contents
Added NWN Dark Sun module contents.
2021-07-12 21:24:46 -04:00

9 lines
378 B
Plaintext

void main()
{
int nHour = GetTimeHour();
int nMin = GetTimeMinute();
int nSec = GetTimeSecond();
string sTime = "The time is " + IntToString(nHour) + ":" + IntToString(nMin) + ":" + IntToString(nSec) + " on day " + IntToString(GetCalendarDay()) + " of the month " + IntToString(GetCalendarMonth()) + " of the year " + IntToString(GetCalendarYear());
ActionSpeakString(sTime);
}