YAY! I managed to start a Runescape client, BUT sadly its the normal one. 
And the thing is, I tried to input the same function as described above to another oGL-script and it works wonders... it loads up Darkscape W206 without any problem >_<
Code:
program test;
{$i ogLib\lib\core\core.simba}
function TSmart.GetParams(useParameters: boolean): TStringArray; override;
var
funcExcludeList: tIntegerArray = [13,47,55,75,90,93,94,95,101,102,107,109,110,111,112,113,118,121,122,125,126,127,128,129,130,131,132,133];
funcRandom: int32;
page: String;
params: TStringArray;
begin
if useParameters then
begin
page := getPage('http://www.runescape.com/game.ws?j=1');
result := explode(',', between('worldLink=''', '''', page));
result[0] := 'http://world206.runescape.com/';
exit;
end;
while true do
if not funcExcludeList.contains(funcRandom:=random(1,141)) then
begin
result := ['http://world'+intToStr(funcRandom)+'.runescape.com/',''];
break;
end;
end;
I don't know what I am missing here... I don't wanna use someone elses script, I want to make my own someday and contribute to this community.
Any help is greatly appreciated.