Ignore 
Edit:
I remember why I posted this. I hate how long TimeRunning; is... Hard to put in a progress report that fits well.
SCAR Code:
function ScriptRunTime: string;
var
H,M,S:integer;
begin
ConvertTime(gettimerunning, H, M, S);
result := inttostr(H) + 'h:' + inttostr(M) + 'm:' + inttostr(S)+'s';
end;
Very small suggestion... But I use that way more then the other timers in the times include.
Idk if the letters in the output should be capitalized or not. Probably caps.
This would be used a lot in all progress reports.