I made a level to exp function since I was bored, then I noticed SRL had it already, but I made it for myself, and I decided to compare, I noticed one difference. I had mine like SRL has theirs at first, but I noticed level 98's exp is really level 99 when I first made it, so I fixed mine, but SRL has all the levels with exp off by one still. I didn't check for ConvertXpToLvl (so it might be wrong also, not sure), but I know ConvertLvlToXp is off by 1. Currently in FindXp.Scar SRL has:

SCAR Code:
{*******************************************************************************
function ConvertLvlToXP(Xp: Integer): Integer;
By: Ron
Description: Returns exp based on level
*******************************************************************************}


function ConvertLvlToXP(Level: Integer): Integer;
var
  i, exp: Integer;
begin
  for i := 1 to Level do
    exp := exp + Trunc(i + 300 * Pow(2, i / 7));
  Result := exp / 4;
end;

and it should be:

SCAR Code:
{*******************************************************************************
function ConvertLvlToXP(Xp: Integer): Integer;
By: Ron fixed by Baked0420
Description: Returns exp based on level
*******************************************************************************}


function ConvertLvlToXP(Level: Integer): Integer;
var
  i, exp: Integer;
begin
  for i := 1 to Level-1 do
    exp := exp + Trunc(i + 300 * Pow(2, i / 7));
  Result := exp / 4;
end;


I have already tested it, and checked it with random levels with the objective system in RuneScape so I am positive SRL is off by one and this is a correct fix. If you want, you can test it with this:

SCAR Code:
var
 i: integer;
begin
  for i:= 1 to 99 do
  begin
    writeln(' Level' + IntToStr(i) + ' = ' + IntToStr(ConvertLvlToXP(i)) + ';');
  end;
end.

(I was making constant variables for the levels one day, never finished, made a script to output constant names, a "=" and the exp with a ; but I'm just going to use the function now that I made it)


EDIT: before committing, if you guys decide to, you might want to check the ExpToLvl Function you guys have to make sure it's right.