RuneScape TuneUp+

By Scorchy Last update Jan 18, 2010 — Installed 5,565 times. Daily Installs: 3, 9, 8, 5, 4, 2, 7, 7, 10, 4, 11, 13, 16, 13, 14, 18, 8, 7, 12, 14, 25, 12, 10, 17, 10, 8, 13, 10, 12, 10, 15, 11

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