View Single Post
  #1  
Old 08-06-2008, 01:44 PM
matto matto is offline
Ezudian
 
Join Date: Jul 2008
Posts: 211
Reputation: 102
matto will become famous soon enoughmatto will become famous soon enough
Runescape Full Screen In F2P + No Ads!!!

I did not create/find this I found it on sythe:

[hide]
Quote:
Originally Posted by Scorchy View Post
Fullscreen for F2P Players! (RMV ADS!)
by Scorchy!

Hey guys, and thanks for reading this. I know your thinking, first post, suspicious, but hey, i'm here for good intentions.
There will be NO need to download any strafe or untrusted web content in this guide. Let's get started:

With the new update of resizable windows for all players, you can now get wide screens for free-players!
But wait, there is that annoying advert box that takes up room..
Well have no fear F2P'ers, all you have to do is follow these few steps!
Here is a way to get the Members' Exclusive FullScreen for Free worlds!



First of all, you will need to get Mozilla Firefox, the most trusted web-browser on the Internet.
Over 6 million users use it, and it is the safest and fastest internet browser there is.



Once you've done that, you will need to get a mozilla firefox add-on extension: Greasemonkey.
Greasemonkey is developed by Mozilla, the creators of Firefox SO IT IS COMPLETELY SAFE!

What greasemonkey does is that it lets users edit web pages using javascript add-ons.

>> DOWNLOAD Greasemonkey HERE. <<

Once you've got Greasemonkey, you have to download my JavaScript. THIS IS 100% SAFE! Don't worry one bit.

>> Download Greasemonkey JavaScript here. <<

On UserScripts.org, you will see my script menu. Simply click the 'Install this Script' button and a Greasemonkey menu will pop up. Click 'Install'. THis should only take a second.



Once that's completed, the Greasemonkey little icon should appear to say "This script has succesfully installed".



Your done! Now go to RuneScape, high detail, F2P world, and now there shouldn't be any advert box ontop! Well done, you've got fullscreen!

If you want the screen to go completely fullscreen, all you have to do is go to
"View -> Fullscreen (F11)" and you should have a completely fullscreen!


If you wish to uninstall my script or manage other scripts you've downloaded,
go to "Tools -> Greasemonkey -> Manage User Scripts" and you can uninstall user scripts there.

Thanks, and enjoy RuneScape in FullScreen for ALL F2P Worlds!

PLEASE COMMENT!

_______________________________________

FAQ:

Q: I downloaded everything you told me to, but the advert box is still there!
A: Maybe you accidently disabled Greasemonkey. Simply go to Tools -> Greasemonkey -> Enabled. Make sure Enabled is ticked!

A: Make sure you have everything upto date.
To Update Mozilla FireFox: Go to "Help -> Check for Updates"
To Update Greasemonkey: Go to "Tools -> Add-Ons -> Extensions -> Find Updates

Q: Is this legal?
A: Yes and No. No in terms that it directly violates Jagex RuneScape rules. Yes as it is our web!

Q: I don't like this, how do I uninstall Greasemonkey and Firefox?
A: All you gotta to is go to 'Tools -> Add-ons -> *select extension* -> Uninstall'. This will uninstall Greasemonkey.
A: To uninstall Mozilla, go to 'Start -> Control Panel -> Add/Remove Programs (or Uninstall a Program for Vista users) and select Firefox.

Q: How can I trust you? And that JavaScript File?
A: Well, this may be my first post, and if you wish to do create your own script, be my guest.
To Create your own script: Anywhere on your computer, make a new Notepad document. Copy the contents below in the code box and save the file as "something.js" the js at the end is VERY important! If you don't do that, the script wont work. Make sure you save it as *All Files*. Now go to userscripts.org and create an account. Upload your script and install it. there you have it.

Please note that you MUST NOT EDIT THE FOLLOWING!
The following is protected by U.S and International Copyright Laws!


The following is a copy of the 'Open Source' code. IT IS NOT THE FULL
VERSION OF THE CODE!
You may copy and use this, and refer to this under the condition that the owner is fully credited.
SELLING AND MODIFICATION OF THIS CODE IS STRICLY PROHIBITED!
Open Source Law CODE:1403 apply!



Click to visit Liscense!

Code:
// ==UserScript==
// @name           Full Screen RS F2P! (Open Source Vr. 1.3)
// @namespace      © Scorchy 2008 - Creative Commons Copyrights Apply!
// @description    Removes the RuneScape Navigation Bar and Ad-Box!
// @include        *http://world*.runescape.com/*
// ==/UserScript==

var currentpage = window.location.href;

if(currentpage.indexOf("runescape.com/p") != -1 || currentpage.indexOf("runescape.com/l") != -1){

	var nav = document.getElementById("menubox");
	if (nav) {
	    nav.parentNode.removeChild(nav);
	}
	nav = document.getElementById("tb");
	if (nav) {
	    nav.parentNode.removeChild(nav);
	}
}
(Work is under a Creative Commons Copyright Distribution Liscense)
___________________________________________

Script Version History: (Last Updated: 06/8/0


1.3 - Added anti-ad preloader. Stops ad's running in the background to enhance performance.
1.2 - Added better description and tweaked 'include url' to include ALL worlds.
1.1 - Fixed 'include url' to world*.runescape.com from *.runescape.com - credits to JoeSimmons
1.0 - Released
[/hide]