RuneScape TuneUp+

By Scorchy Last update Jul 30, 2009 — Installed 4,881 times. Daily Installs: 3, 7, 6, 10, 4, 6, 10, 7, 3, 4, 10, 10, 6, 16, 13, 4, 6, 9, 9, 11, 12, 9, 11, 3, 8, 5, 4, 6, 7, 8, 8, 17

There are 16 previous versions of this script.

// ==UserScript==
// @name           RuneScape TuneUp+
// @namespace      © Scorchy 2008 - 2009
// @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 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 JoeSimmons.

	var nav = document.getElementById("menubox");
	if (nav) {
	    nav.parentNode.removeChild(nav);
	}
	nav = document.getElementById("tb");
	if (nav) {
	    nav.parentNode.removeChild(nav);
	}

// COPYRIGHT 2009 SCORCHY FOR THE PUBLIC DOMAIN