Wasnt sure where to put this thread, but is the Smart_DrawTextMulti method broken atm? I havent touched anything from my script, but i did notice SRL updated
This is what its been displaying on RS from my script:

What it should be(or was):


Code:
Simba Code:
procedure Report;
var
XPPH: Integer;
begin
XPPH := Round((Exp * 3600) / (GetTimeRunning / 1000));
Smart_DrawTextMulti(True, True,
['Nataurs Astral Runner v' + VERSION,
'',
'Astrals: ' + IntToStr(AstralsMade),
'XP: ' + IntToStr(Round(Exp)),
'XP/H: ' + IntToStr(XPPH),
'' + MsToTime(GetTimeRunning, Time_Abbrev)],
Point(9, 235), LoginChars, 2867601);
end;