When I Design my Scripts i have timed Logouts for all procedures, and most good scripters do, to simplfy how i come up with my timeouts i wrote this quick script, basicly hold F9 key down while your timing something then release and it will printout the times. Also F10 ends the script because when i'm using it its normally my second scar window open so the hotkeys don't work. Hope someone else finds it simiuseful

PHP Code:
program StupiderTimerThinger;

{.include 
srl\srl.scar}

var 
Integer;
begin

  repeat
    Wait 
1000 );

    if ( 
IsFKeyDown ) ) then
    begin
      MarkTime 
Mark );
      while ( 
IsFKeyDown ) ) do
        
Wait );
      
:= TimeFromMark Mark );
      
WriteLn '--> Total MiliSeconds : ' IntToStr ) );
      
WriteLn '--> Total Seconds     : ' IntToStr 1000 ) );
      
WriteLn '--> Total Minutes     : ' IntToStr 6000 ) );
    
end;

  
until IsFKeyDown 10 ) );
end