Made this for you...
Simba Code:
Procedure WoodcuttingProgressReport;
var
Totalxp, XPhour, LogsHour: Integer;
Begin
If Not(LoggedIn) Then
Exit;
ClearDebug;
Totalxp := (GetXPBarTotal - InitialXP);
XPhour := Round((Totalxp)/(GetTimeRunning/3600000.0));
LogsHour := Round((LogLoad*28)/(GetTimeRunning/3600000.0));
Writeln('*****************************************************************************');
Writeln('Time Running: ' + TimeRunning);
Writeln('Est. Logs Total: ' + IntToStr(LogLoad*28));
Writeln('Est. Total Experience: ' + IntToStr(Totalxp));
Writeln('Est. Experience/Hour: ' + IntToStr(XPhour));
Writeln('Est. Logs/Hour: ' + IntToStr(LogsHour));
Writeln('*****************************************************************************');
Call on it everytime you finished chopping a whole inventory and also Inc(LogLoad) <<Declare as global Int variable everytime you finished chopping a whole inventory.