Can any one see if this efs file writes the word TICK on the debug screen for every tick on the T&S window?
function main()
{
debugPrintln("tick");
return;
}
function main()
{
debugPrintln("tick");
return;
}
function main()
{
//get current time in minutes, 0-59
var CurHours=getHour();
var CurMinutes=getMinute();
var CurSeconds=getSecond();
debugPrintln("tick@ "+CurHours+":"+CurMinutes+":"+CurSeconds+" Close "+close());
return;
}
Comment