timeNow Function

Retrieves the current system time.


int timeNow()

The number of seconds that have elapsed since midnight.

static void timeNowExample(Args _arg)
{
    int i;
    ;
    i = timeNow();
    print "The number of seconds since midnight is " + int2Str(i);
    pause;
}

Community Additions

ADD
Show: