SCAR Code:
{*******************************************************************************
function CurrentWorld: Integer;
By: Cheesehunk, Ron and fixed by ZephyrsFury
Description: Returns the current world you are on.
*******************************************************************************}
function CurrentWorld: Integer;
var
TextX, TextY: Integer;
begin
if (GetCurrentTab <> 8) then
begin
GameTab(8);
Wait(50 + Random(50));
end;
if (IsTextInAreaEx(634, 208, 723, 224, TextX, TextY, 'RuneSca', 0, SmallChars, False, False, 0, 0, -1)) then
begin
try
Result := StrToInt(Trim(GetTextAtEx(TextX + 65, TextY, 0, SmallChars, True,
False, 0, 0, -1, 3, False, tr_AllChars)));
except
Result := -1;
WriteLn('Could not get Current World.');
end;
end else
begin
Result := -1;
WriteLn('Could not get Current World.');
end;
end;
Yup; you are stupid.
Haha; jokes. It was in GameTab.scar. 
Nava2