There are 17 previous versions of this script.
// ==UserScript==
// @name RuneScape TuneUp+
// @namespace © Scorchy 2008 - 2010
// @description Removes the RuneScape Navigation Bar, Video Advert and Top Advertisement Box in F2P Worlds.
// @include *http://world*.runescape.com/*
// ==/UserScript==
//START: Video Ad-Skip - Copyright user:JoeSimmons.
function checkForAd() {
if(i>=300) {
clearInterval(intv);
}
else if(unsafeWindow.showingVideoAd()) {
unsafeWindow.hideVideoAd();
clearInterval(intv);
}
i++;
}
var intv, i; i=0; intv = setInterval(checkForAd, 1000);
//END: Video Ad-Skip - Copyright user:JoeSimmons.
//START: REMOVE ADBAR+NAVBAR - Copyright user:Scorchy
var nav = document.getElementById("menubox");
if (nav) {
nav.parentNode.removeChild(nav);
}
nav = document.getElementById("tb");
if (nav) {
nav.parentNode.removeChild(nav);
}
// COPYRIGHT 2010 SCORCHY FOR THE PUBLIC DOMAIN
