NWNDS/nwnds_module/ds_sundial.nss

9 lines
378 B
Plaintext
Raw Normal View History

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);
}