//I think there are 169 worlds, oh wel
int world = new Random().nextInt(169);
//Oops!
if(world == 0)
world = 1;
WebAppletLoader loader = new WebAppletLoader(
"http://world"+world+".runescape.com/,j0");
loader.load();
//Return the loaded applet
return loader.newApplet();
}
});
}