It Does, Try This..
Log It In... 
SCAR Code:
{.Include SRL\SRL\Misc\Smart.Scar}
{.Include SRL\SRL.Scar}
Procedure WCLvlImput;
Var
TP: TPoint;
Box: TBox;
TPA: TPointArray;
Cts, LVL: Integer;
Begin
If (GetCurrentTab <> 2) Then
Begin
GameTab(2);
Wait(500 + Random(500));
End;
TP := SkillToCoords(True, 'woodcutting');
CTS := GetColorToleranceSpeed;
ColorToleranceSpeed(0);
TP := Point(TP.x + 7, TP.y + 13);
FindColorsTolerance(TPA, 65535, TP.x - 2, TP.y - 2, TP.x + 15, TP.y + 15, 0);
Box := GetTPABounds(TPA);
LVL := StrToIntDef(GetNumbers(GetTextAtEx(Box.x1 - 2, Box.y1 - 1, 100,
StatChars, False, True, 0, 5, 65535, 2, True, tr_Digits)),0);
ColorToleranceSpeed(CTS);
WriteLn('Wood Cutting Level = ' + IntToStr(LVL));
End;
Begin
SmartSetupEx(123, False, True);
SetTargetDC(SmartGetDC);
While Not LoggedIn Do
Wait(10);
Wait(2000 + Random(50));
WCLvlImput;
End.