HTML TADS 3 top banner

This seems like such a silly question, but where is the code that controls the top banner that shows your location, possible exists and turn count? I wnat to disable the turn count, and if possible replace it with another variable showing the in-game time of the day, but I can’t seem to find where it is.

Search for statusLine object in status.t library file for definition. You can modify it like:

[code]modify statusLine
showStatusRight()
{
local s;

    /* if there's a score object, show the score */
    if ((s = libGlobal.scoreObj) != nil)
    {
        /* show the score and the number of turns so far */
        "<.statusscore><<s.totalScore>>/HERE CHNAGE TURNS:<<
        libGlobal.totalTurns>><./statusscore>";
    }
}

;[/code]