Use templates better to remove a ton of code duplication (#254)

* Fix broken links in update posts

They were using relative links still which became invalid by moving
directories. It's better to link stuff absolutely anyway.

* Remove unused 'secure' registration and login pages

* Remove obsolete parse.py

* Use templates better to remove a ton of code duplication

Where it made sense I converted HTML pages to Markdown to ease writing
and discourage custom styling as much as possible. These pages can still
use custom HTML when necessary, and some do, but they are easier to read
and understand now.
This commit is contained in:
Bart Ribbers 2024-06-02 11:15:26 +02:00 committed by GitHub
parent cd01043b69
commit 4eda43f39b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
117 changed files with 4898 additions and 12289 deletions

148
404.html
View File

@ -3,101 +3,65 @@ layout: guide
tag: 404
title: 404 - Page Not Found
---
<link href="/site/css/news-2.css" rel="stylesheet">
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">News</h1>
</div>
</div>
</div>
<div class="section">
<div class="article">
<div class="topshadow">
<div class="bottombordershad">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottomleftshad">
<div class="bottomrightshad">
<div class="pagepad">
<div class="centre" id="newsitemMenu">
<span class="newsNavcat"><img src="/site/img/news/mini_all_categories.gif" alt="">&nbsp;<a href="/" class="white">Download Game</a></span>
<span class="newsNavcat"><img src="/site/img/news/mini_game_updates.gif" alt="">&nbsp;<a href="/services/m=news/archives/" class="white">News Posts</a></span>
<span class="newsNavcat"><img src="/site/img/news/mini_customer_support.gif" alt="">&nbsp;<a href="https://discord.gg/43YPGND" class="white">Discord Community</a></span><br>
<hr>
</div>
<div id="newsTitle">
<img class="imiddle" border="0" width="30" height="15" hspace="0" vspace="0" alt="" title="" src="/site/img/news/blank.gif">
&nbsp;
<b>404 - Page Not Found</b>
&nbsp;
<a href="/">
<img class="imiddle" border="0" width="30" height="15" hspace="0" vspace="0" alt="Next" title="Next" src="/site/img/news/arrow_forward.gif">
</a>
</div>
<div class="newsJustify">
<p>
You've followed a link we didn't code yet!
Head back to the
<a href="/">Main Page</a>.
</p>
<p>
One day a developer came along and gave us
this website then disappeared into the
mist.
</p>
<div class="centre" id="newsitemMenu">
<span class="newsNavcat"><img src="/site/img/news/mini_all_categories.gif" alt="">&nbsp;<a href="/" class="white">Download Game</a></span>
<span class="newsNavcat"><img src="/site/img/news/mini_game_updates.gif" alt="">&nbsp;<a href="/services/m=news/archives/" class="white">News Posts</a></span>
<span class="newsNavcat"><img src="/site/img/news/mini_customer_support.gif" alt="">&nbsp;<a href="https://discord.gg/43YPGND" class="white">Discord Community</a></span><br>
<hr>
</div>
<div id="newsTitle">
<img class="imiddle" border="0" width="30" height="15" hspace="0" vspace="0" alt="" title="" src="/site/img/news/blank.gif">
&nbsp;
<b>404 - Page Not Found</b>
&nbsp;
<a href="/">
<img class="imiddle" border="0" width="30" height="15" hspace="0" vspace="0" alt="Next" title="Next" src="/site/img/news/arrow_forward.gif">
</a>
</div>
<div class="newsJustify">
<p>
You've followed a link we didn't code yet!
Head back to the
<a href="/">Main Page</a>.
</p>
<p>
Another developer came and cleaned it up,
making the website functional and
navigationable for the 2009 emulation's
purposes - but links are missing and
broken all over the place!
</p>
<p>
One day a developer came along and gave us
this website then disappeared into the
mist.
</p>
<p>
So where does that leave us (and you?) -
Well, if you're just here to play the
game, head to our main page and hop on! If
you want to help fix our little problem,
read on!
</p>
<p>
Another developer came and cleaned it up,
making the website functional and
navigationable for the 2009 emulation's
purposes - but links are missing and
broken all over the place!
</p>
<p>
We actually have all the pages, they just
need their links fixed. If you're a
developer and want to help fix this, clone
our website repository from
<a href="https://github.com/2009scape/">GitHub</a>
and open title.html - you'll notice
something a little special, but more
importantly, you'll notice all the links
work ;). We need your help making
index.html link to all the right places!
</p>
<p>
So where does that leave us (and you?) -
Well, if you're just here to play the
game, head to our main page and hop on! If
you want to help fix our little problem,
read on!
</p>
<p>
<b><i>Red Bracket<br>2009scape Content
Developer</i></b>
</p>
</div>
<div class="clear"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br class="clear">
<p>
We actually have all the pages, they just
need their links fixed. If you're a
developer and want to help fix this, clone
our website repository from
<a href="https://github.com/2009scape/">GitHub</a>
and open title.html - you'll notice
something a little special, but more
importantly, you'll notice all the links
work ;). We need your help making
index.html link to all the right places!
</p>
<p>
<b><i>Red Bracket<br>2009scape Content Developer</i></b>
</p>
</div>

View File

@ -8,7 +8,7 @@
<span class="ts">
{% elsif include.content == "guide" and crumbs[2] == "game_guide" or crumbs[2] == "rules" %}
<span class="ts">
{% elsif include.content == "community" and crumbs[2] == "community" or crumbs[2] == "m=hiscore" %}
{% elsif include.content == "community" and crumbs[2] == "community" or crumbs[2] == "m=hiscore" or crumbs[1] == "site" and crumbs[2] == "archives" %}
<span class="ts">
{% elsif include.content == "help" and crumbs[2] == "help" %}
<span class="ts">

View File

@ -1,20 +1,20 @@
<div id="breadcrumbs">
<b>Location: </b>
{% assign crumbs = page.url | remove:'/index.html' | split: '/' %}
<a href="/">Home</a>
{% for crumb in crumbs offset: 1 %}
{% if forloop.last %}
> {{ page.title }}
<!-- add more strings here to remove them from breadcrumbs -->
{% elsif crumb == "services" %}
{% elsif crumb == "site" %}
{% elsif crumb == "rules" %}
{% elsif crumb == "terms" %}
{% elsif crumb == "privacy" %}
{% elsif crumb contains "=" %}
{% elsif crumb contains "_" %}
{% else %}
> <a href="{% assign crumb_limit = forloop.index | plus: 1 %}{% for crumb in crumbs limit: crumb_limit %}{{ crumb | append: '/' | replace:'without-plugin/','without-plugins/' }}{% endfor %}">{{ crumb | replace:'-',' ' | remove:'.html' | capitalize }}</a>
{% endif %}
{% endfor %}
<b>Location: </b>
{% assign crumbs = page.url | remove:'/index.html' | split: '/' %}
<a href="/">Home</a>
{% for crumb in crumbs offset: 1 %}
{% if forloop.last %}
> {{ page.title }}
<!-- add more strings here to remove them from breadcrumbs -->
{% elsif crumb == "services" %}
{% elsif crumb == "site" %}
{% elsif crumb == "rules" %}
{% elsif crumb == "terms" %}
{% elsif crumb == "privacy" %}
{% elsif crumb contains "=" %}
{% elsif crumb contains "_" %}
{% else %}
> <a href="{% assign crumb_limit = forloop.index | plus: 1 %}{% for crumb in crumbs limit: crumb_limit %}{{ crumb | append: '/' | replace:'without-plugin/','without-plugins/' }}{% endfor %}">{{ crumb | replace:'-',' ' | remove:'.html' | capitalize }}</a>
{% endif %}
{% endfor %}
</div>

View File

@ -3,8 +3,8 @@
<div class="footerdesc">
Copyright &copy; 2023 under AGPL. <strong>2009Scape is not affiliated with RuneScape or Jagex
Ltd.</strong><br />
Use of our Game's source code is subject to our <a href="/site/terms/terms.html">Terms &amp;
Conditions</a> and <a href="/site/privacy/privacy.html">Privacy Policy</a>.<br />
Use of our Game's source code is subject to our <a href="/site/terms">Terms &amp;
Conditions</a> and <a href="/site/privacy">Privacy Policy</a>.<br />
</div>
<a class="jagexlink" href="/">
<img src="/site/2009scape-resources/img/branding/logo-footer-dark.webp" width="110" height="33" alt="2009Scape Logo" />

View File

@ -0,0 +1,8 @@
<p><b>Further Help</b></p>
<p>Need more help? Come chat with us!</p>
<div class="article_theme_1">
<ul class="further">
<li><a href="https://discord.gg/43YPGND">Discord</a></li>
<li><a href="https://forum.2009scape.org/">Forums</a></li>
</ul>
</div>

27
_includes/head.html Normal file
View File

@ -0,0 +1,27 @@
<head>
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta http-equiv="content-type" content="text/html;charset=ISO-8859-1">
<meta name="viewport" content="width=1024, initial-scale=1.0">
<meta http-equiv="Content-Language" content="en,English">
<meta name="keywords" content="RSPS, Open Source, 2009scape, Osrs, Oldschool Runescape, Runescape, zezima">
<meta name="description"
content="2009Scape - Play Runescape from 2009. Multiplayer and free forever.">
<!--2010 GLOBAL CSS-->
<style type="text/css">
/*\*/
@import url(/site/css/default/global-30.css);
/**/
</style>
<style type="text/css">
/*\*/
@import url(/site/css/default/home-28.css);
/**/
</style>
<!--2009SCAPE CUSTOM CSS-->
<link rel="stylesheet" href="/site/2009scape-resources/css/2009scape.css">
<link rel="stylesheet" href="/site/css/kbase-6.css">
<link rel="stylesheet" href="/site/css/news-2.css">
<link rel="stylesheet" href="/site/css/hof.css" />
<title>{{ site.title }} - {{ page.title }}</title>
<link rel="alternate" type="application/rss+xml" href="{{ site.url }}/feed.xml">
</head>

23
_includes/header.html Normal file
View File

@ -0,0 +1,23 @@
<div id="head">
<div id="headBg">
<div id="headOrangeTop"></div>
<img id="banner" src="" alt="RuneScape" width="766" height="143">
<!--SCRIPT: MONTHLY BANNER-->
<script type="text/javascript">
document.getElementById("banner").src = `/site/2009scape-resources/img/banners/${new Date().getMonth() + 1}.webp`;
</script>
<div id="headImage"><a href="/" id="logo_select"></a>
<div id="player_no">
<span class="brandingColor">2009Scape</span>: a free &amp; open-source remake of 2009 era RuneScape
</div>
</div>
<div id="headOrangeBottom"></div>
<!-- End of Banner -->
<div id="menubox">
{% include menu.html %}
</div>
</div>
</div>

4
_includes/image.html Normal file
View File

@ -0,0 +1,4 @@
<figure>
<img src=" {{ include.url }}" alt="{{ include.description }}" {{ include.style }} />
<figcaption>{{ include.description }}</figcaption>
</figure>

View File

@ -1,18 +1,22 @@
<ul id="menus">
<li class="top"><a href="/index.html" id="home" class="tl">{% include active-menu.html content="home" %}Home</span></a>
<li class="top"><a id="play" class="tl" href="https://cdn.2009scape.org/wiki/doku.php?id=start"><span
class="tl">Wiki</span></a>
<ul>
<li><a href="/services/m=data/drop-table/" class="fly"><span>Drop Tables & More</span></a></li>
</ul>
</li>
<!--class ts is active tl is inactive -->
<li class="top"><a id="play" class="tl" href="/updates/">{% include active-menu.html content="updates" %}Updates</span></a>
</li>
<li class="top">
<a href="/index.html" id="home" class="tl">{% include active-menu.html content="home" %}Home</span></a>
<li class="top">
<a id="play" class="tl" href="https://cdn.2009scape.org/wiki/doku.php?id=start">
<span class="tl">Wiki</span>
</a>
<ul>
<li><a href="/services/m=data/drop-table/" class="fly"><span>Drop Tables & More</span></a></li>
</ul>
</li>
<!--class ts is active tl is inactive -->
<li class="top">
<a id="play" class="tl" href="/updates/">{% include active-menu.html content="updates" %}Updates</span></a>
</li>
</li>
<li class="top"><a id="guide" class="tl" href="/site/game_guide/">{% include active-menu.html content="guide" %}Game
Guide</span></a>
<li class="top">
<a id="guide" class="tl" href="/site/game_guide/">{% include active-menu.html content="guide" %}Game Guide</span></a>
<ul>
<li><a href="/site/game_guide/" class="fly"><span>Browse the Game Guide</span></a></li>
<li><a href="/site/game_guide/credits.html" class="fly"><span>The Credit System</span></a>
@ -37,22 +41,16 @@
<li class="top"><a id="help" class="tl" href="/site/help/">{% include active-menu.html content="help" %}Help</span></a>
<ul>
<li><a href="https://forum.2009scape.org/viewtopic.php?t=2-faq-check-here-first" class="fly"><span>Frequently Asked Questions</span></a></li>
<li><a href="https://gitlab.com/2009scape/2009scape/-/issues/new" class="fly"><span>Submit a Bug
Report</span></a> </li>
<li><a href="https://gitlab.com/2009scape/2009scape/-/issues/new" class="fly"><span>Submit a Bug Report</span></a></li>
</ul>
</li>
</ul>
</li>
<li class="top"><a id="login" class="tl" href="https://gitlab.com/2009scape" rel="noopener noreferrer"
target="_blank"><span class="tl">Source Code</span></a>
<ul>
<li>
<li><a href="https://gitlab.com/2009scape/2009scape" rel="noopener noreferrer" target="_blank"
class="fly"><span>Game Source Code</span></a></li>
<li><a href="https://github.com/2009scape/2009Scape.github.io" rel="noopener noreferrer" target="_blank"
class="fly"><span>Website Source Code</span></a>
</ul>
</li>
<li class="top">
<a id="login" class="tl" href="https://gitlab.com/2009scape" rel="noopener noreferrer" target="_blank"><span class="tl">Source Code</span></a>
<ul>
<li><a href="https://gitlab.com/2009scape/2009scape" rel="noopener noreferrer" target="_blank" class="fly"><span>Game Source Code</span></a></li>
<li><a href="https://github.com/2009scape/2009Scape.github.io" rel="noopener noreferrer" target="_blank" class="fly"><span>Website Source Code</span></a></li>
</ul>
</li>
</ul>
<br class="clear" />

View File

@ -0,0 +1,11 @@
<div class="brown_box" style="margin-bottom: 5px;">
<div class="inner_brown_box">
<div class="helptext">
<div class="helptitle">
<b>Important Information</b>
</div>
This entire website is getting a massive overhaul and this page will change.
If you need any help at all ask a staff member either on our <a href="https://discord.gg/43YPGND">Discord</a> or if you do not prefer discord check out our <a href="https://forum.2009scape.org/">Forums</a>!
</div>
</div>
</div>

61
_layouts/base.html Normal file
View File

@ -0,0 +1,61 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<meta http-equiv="content-type" content="text/html;charset=ISO-8859-1">
<meta name="viewport" content="width=1024, initial-scale=1.0">
<head>
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Language" content="en,English">
<meta name="keywords" content="RSPS, Open Source, 2009scape, Osrs, Oldschool Runescape, Runescape, zezima">
<meta name="description"
content="2009Scape - Play Runescape from 2009. Multiplayer and free forever.">
<!--2010 GLOBAL CSS-->
<style type="text/css">
/*\*/
@import url(/site/css/default/global-30.css);
/**/
</style>
<style type="text/css">
/*\*/
@import url(/site/css/default/home-28.css);
/**/
</style>
<!--2009SCAPE CUSTOM CSS-->
<link rel="stylesheet" href="/site/2009scape-resources/css/2009scape.css">
<title>{{ site.title }} - {{ page.title }}</title>
<link rel="alternate" type="application/rss+xml" href="{{ site.url }}/feed.xml">
</head>
<body id="navhome" class="bodyBackground">
<a name="top"></a>
<div id="scroll">
<div id="head">
<div id="headBg">
<div id="headOrangeTop"></div>
<img id="banner" src="" alt="RuneScape" width="766" height="143">
<!--SCRIPT: MONTHLY BANNER-->
<script type="text/javascript">
document.getElementById("banner").src = `/site/2009scape-resources/img/banners/${new Date().getMonth() + 1}.webp`;
</script>
<div id="headImage"><a href="/" id="logo_select"></a>
<div id="player_no"><span class="brandingColor">2009Scape</span>: a free &amp; open-source remake of 2009 era RuneScape</div>
</div>
<div id="headOrangeBottom"></div>
<!-- End of Banner -->
<div id="menubox">
{% include menu.html %}
</div>
</div>
</div>
{{content}}
{% include footer.html %}
</div>
</body>
<meta http-equiv="content-type" content="text/html;charset=ISO-8859-1">
</html>

38
_layouts/community.html Normal file
View File

@ -0,0 +1,38 @@
<!DOCTYPE html>
<html>
{% include head.html %}
<style>
.section {
padding: 0px !important;
}
</style>
<body id="navhome" class="bodyBackground">
<div id="scroll">
{% include header.html %}
<div class="navigation">
<div class="location">
{% include breadcrumbs.html %}
</div>
</div>
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">{{ page.title }}</h1>
</div>
</div>
</div>
<div class="section">
{{ content }}
</div>
</div>
</div>
{% include footer.html %}
</div>
</body>
</html>

View File

@ -1,61 +1,26 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!DOCTYPE html>
<html>
<meta http-equiv="content-type" content="text/html;charset=ISO-8859-1">
<meta name="viewport" content="width=1024, initial-scale=1.0">
<head>
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Language" content="en,English">
<meta name="keywords" content="RSPS, Open Source, 2009scape, Osrs, Oldschool Runescape, Runescape, zezima">
<meta name="description"
content="2009Scape - Play Runescape from 2009. Multiplayer and free forever.">
<!--2010 GLOBAL CSS-->
<style type="text/css">
/*\*/
@import url(/site/css/default/global-30.css);
/**/
</style>
<style type="text/css">
/*\*/
@import url(/site/css/default/home-28.css);
/**/
</style>
<!--2009SCAPE CUSTOM CSS-->
<link rel="stylesheet" href="/site/2009scape-resources/css/2009scape.css">
<title>{{ site.title }} - {{ page.title }}</title>
<link rel="alternate" type="application/rss+xml" href="{{ site.url }}/feed.xml">
</head>
{% include head.html %}
<body id="navhome" class="bodyBackground">
<a name="top"></a>
<div id="scroll">
<div id="head">
<div id="headBg">
<div id="headOrangeTop"></div>
<img id="banner" src="" alt="RuneScape" width="766" height="143">
{% include header.html %}
<!--SCRIPT: MONTHLY BANNER-->
<script type="text/javascript">
document.getElementById("banner").src = `/site/2009scape-resources/img/banners/${new Date().getMonth() + 1}.webp`;
</script>
<div id="headImage"><a href="/" id="logo_select"></a>
<div id="player_no"><span class="brandingColor">2009Scape</span>: a free &amp; open-source remake of 2009 era RuneScape</div>
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">{{ page.title }}</h1>
</div>
</div>
</div>
<div id="headOrangeBottom"></div>
<!-- End of Banner -->
<div id="menubox">
{% include menu.html %}
<div class="section">
{{ content }}
</div>
</div>
</div>
{{content}}
{% include footer.html %}
</div>
</body>
<meta http-equiv="content-type" content="text/html;charset=ISO-8859-1">
</html>
</html>

View File

@ -134,9 +134,9 @@ en">
</p>
<p>
Use of our Game's source code is subject to our
<a href="/site/terms/terms.html">Terms &amp; Conditions</a>
<a href="/site/terms">Terms &amp; Conditions</a>
and
<a href="/site/privacy/privacy.html">Privacy Policy</a>.<br />
<a href="/site/privacy">Privacy Policy</a>.<br />
</p>
</div>
<div id="jagex">

View File

@ -1,69 +1,18 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!DOCTYPE html>
<html>
<meta http-equiv="content-type" content="text/html;charset=ISO-8859-1">
<meta name="viewport" content="width=1024, initial-scale=1.0">
<head>
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Language" content="en,English">
<meta name="keywords" content="RSPS, Open Source, 2009scape, Osrs, Oldschool Runescape, Runescape, zezima">
<meta name="description"
content="2009Scape - Play Runescape from 2009. Multiplayer and free forever.">
<!--2010 GLOBAL CSS-->
<style type="text/css">
/*\*/
@import url(/site/css/default/global-30.css);
/**/
</style>
<!--Hall of Fame CSS-->
<style type="text/css">
/*\*/
@import url(/site/css/hof.css);
/**/
</style>
{% include head.html %}
<style type="text/css">
/*\*/
@import url(/site/css/default/home-28.css);
/**/
</style>
<!-- Formatting to wrap -->
<style type="text/css">
.section {
padding: 0px !important;
}
</style>
<!--2009SCAPE CUSTOM CSS-->
<link rel="stylesheet" href="/site/css/kbase-6.css">
<title>{{ site.title }} - {{ page.title }}</title>
</head>
<style>
.section {
padding: 0px !important;
}
</style>
<body id="navhome" class="bodyBackground">
<a name="top"></a>
<div id="scroll">
<div id="head">
<div id="headBg">
<div id="headOrangeTop"></div>
<img id="banner" src="" alt="RuneScape" width="766" height="143">
<!--SCRIPT: MONTHLY BANNER-->
<script type="text/javascript">
document.getElementById("banner").src = `/site/2009scape-resources/img/banners/${new Date().getMonth() + 1}.webp`;
</script>
<div id="headImage"><a href="/" id="logo_select"></a>
<div id="player_no"><span class="brandingColor">2009Scape</span>: a free &amp; open-source remake of 2009 era
RuneScape</div>
</div>
<div id="headOrangeBottom"></div>
<!-- End of Banner -->
<div id="menubox">
{% include menu.html %}
</div>
</div>
</div>
{% include header.html %}
<div class="navigation">
<div class="location">
@ -71,11 +20,44 @@
</div>
</div>
{{content}}
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">{{ page.title }}</h1>
</div>
</div>
</div>
<div class="section">
<div class="article">
<div class="topshadow">
<div class="bottombordershad">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottomleftshad">
<div class="bottomrightshad">
<div class="pagepad">
<br />
{{ content }}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{% include footer.html %}
</div>
</body>
<meta http-equiv="content-type" content="text/html;charset=ISO-8859-1">
</html>

View File

@ -1,176 +1,127 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!DOCTYPE html>
<html>
<meta http-equiv="content-type" content="text/html;charset=ISO-8859-1">
<meta name="viewport" content="width=1024, initial-scale=1.0">
<head>
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Language" content="en,English">
<meta name="keywords" content="RSPS, Open Source, 2009scape, Osrs, Oldschool Runescape, Runescape, zezima">
<meta name="description"
content="2009Scape - Play Runescape from 2009. Multiplayer and free forever.">
<!--2010 GLOBAL CSS-->
<style type="text/css">
/*\*/
@import url(/site/css/default/global-30.css);
/**/
</style>
<style type="text/css">
/*\*/
@import url(/site/css/default/home-28.css);
/**/
</style>
<!--2009SCAPE CUSTOM CSS-->
<link rel="stylesheet" href="/site/2009scape-resources/css/2009scape.css">
<title>{{ site.title }} - {{ page.title }}</title>
<link rel="alternate" type="application/rss+xml" href="{{ site.url }}/feed.xml" />
</head>
{% include head.html %}
<link rel="stylesheet" href="/site/css/forum3-7.css">
<body id="navhome" class="bodyBackground">
<a name="top"></a>
<div id="scroll">
<div id="head">
<div id="headBg">
<div id="headOrangeTop"></div>
<img id="banner" src="" alt="RuneScape" width="766" height="143">
{% include header.html %}
<!--SCRIPT: MONTHLY BANNER-->
<script type="text/javascript">
document.getElementById("banner").src = `/site/2009scape-resources/img/banners/${new Date().getMonth() + 1}.webp`;
</script>
<div id="headImage"><a href="/" id="logo_select"></a>
<div id="player_no"><span class="brandingColor">2009Scape</span>: a free &amp; open-source remake of 2009 era
RuneScape</div>
</div>
<div id="headOrangeBottom"></div>
<!-- End of Banner -->
<div id="menubox">
{% include menu.html %}
</div>
</div>
</div>
<link rel="stylesheet" href="/site/css/forum3-7.css">
<div class="navigation">
<div class="location">
{% include breadcrumbs.html %}
</div>
</div>
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">{{ page.date | date: '%d-%B-%Y' }}</h1>
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">{{ page.date | date: '%d-%B-%Y' }}</h1>
</div>
</div>
</div>
</div>
<div class="section">
<div class="brown_background">
</div>
<div id="contrast_panel">
<div id="infopane">
<div class="title thrd">{{ page.title }}
</div>
<div class="section">
<div class="brown_background">
</div>
<div class="phold" id="nocontrols"></div>
<div class="actions" id="top">
<table>
<tbody>
<tr>
<td class="commands center">
<ul class="flat first-child">
<li>
<a href="/services/m=news/archives/">
<img alt="" src="/site/img/forum/cmdicons/backtoforum.gif"> Up to Legacy Update List
</a>
</li>
<li>
<a href="">
<img alt="" src="/site/img/forum/cmdicons/refresh.gif">
Refresh
</a>
</li>
</ul>
</td>
</tr>
<tr>
</tr>
</tbody>
</table>
</div>
<div class="" id="contentmsg">
<a class="msgplace" name="0"></a>
<table cellspacing="0" class="message jmod">
<tbody>
<tr>
<td class="leftpanel J-Mod">
<div class="msgcreator uname">
{{ page.authors }}
</div>
<img alt="" class="avatar" src="/services/m=avatar-rs/{{ page.avatar }}">
<div class="modtype">{{ page.modtype }}</div>
<div class="msgcommands">
<br>
</div>
</td>
<td class="rightpanel">
<div class="msgtime">
{{ page.date | date: '%d-%B-%Y' }}
<div id="contrast_panel">
<div id="infopane">
<div class="title thrd">{{ page.title }}</div>
</div>
<div class="phold" id="nocontrols"></div>
<div class="actions" id="top">
<table>
<tbody>
<tr>
<td class="commands center">
<ul class="flat first-child">
<li>
<a href="/services/m=news/archives/">
<img alt="" src="/site/img/forum/cmdicons/backtoforum.gif">Up to Legacy Update List
</a>
</li>
<li>
<a href="">
<img alt="" src="/site/img/forum/cmdicons/refresh.gif">Refresh
</a>
</li>
</ul>
</td>
</tr>
<tr>
</tr>
</tbody>
</table>
</div>
<div class="" id="contentmsg">
<a class="msgplace" name="0"></a>
<table cellspacing="0" class="message jmod">
<tbody>
<tr>
<td class="leftpanel J-Mod">
<div class="msgcreator uname">
{{ page.authors }}
</div>
<img alt="" class="avatar" src="/services/m=avatar-rs/{{ page.avatar }}">
<div class="modtype">{{ page.modtype }}</div>
<div class="msgcommands">
<br>
</div>
<div class="msgcontents">
{{ content }}
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div class="actions" id="bottom">
<table>
<tbody>
<tr>
<td class="commands center">
<ul class="flat first-child">
<li>
<a href="/services/m=news/archives/">
<img alt="" src="/site/img/forum/cmdicons/backtoforum.gif"> Up to Legacy
Update List
</a>
</li>
<li>
<a href="">
<img alt="" src="/site/img/forum/cmdicons/refresh.gif">
Refresh
</a>
</li>
</ul>
</td>
</tr>
<tr>
</tr>
</tbody>
</table>
</div>
</td>
<td class="rightpanel">
<div class="msgtime">
{{ page.date | date: '%d-%B-%Y' }}
<br>
</div>
<div class="msgcontents">
{{ content }}
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div class="actions" id="bottom">
<table>
<tbody>
<tr>
<td class="commands center">
<ul class="flat first-child">
<li>
<a href="/services/m=news/archives/">
<img alt="" src="/site/img/forum/cmdicons/backtoforum.gif"> Up to Legacy
Update List
</a>
</li>
<li>
<a href="">
<img alt="" src="/site/img/forum/cmdicons/refresh.gif">
Refresh
</a>
</li>
</ul>
</td>
</tr>
<tr>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="navigation">
<div class="location">
{% include breadcrumbs.html %}
<div class="navigation">
<div class="location">
{% include breadcrumbs.html %}
</div>
</div>
</div>
{% include footer.html %}
</div>
</body>
<meta http-equiv="content-type" content="text/html;charset=ISO-8859-1">
</html>

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path fill="currentColor" d="M420.55,301.93a24,24,0,1,1,24-24,24,24,0,0,1-24,24m-265.1,0a24,24,0,1,1,24-24,24,24,0,0,1-24,24m273.7-144.48,47.94-83a10,10,0,1,0-17.27-10h0l-48.54,84.07a301.25,301.25,0,0,0-246.56,0L116.18,64.45a10,10,0,1,0-17.27,10h0l47.94,83C64.53,202.22,8.24,285.55,0,384H576c-8.24-98.45-64.54-181.78-146.85-226.55" />
</svg>

After

Width:  |  Height:  |  Size: 575 B

3
assets/images/linux.svg Normal file
View File

@ -0,0 +1,3 @@
<svg data-icon="linux" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
<path fill="currentColor" d="M196.1 123.6c-.2-1.4 1.9-2.3 3.2-2.9 1.7-.7 3.9-1 5.5-.1.4.2.8.7.6 1.1-.4 1.2-2.4 1-3.5 1.6-1 .5-1.8 1.7-3 1.7-1 .1-2.7-.4-2.8-1.4zm24.7-.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm214.7 310.2c-.5 8.2-6.5 13.8-13.9 18.3-14.9 9-37.3 15.8-50.9 32.2l-2.6-2.2 2.6 2.2c-14.2 16.9-31.7 26.6-48.3 27.9-16.5 1.3-32-6.3-40.3-23v-.1c-1.1-2.1-1.9-4.4-2.5-6.7-21.5 1.2-40.2-5.3-55.1-4.1-22 1.2-35.8 6.5-48.3 6.6-4.8 10.6-14.3 17.6-25.9 20.2-16 3.7-36.1 0-55.9-10.4l1.6-3-1.6 3c-18.5-9.8-42-8.9-59.3-12.5-8.7-1.8-16.3-5-20.1-12.3-3.7-7.3-3-17.3 2.2-31.7 1.7-5.1.4-12.7-.8-20.8-.6-3.9-1.2-7.9-1.2-11.8 0-4.3.7-8.5 2.8-12.4 4.5-8.5 11.8-12.1 18.5-14.5 6.7-2.4 12.8-4 17-8.3 5.2-5.5 10.1-14.4 16.6-20.2-2.6-17.2.2-35.4 6.2-53.3 12.6-37.9 39.2-74.2 58.1-96.7 16.1-22.9 20.8-41.3 22.5-64.7C158 103.4 132.4-.2 234.8 0c80.9.1 76.3 85.4 75.8 131.3-.3 30.1 16.3 50.5 33.4 72 15.2 18 35.1 44.3 46.5 74.4 9.3 24.6 12.9 51.8 3.7 79.1 1.4.5 2.8 1.2 4.1 2 1.4.8 2.7 1.8 4 2.9 6.6 5.6 8.7 14.3 10.5 22.4 1.9 8.1 3.6 15.7 7.2 19.7 11.1 12.4 15.9 21.5 15.5 29.7zM220.8 109.1c3.6.9 8.9 2.4 13 4.4-2.1-12.2 4.5-23.5 11.8-23 8.9.3 13.9 15.5 9.1 27.3-.8 1.9-2.8 3.4-3.9 4.6 6.7 2.3 11 4.1 12.6 4.9 7.9-9.5 10.8-26.2 4.3-40.4-9.8-21.4-34.2-21.8-44 .4-3.2 7.2-3.9 14.9-2.9 21.8zm-46.2 18.8c7.8-5.7 6.9-4.7 5.9-5.5-8-6.9-6.6-27.4 1.8-28.1 6.3-.5 10.8 10.7 9.6 19.6 3.1-2.1 6.7-3.6 10.2-4.6 1.7-19.3-9-33.5-19.1-33.5-18.9 0-24 37.5-8.4 52.1zm-9.4 20.9c1.5 4.9 6.1 10.5 14.7 15.3 7.8 4.6 12 11.5 20 15 2.6 1.1 5.7 1.9 9.6 2.1 18.4 1.1 27.1-11.3 38.2-14.9 11.7-3.7 20.1-11 22.7-18.1 3.2-8.5-2.1-14.7-10.5-18.2-11.3-4.9-16.3-5.2-22.6-9.3-10.3-6.6-18.8-8.9-25.9-8.9-14.4 0-23.2 9.8-27.9 14.2-.5.5-7.9 5.9-14.1 10.5-4.2 3.3-5.6 7.4-4.2 12.3zm-33.5 252.8L112.1 366c-6.8-9.2-13.8-14.8-21.9-16-7.7-1.2-12.6 1.4-17.7 6.9-4.8 5.1-8.8 12.3-14.3 18-7.8 6.5-9.3 6.2-19.6 9.9-6.3 2.2-11.3 4.6-14.8 11.3-2.7 5-2.1 12.2-.9 20 1.2 7.9 3 16.3.6 23.9v.2c-5 13.7-5 21.7-2.6 26.4 7.9 15.4 46.6 6.1 76.5 21.9 31.4 16.4 72.6 17.1 75.3-18 2.1-20.5-31.5-49-41-68.9zm153.9 35.8c3.2-11 6.3-21.3 6.8-29 .8-15.2 1.6-28.7 4.4-39.9 3.1-12.6 9.3-23.1 21.4-27.3 2.3-21.1 18.7-21.1 38.3-12.5 18.9 8.5 26 16 22.8 26.1 1 0 2-.1 4.2 0 5.2-16.9-14.3-28-30.7-34.8 2.9-12 2.4-24.1-.4-35.7-6-25.3-22.6-47.8-35.2-59-2.3-.1-2.1 1.9 2.6 6.5 11.6 10.7 37.1 49.2 23.3 84.9-3.9-1-7.6-1.5-10.9-1.4-5.3-29.1-17.5-53.2-23.6-64.6-11.5-21.4-29.5-65.3-37.2-95.7-4.5 6.4-12.4 11.9-22.3 15-4.7 1.5-9.7 5.5-15.9 9-13.9 8-30 8.8-42.4-1.2-4.5-3.6-8-7.6-12.6-10.3-1.6-.9-5.1-3.3-6.2-4.1-2 37.8-27.3 85.3-39.3 112.7-8.3 19.7-13.2 40.8-13.8 61.5-21.8-29.1-5.9-66.3 2.6-82.4 9.5-17.6 11-22.5 8.7-20.8-8.6 14-22 36.3-27.2 59.2-2.7 11.9-3.2 24 .3 35.2 3.5 11.2 11.1 21.5 24.6 29.9 0 0 24.8 14.3 38.3 32.5 7.4 10 9.7 18.7 7.4 24.9-2.5 6.7-9.6 8.9-16.7 8.9 4.8 6 10.3 13 14.4 19.6 37.6 25.7 82.2 15.7 114.3-7.2zM415 408.5c-10-11.3-7.2-33.1-17.1-41.6-6.9-6-13.6-5.4-22.6-5.1-7.7 8.8-25.8 19.6-38.4 16.3-11.5-2.9-18-16.3-18.8-29.5-.3.2-.7.3-1 .5-7.1 3.9-11.1 10.8-13.7 21.1-2.5 10.2-3.4 23.5-4.2 38.7-.7 11.8-6.2 26.4-9.9 40.6-3.5 13.2-5.8 25.2-1.1 36.3 7.2 14.5 19.5 20.4 33.7 19.3 14.2-1.1 30.4-9.8 43.6-25.5 22-26.6 62.3-29.7 63.2-46.5.3-5.1-3.1-13-13.7-24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4 3.9-3.4 5.9-6.3 3.1-6.6-2.8-.3-2.6 2.6-6 5.1-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2-10.4 0-18.7-4.8-24.9-9.7-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z" />
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

3
assets/images/macos.svg Normal file
View File

@ -0,0 +1,3 @@
<svg data-icon="apple" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
<path fill="currentColor" d="M247.2 137.6c-6.2 1.9-15.3 3.5-27.9 4.6 1.1-56.7 29.9-96.6 88-110.1 9.3 41.6-26.1 94.1-60.1 105.5zm121.3 72.7c6.4-9.4 16.6-19.9 30.6-31.7-22.3-27.6-48.1-44.3-85.1-44.3-35.4 0-65.2 18.2-87 18.2-18.5 0-51.9-16.1-84.5-16.1-69.6 0-106.5 68.1-106.5 139C36 354.2 95.7 480 156.2 480c23.8 0 45.2-18 73.5-18 29.3 0 52.8 17.2 80.3 17.2 46 0 88.6-77.5 102-119.7-46.8-14.3-84.4-90.2-43.5-149.2z" />
</svg>

After

Width:  |  Height:  |  Size: 516 B

View File

@ -0,0 +1,3 @@
<svg data-icon="windows" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
<path fill="currentColor" d="M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z" />
</svg>

After

Width:  |  Height:  |  Size: 271 B

View File

@ -1,220 +1,238 @@
---
layout: default
tag: home
title: A free & open-source remake of 2009 era RuneScape
layout: null
title: "A free & open-source remake of 2009 era RuneScape"
---
<div id="content">
<div id="left">
<!--MAIN BUTTON: LEFT (DISCORD)-->
<a href="https://forum.2009scape.org/" target="_blank" class="createbutton">
<img src="./site/2009scape-resources/img/buttons/btn-forums2.webp" alt="Join us on the forums"
width="268" height="151"/>
<span class="shim"></span>
</a>
<!--WEBSITE FEATURES-->
<div id="features">
<div class="narrowHeader"><img src="./site/2009scape-resources/img/titles/title-websitefeatures.webp"
width="162" height="12" alt="Website Features" />
<!DOCTYPE html>
<html>
{% include head.html %}
<body id="navhome" class="bodyBackground">
<div id="scroll">
{% include header.html %}
<div id="content">
<div id="left">
<!--MAIN BUTTON: LEFT (DISCORD)-->
<a href="https://forum.2009scape.org/" target="_blank" class="createbutton">
<img src="/site/2009scape-resources/img/buttons/btn-forums2.webp" alt="Join us on the forums" width="268" height="151"/>
<span class="shim"></span>
</a>
<!--WEBSITE FEATURES-->
<div id="features">
<div class="narrowHeader">
<img src="/site/2009scape-resources/img/titles/title-websitefeatures.webp" width="162" height="12" alt="Website Features" />
</div>
<div class="section">
<div class="feature"
style="background-image: url(/site/img/2009img/main/home/featured_feature_bg.webp)">
<a href="/site/game_guide/play.html">
<img src="/site/img/2009img/main/home/feature_kbsearch_icon.webp" width="57" height="57" alt="Getting Started" />
</a>
<div class="featureTitle">Getting Started</div>
<div class="featureDesc">
If you're new to 2009Scape, check out our <a href="/site/game_guide/play.html">Getting Started Guide</a>!
</div>
<div class="section">
<div class="feature"
style="background-image: url(./site/img/2009img/main/home/featured_feature_bg.webp)">
<a href="./site/game_guide/play.html"><img
src="./site/img/2009img/main/home/feature_kbsearch_icon.webp" width="57" height="57" alt="Getting Started" /></a>
<div class="featureTitle">Getting Started</div>
<div class="featureDesc">If you're new to 2009Scape, check out our <a
href="./site/game_guide/play.html">Getting Started Guide</a>!</div>
</div>
<div class="feature">
<a href="/services/m=hiscore/hiscores.html?world=2">
<img src="/site/img/2009img/main/home/feature_poll_icon.webp" width="57" height="57" alt="Hiscores" />
</a>
<div class="featureTitle">Community Hiscores</div>
<div class="featureDesc">
See who's on top &amp; check your skill levels! View the <a href="/services/m=hiscore/hiscores.html?world=2">Hiscores</a>.
</div>
</div>
<div class="feature">
<a href="https://gitlab.com/2009scape/2009scape/-/issues">
<img src="/site/2009scape-resources/img/icons/feature-bugreport.webp" width="57" height="57" alt="Report a Bug" />
</a>
<div class="featureTitle">Report a Bug</div>
<div class="featureDesc">
Found a bug in game? Send us a <a href="https://gitlab.com/2009scape/2009scape/-/issues" target="_blank">Bug report</a>!
</div>
</div>
<div class="feature">
<a href="/site/classicapplet/playclassic.html">
<img src="/site/2009scape-resources/img/icons/feature-openrsc.webp" width="57" height="57" alt="Open RuneScape Classic" />
</a>
<div class="featureTitle">OpenRSC</div>
<div class="featureDesc">
Experience RuneScape Classic in its original glory: <a href="/site/classicapplet/playclassic.html">OpenRSC</a>!
</div>
</div>
<div class="feature">
<a target="_blank" href="https://github.com/2009scape/2009Scape-mobile#readme">
<img src="/site/2009scape-resources/img/icons/aog_icon.jpeg" width="57" height="57" alt="AOG" />
</a>
<div class="featureTitle">2009Scape Mobile</div>
<div class="featureDesc">Enjoy our project on the go with the Android <a target="_blank" href="https://github.com/2009scape/2009Scape-mobile#readme"> mobile client!</a>
</div>
</div>
</div>
</div>
<!--GAME GUIDE-->
<div id=articles>
<div class=narrowHeader><IMG alt="Game Guide" src="/site/2009scape-resources/img/titles/title-gameguide.webp" width="162" height="12">
</div>
<div class=section>
<div class=articlesBody>
<div class=articlesTitle>
<!--When weekly article script is implemented, switch image to 'title-article-weekly.webp'-->
<img alt="Featured Article" src="/site/2009scape-resources/img/titles/title-article-featured.webp" width="164" height="9">
</div>
<div class=aowBody>
<div class=aowHeight>
<div class=aowImage><a href="https://discord.gg/YY7WSttN7H"><img alt="" src="/site/img/2009img/main/kbase/aow_icons/discord-promo.webp" width="249" height="87"></a></div>
<P class=aowTitle>Join us on Discord</P>
<P> 2009Scape has an active community on our Discord Server. Discuss the game, ask questions, or just hang out!
<a href="https://discord.gg/YY7WSttN7H">Join Now!</a>
</P>
</div>
<div class="feature">
<a href="./services/m=hiscore/hiscores.html?world=2"><img
src="./site/img/2009img/main/home/feature_poll_icon.webp" width="57" height="57" alt="Hiscores" /></a>
<div class="featureTitle">Community Hiscores</div>
<div class="featureDesc">See who's on top &amp; check your skill levels! View the <a
href="./services/m=hiscore/hiscores.html?world=2">Hiscores</a>.</div>
</div>
<div class="feature">
<a href="https://gitlab.com/2009scape/2009scape/-/issues"><img
src="./site/2009scape-resources/img/icons/feature-bugreport.webp" width="57" height="57" alt="Report a Bug" /></a>
<div class="featureTitle">Report a Bug</div>
<div class="featureDesc">Found a bug in game? Send us a <a href="https://gitlab.com/2009scape/2009scape/-/issues"
target="_blank">Bug report</a>!</div>
</div>
<div class="feature">
<a href="./site/classicapplet/playclassic.html"><img
src="./site/2009scape-resources/img/icons/feature-openrsc.webp" width="57" height="57" alt="Open RuneScape Classic" /></a>
<div class="featureTitle">OpenRSC</div>
<div class="featureDesc">Experience RuneScape Classic in its original glory: <a
href="./site/classicapplet/playclassic.html">OpenRSC</a>!</div>
</div>
<div class="feature">
<a target="_blank" href="https://github.com/2009scape/2009Scape-mobile#readme"><img src="./site/2009scape-resources/img/icons/aog_icon.jpeg"
width="57" height="57" alt="AOG" /></a>
<div class="featureTitle">2009Scape Mobile</div>
<div class="featureDesc">Enjoy our project on the go with the Android <a target="_blank" href="https://github.com/2009scape/2009Scape-mobile#readme">
mobile client!</a>
</DIV>
</div>
<div class="articlesMore"><a href="/site/game_guide/">Browse the Game Guides</a></div>
</div>
<div class=articlesFooter></div>
</div>
</div>
</div>
<div id="right">
<!--MAIN BUTTON: PLAY/CLIENT DOWNLOAD-->
<a href="/site/game_guide/play.html" id="playbutton">
<img src="/site/2009scape-resources/img/buttons/btn-play.webp"
alt="Play 2009Scape" width="480" height="151"/>
<span class="shim"></span>
</a>
<div id="recentnews">
<!--TITLE: LATEST UPDATES-->
<div class="sectionHeader">
<div class="left">
<div class="right">
<div class="plaque">
<img src="/site/2009scape-resources/img/titles/title-latestupdates.webp" width="162" height="12" alt="Latest Updates" />
</div>
</div>
</div>
<!--GAME GUIDE-->
<DIV id=articles>
<DIV class=narrowHeader><IMG alt="Game Guide"
src="./site/2009scape-resources/img/titles/title-gameguide.webp" width="162" height="12">
</DIV>
<DIV class=section>
<DIV class=articlesBody>
<DIV class=articlesTitle>
<!--When weekly article script is implemented, switch image to 'title-article-weekly.webp'-->
<img alt="Featured Article" src="./site/2009scape-resources/img/titles/title-article-featured.webp" width="164" height="9">
</DIV>
<DIV class=aowBody>
<DIV class=aowHeight>
<DIV class=aowImage><A href="https://discord.gg/YY7WSttN7H"><IMG alt=""
src="./site/img/2009img/main/kbase/aow_icons/discord-promo.webp" width="249" height="87"></A></DIV>
<P class=aowTitle>Join us on Discord</P>
<P> 2009Scape has an active community on our Discord Server. Discuss the game, ask questions, or just hang out!
<a href="https://discord.gg/YY7WSttN7H">Join Now!</a>
</P>
</DIV>
</DIV>
<div class="articlesMore"><a href="./site/game_guide/">Browse the Game Guides</a></div>
</DIV>
<DIV class=articlesFooter></DIV>
</DIV>
</DIV>
</DIV>
<div id="right">
<!--MAIN BUTTON: PLAY/CLIENT DOWNLOAD-->
<a href="./site/game_guide/play.html" id="playbutton">
<img src="./site/2009scape-resources/img/buttons/btn-play.webp"
alt="Play 2009Scape" width="480" height="151"/>
<span class="shim"></span>
</a>
<div id="recentnews">
<!--TITLE: LATEST UPDATES-->
<div class="sectionHeader">
<div class="left">
<div class="right">
<div class="plaque">
<img src="./site/2009scape-resources/img/titles/title-latestupdates.webp" width="162" height="12" alt="Latest Updates" />
</div>
<!--LATEST UPDATE ITEMS SECTION-->
<div class="section">
{% assign added = 0 %}
{% assign sorted = site.categories.updates | orderby: 'date' | slice: 0, 3 %}
{% for page in sorted %}
{% if added == 0 %}
{% assign added = added | plus:1 %}
<!--LATEST UPDATE ITEM-->
<div class='sectionBody'>
<div class='sectionHeight'>
<div class='recentNews'>
<!--UPDATE TITLE & DATE-->
<div class='newsTitle'>
<h3>{{ page.title | replace: "2009Scape - ", "" }}</h3>
<span>{{ page.date | date: '%d-%B-%Y' }}</span>
</div>
<!--UPDATE IMAGE-->
{% if page.promo_image and page.promo_image != "" and page.promo_image != nil %}
{% assign promoImage = page.promo_image %}
{% else %}
{% assign promoImage = "/site/2009scape-resources/img/updates/update-monthly-" | append: page.date | date: '/site/2009scape-resources/img/updates/update-monthly-%m.webp' %}
{% endif %}
<a class="newsImage" href="{{ page.url | prepend: site.baseurl }}">
<img alt="Latest update image" src="{{ promoImage }}" width="215" height="137">
</a>
<!--UPDATE CONTENT TEASER-->
<p>
{{ page.excerpt | truncate: 350 }}
<br>
<!--READ MORE LINK-->
<a href="{{ page.url | prepend: site.baseurl }}">Read more...</a>
</p>
</div>
</div>
</div>
</div>
<!--LATEST UPDATE ITEMS SECTION-->
<div class="section">
{% assign added = 0 %}
{% assign sorted = site.categories.updates | orderby: 'date' | slice: 0, 3 %}
{% for page in sorted %}
{% if added == 0 %}
{% assign added = added | plus:1 %}
<!--LATEST UPDATE ITEM-->
<div class='sectionBody'>
<div class='sectionHeight'>
<div class='recentNews'>
<!--UPDATE TITLE & DATE-->
<div class='newsTitle'>
<h3>{{ page.title | replace: "2009Scape - ", "" }}</h3>
<span>{{ page.date | date: '%d-%B-%Y' }}</span>
</div>
<!--UPDATE IMAGE-->
{% if page.promo_image and page.promo_image != "" and page.promo_image != nil %}
{% assign promoImage = page.promo_image %}
{% else %}
{% assign promoImage = "./site/2009scape-resources/img/updates/update-monthly-" | append: page.date | date: './site/2009scape-resources/img/updates/update-monthly-%m.webp' %}
{% endif %}
<a class="newsImage" href="{{ page.url | prepend: site.baseurl }}">
<img alt="Latest update image" src="{{promoImage}}" width="215" height="137">
</a>
<!--UPDATE CONTENT TEASER-->
<p>
{{ page.excerpt | truncate: 350 }}
<br>
<!--READ MORE LINK-->
<a href="{{ page.url | prepend: site.baseurl }}">Read more...</a>
</p>
</div>
</div>
</div>
<!--END LATEST UPDATE ITEM-->
{% else %}
{% assign added = added | plus:1 %}
<!--RECENT UPDATE ITEM-->
<div class="sectionBody">
<div class="recentNews">
<!--UPDATE TITLE & DATE-->
<div class="newsTitle">
<h3>{{ page.title | replace: "2009Scape - ", "" }}</h3>
<span>{{ page.date | date: '%d-%B-%Y' }}</span>
</div>
<!--UPDATE ICON (Use most relevant to this post!)
--
GENERIC // generic1.webp, generic2.webp, generic3.webp
SETTINGS & TWEAKS // settings1.webp, settings2.webp, settings3.webp
OTHER // account.webp, award.webp, bugfix.webp, combat.webp, hiscores.webp, money,webp, random.webp, website.webp -->
<img src="./site/2009scape-resources/img/updates/icons/generic1.webp" width="65" height="70" alt="Generic feature icon"/>
<!--UPDATE CONTENT TEASER-->
<p>
{{page.excerpt | truncate: 280 }}
<br>
<!--READ MORE LINK-->
<a href="{{ page.url | prepend: site.baseurl }}">Read more..</a>
</p>
</div>
</div>
{% endif %}
{% endfor %}
</div>
<!--TITLE: MORE UPDATES-->
<div class="sectionHeader" style="text-align: center;">
<div class="left">
<div class="right">
<div class="plaque">
<img src="./site/2009scape-resources/img/titles/title-moreupdates.webp" width="162" height="12" alt="More Updates" />
</div>
</div>
</div>
</div>
<div class="section">
<!--MORE UPDATES TABLE-->
<!--END LATEST UPDATE ITEM-->
{% else %}
{% assign added = added | plus:1 %}
<!--RECENT UPDATE ITEM-->
<div class="sectionBody">
<table class="Updates">
{% assign sorted = site.categories.updates | orderby: 'date' | slice: 3, 3 %}
{% for page in sorted %}
<!--TABLE ITEM-->
<tr>
<td>
<strong><a href="{{ page.url | prepend: site.baseurl }}">
{{ page.title | replace: "2009scape - ", "" }}</a></strong>
</td>
<td class="UpdatesCategory">
Game Updates
</td>
<td class="UpdatesDate">
{{ page.date | date: '%d-%b-%Y' }}
</td>
</tr>
{% endfor %}
</table>
<div class="recentNews">
<!--UPDATE TITLE & DATE-->
<div class="newsTitle">
<h3>{{ page.title | replace: "2009Scape - ", "" }}</h3>
<span>{{ page.date | date: '%d-%B-%Y' }}</span>
</div>
<!--UPDATE ICON (Use most relevant to this post!)
--
GENERIC // generic1.webp, generic2.webp, generic3.webp
SETTINGS & TWEAKS // settings1.webp, settings2.webp, settings3.webp
OTHER // account.webp, award.webp, bugfix.webp, combat.webp, hiscores.webp, money,webp, random.webp, website.webp -->
<img src="/site/2009scape-resources/img/updates/icons/generic1.webp" width="65" height="70" alt="Generic feature icon"/>
<!--UPDATE CONTENT TEASER-->
<p>
{{page.excerpt | truncate: 280 }}
<br>
<!--READ MORE LINK-->
<a href="{{ page.url | prepend: site.baseurl }}">Read more..</a>
</p>
</div>
</div>
<!--LEFT LINK: DISCORD ANNOUNCEMENTS-->
<div id="feed">
<a href="https://discord.gg/YY7WSttN7H">
<img title="Discord" alt="" height="16px" width="16px"
src="./site/2009scape-resources/img/icons/brand-discord.svg" />
<span>View Announcements on Discord</span>
</a>
</div>
<!--RIGHT LINK: ARCHIVE-->
<div class="moreArchive"><a href="./services/m=news/archives/">Browse the Updates Archive</a>
{% endif %}
{% endfor %}
</div>
<!--TITLE: MORE UPDATES-->
<div class="sectionHeader" style="text-align: center;">
<div class="left">
<div class="right">
<div class="plaque">
<img src="/site/2009scape-resources/img/titles/title-moreupdates.webp" width="162" height="12" alt="More Updates" />
</div>
</div>
</div>
</div>
<div class="section">
<!--MORE UPDATES TABLE-->
<div class="sectionBody">
<table class="Updates">
{% assign sorted = site.categories.updates | orderby: 'date' | slice: 3, 3 %}
{% for page in sorted %}
<!--TABLE ITEM-->
<tr>
<td>
<strong><a href="{{ page.url | prepend: site.baseurl }}">
{{ page.title | replace: "2009scape - ", "" }}</a></strong>
</td>
<td class="UpdatesCategory">
Game Updates
</td>
<td class="UpdatesDate">
{{ page.date | date: '%d-%b-%Y' }}
</td>
</tr>
{% endfor %}
</table>
</div>
<!--LEFT LINK: DISCORD ANNOUNCEMENTS-->
<div id="feed">
<a href="https://discord.gg/YY7WSttN7H">
<img title="Discord" alt="" height="16px" width="16px"
src="/site/2009scape-resources/img/icons/brand-discord.svg" />
<span>View Announcements on Discord</span>
</a>
</div>
<!--RIGHT LINK: ARCHIVE-->
<div class="moreArchive"><a href="/updates">Browse the Updates Archive</a>
</div>
</div>
</div>
</div>
</div>
{% include footer.html %}
</div>
</body>
</html>

View File

@ -1,37 +0,0 @@
# -*- coding: utf-8 -*-
import requests
from bs4 import BeautifulSoup
from unidecode import unidecode
from os import listdir
from os.path import isfile, join
mypath = "C:\\Users\\Anon\\Projects\\2009scape-website\\site\\community\\"
onlyfiles = [f for f in listdir(mypath) if isfile(join(mypath, f))]
for f in onlyfiles:
url = "http://localhost:8000/site/community/" + f
print(url)
headers = {"user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36"}
response = requests.get(url, headers=headers)
soup = BeautifulSoup(response.content, 'lxml')
## Jekyll
tmp = open("test/"+f, "w")
tmp.write('---\n')
title = soup.title.string.replace("2009scape - ","")
title = title.replace("2009Scape - ","")
tmp.write('title: '+title+'\n')
tmp.write('tags: community'+'\n')
tmp.write('layout: guide'+'\n')
#tmp.write('collection: Game Updates'+'\n')
#tmp.write('date: '+f[:-5]+" 00:00:00 +0000"+'\n')
#tmp.write('authors: '+soup.find("div", {"class": "msgcreator uname"}).text.strip()+"\n")
tmp.write('---\n')
for hit in soup.findAll(attrs={'id' : 'content'}):
tmp.write(unidecode(str(hit)))
tmp.close()

View File

@ -1,959 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Mirrored from secure.runescape.com/m=create/index.html by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 08:58:40 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
<head>
<link rel="icon" type="image/vnd.microsoft.icon" href="../../site/favicon.ico">
<link rel="SHORTCUT ICON" href="../../site/favicon.ico">
<link rel="apple-touch-icon" href="../../site/img/mobile.webp">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Language" content="
en, English
">
<meta name="keywords" content="RSPS, Open Source, 2009scape, Osrs, Oldschool Runescape, Runescape, zezima">
<meta name="description" content="Play RuneScape for free, and join a global community of millions as you complete quests and win enormous treasures in a 3D world full of magic and monsters.">
<meta name="title" content="RuneScape - MMORPG - The No.1 Free Online Multiplayer Game">
<title>RuneScape - MMORPG - The No.1 Free Online Multiplayer Game</title>
<style type="text/css">/*\*/@import url(../../site/css/global-34.css);/**/</style>
<script type="text/javascript" src="../../www.jagex.com/js/jquery/jquery_1_4_2.js"></script>
<script type="text/javascript">
$(function(){
$("#play, #playExisting, #playBannerNoad").each(function(){ this.href += "?j=1"; })
})
</script>
<style type="text/css">/*\*/@import url(../../site/css/create3-16.css);/**/</style>
<!--[if lte IE 7]><style type="text/css">
.brown_box select {margin-top: 1px;}
</style><![endif]-->
<script type="text/javascript" src="../../www.jagex.com/js/create/ajax-0.js"></script>
<script type="text/javascript">//<![CDATA[
var last_ajax_username = "".toLowerCase();
var last_ajax_response = '17';
var has_valid_username = true;
var blocked = false;
var info_showing = '';
var submitted = false;
function _(objid){
if (typeof objid == "string") objid=document.getElementById(objid);
if (!objid) return;
return objid;
}
function findPosY(obj)
{
var curtop = 0;
if(obj.offsetParent)
while(1)
{
curtop += obj.offsetTop;
if(!obj.offsetParent)
break;
obj = obj.offsetParent;
}
else if(obj.y)
curtop += obj.y;
return curtop;
}
function isLeapYear(year) {
if ( year < 0) return (year +1) % 4 == 0;//>
if ( year < 1582 ) return year % 4 == 0;//>
if ( year % 4 != 0 ) return false;
if ( year % 100 != 0 ) return true;
if ( year % 400 != 0 ) return false;
return true;
}
function display(obj){
info_showing = obj.id;
var jmesg = _('jmesg');
var srctext = _(obj.id + '_desc').innerHTML;
var ypos = findPosY(obj) - findPosY(_('formBoxes')) + 1;
jmesg.innerHTML = srctext;
jmesg.style.backgroundPosition = '0px ' + (ypos - 10) + 'px';
}
function uncross(obj){
if(obj.className == 'fail'){
obj.className = '';
}
return;
}
function checkit(){
_('creatForm').action='';
}
function validate_username(doajax){
var obj = _('username');
var str = obj.value;
if(!str || str.length == 0){obj.className = ''; return false;}
if(str.length > 12 || !str.match(/^[a-zA-Z0-9_ ]+$/)){
obj.className = 'fail';
_('alts').style.display = 'none';
_('username_constraints_characters').className = 'error';
_('errorUsername').innerHTML = "Please supply a valid username.";
obj.focus();
obj.select();
return false;
}else{
_('username_constraints_characters').className = '';
if(doajax == true && blocked == false){
if(str.toLowerCase() != last_ajax_username){
/* do ajax availability test */
last_ajax_username = str.toLowerCase();
callback_request("checkusername.ajax?username="+str, validate_username_ajax);
obj.className = 'loading';
}
else {
validate_username_ajax(last_ajax_response,true);
}
}else{
return true;
}
}
}
function validate_username_ajax(response,no_alts){
last_ajax_response = response;
var obj = _('username');
if(!response || response.length == 0){
obj.className = '';
_('alts').style.display = 'none';
_('username_constraints_characters').className = '';
_('errorUsername').innerHTML = '&nbsp;';
if(!no_alts && info_showing == 'usr'){
display(_('usr'));
}
return true;
}
var values = response.split(',');
if(values[0] == 17){
obj.className = 'success';
_('alts').style.display = 'none';
_('username_constraints_characters').className = '';
_('errorUsername').innerHTML = '&nbsp;';
if(!no_alts && info_showing == 'usr'){
display(_('usr'));
}
return true;
}
else if(values[0] == 36 || values[0] == 47){
blocked = true;
obj.className = '';
window.setTimeout('blocked = false',7000);
_('alts').style.display = 'none';
_('username_constraints_characters').className = '';
_('errorUsername').innerHTML = '&nbsp;';
if(!no_alts && info_showing == 'usr'){
display(_('usr'));
}
return true;
}
else{
obj.className = 'fail';
_('errorUsername').innerHTML = "Sorry, that username is not available."; // "Please supply a valid username.";
var alts = "Sorry, that username is not available.";
if(values.length > 1){
alts += " Possible alternatives: ";
var limit = 9;
if(values.length < limit){limit = values.length;}//>
for(var i=1; i<limit; i++){//>
alts += values[i];
if(i+1 < limit){alts += ', ';}//>
}
alts += '.';
}
_('alts').innerHTML = alts;
_('alts').style.display = 'block';
_('username_constraints_characters').className = '';
if(!no_alts && info_showing == 'usr'){
display(_('usr'));
}
obj.focus();
obj.select();
return false;
}
}
function validate_password(error,startup){
var pass = _('password1');
var pass2 = _('password2');
var constraints = _('pass_constraints');
var str = pass.value;
var str2 = pass2.value;
if(!str || str.length == 0){
pass.className = '';
pass2.className = '';
constraints.className = '';
if(!startup && info_showing == 'pass'){display(_('pass'));}
return false;
}
else if(!str.match(/^[a-zA-Z0-9]{5,20}$/)){
pass.className = 'fail';
pass2.className = '';
constraints.className = 'error';
if(!startup && info_showing == 'pass'){display(_('pass'));}
_('errorPassword').innerHTML = "Please supply a valid password.";
return false;
}
else{
pass.className = '';
constraints.className = '';
if(!startup && info_showing == 'pass'){display(_('pass'));}
if(str2.length == 0){
pass2.className = '';
if(error == true){_('errorPassword').innerHTML = '&nbsp;';}
return false;
}
else if(str2 != str || !str2.match(/^[a-zA-Z0-9]{5,20}$/)){
pass2.className = 'fail';
_('errorPassword').innerHTML = "Please make sure both passwords match.";
return false;
}
else{
pass2.className = '';
_('errorPassword').innerHTML = '&nbsp;';
return true;
}
}
}
function validate_date(reciprocate){
var day = _('day');
var month = _('month');
var year = _('year');
var yearint = parseInt(year.value,10);
// not y3k compliant! cripes!
if( yearint < 100 && yearint >= 0 ){//>
if(yearint + 2000 > 2010){
year.value = yearint + 1900;
}else{
year.value = yearint + 2000;
}
}
if(day.value < 0 || /*>*/ month.value < 0 || !year.value.match(/^[0-9]{4,4}$/)){return false;}//>
if(yearint > 2010 || yearint < 1890){return false;}//>
var monlens = new Array(31,28,31,30,31,30,31,31,30,31,30,31);
if(isLeapYear(year.value)){monlens[1] = 29;}
if(day.value > monlens[month.value]){
day.value = monlens[month.value];
}
if(reciprocate == true && validate_country(false) && _('errorData').innerHTML != '&nbsp;'){
_('errorData').innerHTML = '&nbsp;';
}
return true;
}
function validate_country(reciprocate){
var country = _('country');
if(country.value == '' || country.value <= 0){//>
display(_('data'));
return false;
}
if(reciprocate == true && validate_date(false) && _('errorData').innerHTML != '&nbsp;'){
_('errorData').innerHTML = '&nbsp;';
}
return true;
}
function validate_all(){
var returncode = true;
if(!validate_date(true) || !validate_country(true)){
returncode = false;
_('errorData').innerHTML = "Please make sure you have provided a valid date of birth and country.";
display(_('data'));
}else{
_('errorData').innerHTML = '&nbsp;';
}
if(!validate_password(true,true)){
returncode = false;
_('errorPassword').innerHTML = "Please supply a valid password.";
display(_('pass'));
}else{
_('errorPassword').innerHTML = '&nbsp;';
}
if(!validate_username(false)){
returncode = false;
_('errorUsername').innerHTML = "Please supply a valid username.";
_('username').focus();
_('username').select();
display(_('usr'));
}else{
_('errorUsername').innerHTML = '&nbsp;';
}
return returncode;
}
var input_order=["username","password1","password2","day","month","year","country","submitbutton"];
function a_pos(val, arr) {
for(var i=0; i<arr.length; i++) if(val===arr[i]) return i;//>
return -1;
}
function handle_keypress(event) {
if(!event) event=window.event;
if(event.keyCode!=13) return true;
var p=a_pos(this.id, input_order);
if(p!=-1 && p<input_order.length-1) var next=_(input_order[p+1]);//>
if(next && next.focus) {
next.focus();
return false;
}
return true;
}
function install_textboxes() {
// Skip the last one (submit button), but it needs to be in the array so things know where to go
for(var i=0; i<input_order.length-1; i++) if(!_(input_order[i]).onkeypress){//>
_(input_order[i]).onkeypress=handle_keypress;
}
}
function install(){
validate_username(false);
validate_password(false,true);
install_textboxes();
if(_('jmesg').innerHTML == ''){display(_('usr'));}
}
// window.onload fix: Dean Edwards/Matthias Miller/John Resig
function dummy() {
};
function init() {
if (arguments.callee.done) return;
arguments.callee.done = true;
if (_timer) clearInterval(_timer);
if (install) install();
};
/* for Mozilla/Opera9 */
if (document.addEventListener) {
document.addEventListener("DOMContentLoaded", init, false);
}
/* for Internet Explorer */
/*@cc_on @*/
/*@if (@_win32)
document.write("<script id=__ie_onload defer src=dummy()><\/script>");
var script = _("__ie_onload");
script.onreadystatechange = function() {
if (this.readyState == "complete") {
init(); // call the onload handler
}
};
/*@end @*/
/* for Safari */
if (/WebKit/i.test(navigator.userAgent)) { // sniff
var _timer = setInterval(function() {
if (/loaded|complete/.test(document.readyState)) {
init(); // call the onload handler
}
}, 10);
}
/* for other browsers */
window.onload = init;//]]></script>
<noscript>
<style type="text/css">
#jmesgBg, #jmesg {
display: none;
}
#formBoxes {
padding-bottom: 1em;
}
.formDesc {
display: block;
}
.formDesc p {
display: inline;
}
.formSection {
padding: 1em 0 5px;
}
#pass_desc, #data_desc {
padding-top: 1em;
border-top: 2px solid black;
}
#alts {
display: block;
margin-bottom: 1em;
padding: 0;
}
#alts span {
cursor: default;
text-decoration: none;
}
#errorUsername, #errorPassword {
margin-bottom: 1em;
}
</style>
</noscript>
</head>
<body id="navplay" class="bodyBackground">
<a name="top"></a>
<div class="bodyBackgroundHead">
<div id="menubox">
<ul id="menus">
<li class="top"><a href="../../site/title.html" id="home" class="tl"><span class="ts">Home</span></a></li>
<li class="top"><a id="play" class="tl" href="https://2009scape.org/site/game_guide/play.html" onclick="try{pageTracker._trackPageview('/play_game/menu/top')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/top')}catch(x){}"
><span class="ts">Play Now</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="index.html" class="fly"><span>New Users</span></a></li>
<li><a href="https://2009scape.org/site/game_guide/play.html" id="playExisting" onclick="try{pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}"
class="fly"><span>Existing Users</span></a></li>
<li><a href="../../site/options.html" class="fly"><span>Java Options</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="account" class="tl" href="../../site/account_management.html"><span class="ts">Account</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../m%3dweblogin/members/members.html" class="fly"><span>Upgrade Your Account</span></a></li>
<li><a href="index-2.html" class="fly"><span>Create New Account</span></a></li>
<li><a href="../../site/account_management.html" class="fly"><span>Account Management</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="guide" class="tl" href="../../site/kbase/guid/manual.html"><span class="ts">Game Guide</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/manual.html" class="fly"><span>Manual</span></a></li>
<li><a href="../m%3dweblogin/loginform802b.html" class="fly"><span>QuestHelp</span></a></li>
<li><a href="../../services/m%3ditemdb_rs/frontpage.html" class="fly"><span>Grand Exchange</span></a></li>
<li><a href="../../site/kbase/guid/rules_of_conduct.html" class="fly"><span>Rules</span></a></li>
<li><a href="../../site/kbase/guid/lore.html" class="fly"><span>Lores</span></a></li>
<li><a href="../../site/splash.html" class="fly"><span>What is RuneScape?</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="community" class="tl" href="../../services/m%3dforum/forums.html"><span class="ts">Community</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../services/m%3dforum/forums.html" class="fly"><span>Forums</span></a></li>
<li><a href="../../services/m%3dhiscore/hiscores.html" class="fly"><span>Hiscores</span></a></li>
<li><a href="../../site/kbase/guid/Player_Submissions.html" class="fly"><span>Player Submissions</span></a></li>
<li><a href="../../services/m%3dadventurers-log/index.html" class="fly"><span>Adventurer's Log</span></a></li>
<li><a href="../../services/m%3dpoll/index.html" class="fly"><span>Polls</span></a></li>
<li><a href="../../site/kbase/guid/Downloads_and_Wallpapers.html" class="fly"><span>Downloads &amp; Wallpapers</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="help" class="tl" href="../../site/kbase/guid/Customer_Support.html"><span class="ts">Help</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/Customer_Support.html" class="fly"><span>Customer Support</span></a></li>
<li><a href="../../site/loginapplet/loginappletb4b5.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=passwordchoice.ws" class="fly"><span>Password Recovery</span></a></li>
<li><a href="../../site/loginapplet/loginappletef7e.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=lockchoice.ws" class="fly"><span>Locked Account Recovery</span></a></li>
<li><a href="../m%3dweblogin/loginform14d4.html?mod=offence-appeal&amp;dest=index.ws" class="fly"><span>Appeal Bans &amp; Mutes</span></a></li>
<li><a href="../../services/m%3dbugtracker_v4/index.html" class="fly"><span>Submit a Bug Report</span></a></li>
<li><a href="../../site/parents.html" class="fly"><span>Parents' Guide</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a href="../m%3dweblogin/loginform53bb.html?mod=www&amp;ssl=0&amp;dest=index.ws" id="login" class="tl"><span class="ts">Log In</span></a></li>
</ul>
<br class="clear" />
</div>
<div id="bannerNoad">
<a href="https://2009scape.org/site/game_guide/play.html" class="HoverImg" id="playBannerNoad"><img src="../../site/img/main/skins/default/playnowc20a.webp" alt="Play Now" /></a>
</div>
<div id="scroll">
<div id="head"><div id="headBg">
<div id="langAndLogin">
<div id="lang">
<a href="../../site/title.html"><img alt="English" title="English" src="../../site/img/main/layout/en.gif" /></a>
<a href="../../site/l%3d1/title.html"><img alt="Deutsch" title="Deutsch" src="../../site/img/main/layout/de.gif" /></a>
<a href="../../site/l%3d2/title.html"><img alt="Fran&ccedil;ais" title="Fran&ccedil;ais" src="../../site/img/main/layout/fr.gif" /></a>
<a href="../../site/l%3d3/title.html"><img alt="Portugu&ecirc;s (BR)" title="Portugu&ecirc;s (BR)" src="../../site/img/main/layout/br.gif" /></a>
</div>
</div>
<div class="navigation">
<div class="location">
<b>Location: </b> <a href="../../site/title.html">Home</a> &gt;
Create a Free Account
</div>
</div>
</div></div>
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Create a Free Account
</h1>
</div>
</div>
</div>
<div class="section">
<div class="brown_background sectionContentContainer">
<div class="inner_brown_background">
<div class="brown_box">
<div class="statusbarwrap">
<div id="statusbar">
<div class="left">
<div class="right">
<div class="statusbutton firstoffspring firstActive"><div class="subButton left">1. Enter Your Details</div></div>
<div class="statusbutton middleoffspring "><div class="subButton middle">2. Enter Your Email (optional)</div></div>
<div class="statusbutton lastoffspring "><div class="subButton right">3. Account Creation Complete</div></div>
<br style="clear: both;"/>
</div>
</div>
</div>
</div>
<br class="clear"/>
<div class="width756">
<div id="errorlog" style="position: absolute; top: 5px; right: 5px; float: right; padding: 5px;"></div>
<form id="createForm" action="https://secure/m=create/input_details.ws" method="post" onsubmit="return checkit()">
<div class="inner_brown_box brown_box_stack" id="cIntro">
Creating an account is simple and free, and you will have access to the free worlds on Runescape and FunOrb for as long as you like. Just complete the form below, click on <20>Continue<75>, and get ready to play!
</div>
<div id="formBoxes" class="inner_brown_box brown_box_stack brown_box_padded">
<div class="formDesc" id="usr_desc">
<p class="error" id="alts" style="display:none;">Sorry, that username is not available.
</p>
<p id="username_constraints_characters">Usernames can be a maximum of 12 characters long and may contain letters, numbers, spaces and underscores.</p>
<p>They should not contain your real name, birth date, or other personally identifiable information, to better protect your identity.</p>
<p>They should not be offensive or break our <a href="../../site/terms/terms.html" onclick="window.open(this.href+'#create','_blank','width=800,height=600,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=yes'); return false;" target="_blank">Terms &amp; Conditions</a>.</p>
</div>
<div class="formSuperGroup single_line">
<div class="formSection" id="usr">
<input style="display:none;" type="hidden" id="origusername" name="origusername" value="">
<label for="username">Your Username:</label>
<input id="username" name="username" autocomplete="off" maxlength="12" onfocus="display(this.parentNode);" onkeypress="display(this.parentNode);uncross(this);" onblur="validate_username(true);" value="">
<br class="clear" />
</div>
<div class="error formError" id="errorUsername">&nbsp;</div>
<br class="clear" />
</div>
<div class="formSuperGroup double_line">
<div class="formDesc" id="pass_desc">
<p>NEVER give anyone your password, not even to Jagex staff. Jagex staff will never ask you for your password.</p>
<p id="pass_constraints">Passwords must be between 5 and 20 characters long and may contain letters and numbers.</p>
<p>We recommend you use a mixture of numbers and letters in your password to make it harder for someone to guess.</p>
</div>
<div id="pass" class="formGroup">
<div class="formSection">
<label for="password1">Your Password:</label>
<input id="password1" name="password1" type="password" autocomplete="off" value="" maxlength="20" onfocus="display(this.parentNode.parentNode);uncross(this)" onblur="validate_password(true);">
</div>
<div class="formSection">
<label for="password2">Re-enter Password:</label>
<input id="password2" name="password2" type="password" autocomplete="off" value="" maxlength="20" onfocus="display(this.parentNode.parentNode);uncross(this)" onblur="validate_password(true);">
</div>
<br class="clear" />
</div>
<div class="error formError" id="errorPassword">&nbsp;</div>
<br class="clear" />
</div>
<div class="formDesc" id="data_desc">
<p>Your date of birth is required for account creation, but we will not share it with any third parties.</p>
<p>Your country of residence is required for the purposes of identifying your account.</p>
<p>For more details see the <a href="../../site/privacy/privacy.html" onclick="window.open(this.href+'#create','_blank','width=800,height=600,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=yes'); return false;" target="_blank">Privacy Policy</a>.</p>
</div>
<div class="formSuperGroup double_line">
<div id="data" class="formGroup">
<div class="formSection">
<label for="day">Your Date of Birth:</label>
<div>
<select id="day" name="day" onfocus="display(this.parentNode.parentNode.parentNode);" onchange="validate_date(true)">
<option value="-1" selected="selected" disabled="disabled">Day</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
<option value="15">15</option>
<option value="16">16</option>
<option value="17">17</option>
<option value="18">18</option>
<option value="19">19</option>
<option value="20">20</option>
<option value="21">21</option>
<option value="22">22</option>
<option value="23">23</option>
<option value="24">24</option>
<option value="25">25</option>
<option value="26">26</option>
<option value="27">27</option>
<option value="28">28</option>
<option value="29">29</option>
<option value="30">30</option>
<option value="31">31</option>
</select>
<select id="month" name="month" onfocus="display(this.parentNode.parentNode.parentNode);" onchange="validate_date(true)">
<option value="-1" selected="selected" disabled="disabled">Month</option>
<option value="0">January</option>
<option value="1">February</option>
<option value="2">March</option>
<option value="3">April</option>
<option value="4">May</option>
<option value="5">June</option>
<option value="6">July</option>
<option value="7">August</option>
<option value="8">September</option>
<option value="9">October</option>
<option value="10">November</option>
<option value="11">December</option>
</select>
<input id="year" name="year" maxlength="4" value="Year" onfocus="display(this.parentNode.parentNode.parentNode); if(this.value=='Year'){this.value='';}" onblur="if(this.value==''){this.value='Year';}" onchange="validate_date(true)">
</div>
</div>
<div class="formSection country" >
<label for="country">Your Country of Residence:</label>
<select id="country" name="country" onfocus="display(this.parentNode.parentNode);">
<option value="-1">Select one</option>
<optgroup label="---">
<option value="225">United States</option>
<option value="77">United Kingdom</option>
</optgroup>
<optgroup label="---">
<option value="5">Afghanistan</option>
<option value="8">Albania</option>
<option value="61">Algeria</option>
<option value="14">American Samoa</option>
<option value="3">Andorra</option>
<option value="11">Angola</option>
<option value="7">Anguilla</option>
<option value="12">Antarctica</option>
<option value="6">Antigua and Barbuda</option>
<option value="13">Argentina</option>
<option value="9">Armenia</option>
<option value="17">Aruba</option>
<option value="16">Australia</option>
<option value="15">Austria</option>
<option value="18">Azerbaijan</option>
<option value="32">Bahamas</option>
<option value="25">Bahrain</option>
<option value="21">Bangladesh</option>
<option value="20">Barbados</option>
<option value="36">Belarus</option>
<option value="22">Belgium</option>
<option value="37">Belize</option>
<option value="27">Benin</option>
<option value="28">Bermuda</option>
<option value="33">Bhutan</option>
<option value="30">Bolivia</option>
<option value="19">Bosnia and Herzegovina</option>
<option value="35">Botswana</option>
<option value="34">Bouvet Island</option>
<option value="31">Brazil</option>
<option value="104">British Indian Ocean Territory</option>
<option value="29">Brunei Darussalam</option>
<option value="24">Bulgaria</option>
<option value="23">Burkina Faso</option>
<option value="26">Burundi</option>
<option value="114">Cambodia</option>
<option value="47">Cameroon</option>
<option value="38">Canada</option>
<option value="52">Cape Verde</option>
<option value="121">Cayman Islands</option>
<option value="41">Central African Republic</option>
<option value="207">Chad</option>
<option value="46">Chile</option>
<option value="48">China</option>
<option value="53">Christmas Island</option>
<option value="39">Cocos (Keeling) Islands</option>
<option value="49">Colombia</option>
<option value="116">Comoros</option>
<option value="42">Congo</option>
<option value="40">Congo, The Democratic Republic of the</option>
<option value="45">Cook Islands</option>
<option value="50">Costa Rica</option>
<option value="44">Cote D'Ivoire</option>
<option value="97">Croatia</option>
<option value="51">Cuba</option>
<option value="54">Cyprus</option>
<option value="55">Czech Republic</option>
<option value="58">Denmark</option>
<option value="57">Djibouti</option>
<option value="59">Dominica</option>
<option value="60">Dominican Republic</option>
<option value="216">East Timor</option>
<option value="62">Ecuador</option>
<option value="64">Egypt</option>
<option value="203">El Salvador</option>
<option value="87">Equatorial Guinea</option>
<option value="66">Eritrea</option>
<option value="63">Estonia</option>
<option value="68">Ethiopia</option>
<option value="71">Falkland Islands (Malvinas)</option>
<option value="73">Faroe Islands</option>
<option value="70">Fiji</option>
<option value="69">Finland</option>
<option value="74">France</option>
<option value="75">France, Metropolitan</option>
<option value="80">French Guiana</option>
<option value="170">French Polynesia</option>
<option value="208">French Southern Territories</option>
<option value="76">Gabon</option>
<option value="84">Gambia</option>
<option value="79">Georgia</option>
<option value="56">Germany</option>
<option value="81">Ghana</option>
<option value="82">Gibraltar</option>
<option value="88">Greece</option>
<option value="83">Greenland</option>
<option value="78">Grenada</option>
<option value="86">Guadeloupe</option>
<option value="91">Guam</option>
<option value="90">Guatemala</option>
<option value="85">Guinea</option>
<option value="92">Guinea-Bissau</option>
<option value="93">Guyana</option>
<option value="98">Haiti</option>
<option value="95">Heard Island and McDonald Islands</option>
<option value="228">Holy See (Vatican City State)</option>
<option value="96">Honduras</option>
<option value="94">Hong Kong</option>
<option value="99">Hungary</option>
<option value="107">Iceland</option>
<option value="103">India</option>
<option value="100">Indonesia</option>
<option value="106">Iran, Islamic Republic of</option>
<option value="105">Iraq</option>
<option value="101">Ireland</option>
<option value="102">Israel</option>
<option value="108">Italy</option>
<option value="109">Jamaica</option>
<option value="111">Japan</option>
<option value="110">Jordan</option>
<option value="122">Kazakstan</option>
<option value="112">Kenya</option>
<option value="115">Kiribati</option>
<option value="118">Korea, Democratic People's Republic of</option>
<option value="119">Korea, Republic of</option>
<option value="120">Kuwait</option>
<option value="113">Kyrgyzstan</option>
<option value="123">Lao People's Democratic Republic</option>
<option value="132">Latvia</option>
<option value="124">Lebanon</option>
<option value="129">Lesotho</option>
<option value="128">Liberia</option>
<option value="133">Libyan Arab Jamahiriya</option>
<option value="126">Liechtenstein</option>
<option value="130">Lithuania</option>
<option value="131">Luxembourg</option>
<option value="143">Macau</option>
<option value="139">Macedonia, the Former Yugoslav Republic of</option>
<option value="137">Madagascar</option>
<option value="151">Malawi</option>
<option value="153">Malaysia</option>
<option value="150">Maldives</option>
<option value="140">Mali</option>
<option value="148">Malta</option>
<option value="138">Marshall Islands</option>
<option value="145">Martinique</option>
<option value="146">Mauritania</option>
<option value="149">Mauritius</option>
<option value="238">Mayotte</option>
<option value="152">Mexico</option>
<option value="72">Micronesia, Federated States of</option>
<option value="136">Moldova, Republic of</option>
<option value="135">Monaco</option>
<option value="142">Mongolia</option>
<option value="242">Montenegro</option>
<option value="147">Montserrat</option>
<option value="134">Morocco</option>
<option value="154">Mozambique</option>
<option value="141">Myanmar</option>
<option value="155">Namibia</option>
<option value="164">Nauru</option>
<option value="163">Nepal</option>
<option value="161">Netherlands</option>
<option value="10">Netherlands Antilles</option>
<option value="156">New Caledonia</option>
<option value="166">New Zealand</option>
<option value="160">Nicaragua</option>
<option value="157">Niger</option>
<option value="159">Nigeria</option>
<option value="165">Niue</option>
<option value="158">Norfolk Island</option>
<option value="144">Northern Mariana Islands</option>
<option value="162">Norway</option>
<option value="167">Oman</option>
<option value="173">Pakistan</option>
<option value="180">Palau</option>
<option value="178">Palestinian Territory, Occupied</option>
<option value="168">Panama</option>
<option value="171">Papua New Guinea</option>
<option value="181">Paraguay</option>
<option value="169">Peru</option>
<option value="172">Philippines</option>
<option value="176">Pitcairn</option>
<option value="174">Poland</option>
<option value="179">Portugal</option>
<option value="177">Puerto Rico</option>
<option value="182">Qatar</option>
<option value="183">Reunion</option>
<option value="184">Romania</option>
<option value="185">Russian Federation</option>
<option value="186">Rwanda</option>
<option value="193">Saint Helena</option>
<option value="117">Saint Kitts and Nevis</option>
<option value="125">Saint Lucia</option>
<option value="175">Saint Pierre and Miquelon</option>
<option value="229">Saint Vincent and the Grenadines</option>
<option value="236">Samoa</option>
<option value="198">San Marino</option>
<option value="202">Sao Tome and Principe</option>
<option value="187">Saudi Arabia</option>
<option value="199">Senegal</option>
<option value="239">Serbia</option>
<option value="189">Seychelles</option>
<option value="197">Sierra Leone</option>
<option value="192">Singapore</option>
<option value="196">Slovakia</option>
<option value="194">Slovenia</option>
<option value="188">Solomon Islands</option>
<option value="200">Somalia</option>
<option value="240">South Africa</option>
<option value="89">South Georgia and the South Sandwich Islands</option>
<option value="67">Spain</option>
<option value="127">Sri Lanka</option>
<option value="190">Sudan</option>
<option value="201">Suriname</option>
<option value="195">Svalbard and Jan Mayen</option>
<option value="205">Swaziland</option>
<option value="191">Sweden</option>
<option value="43">Switzerland</option>
<option value="204">Syrian Arab Republic</option>
<option value="220">Taiwan</option>
<option value="211">Tajikistan</option>
<option value="221">Tanzania, United Republic of</option>
<option value="210">Thailand</option>
<option value="209">Togo</option>
<option value="212">Tokelau</option>
<option value="215">Tonga</option>
<option value="218">Trinidad and Tobago</option>
<option value="214">Tunisia</option>
<option value="217">Turkey</option>
<option value="213">Turkmenistan</option>
<option value="206">Turks and Caicos Islands</option>
<option value="219">Tuvalu</option>
<option value="223">Uganda</option>
<option value="222">Ukraine</option>
<option value="4">United Arab Emirates</option>
<option value="77">United Kingdom</option>
<option value="225" selected="selected">United States</option>
<option value="224">United States Minor Outlying Islands</option>
<option value="226">Uruguay</option>
<option value="227">Uzbekistan</option>
<option value="234">Vanuatu</option>
<option value="230">Venezuela</option>
<option value="233">Vietnam</option>
<option value="231">Virgin Islands, British</option>
<option value="232">Virgin Islands, U.S.</option>
<option value="235">Wallis and Futuna</option>
<option value="65">Western Sahara</option>
<option value="237">Yemen</option>
<option value="241">Zambia</option>
<option value="243">Zimbabwe</option>
</optgroup>
</select>
</div>
<br class="clear" />
</div>
<div class="error formError" id="errorData">&nbsp;</div>
<br class="clear" />
</div>
<br class="clear" />
<div id="jmesgBg" class="input_details"><div id="jmesg" class="input_details"></div></div>
</div>
<div class="inner_brown_box brown_box_padded">
<button type="submit" value="" id="submitbutton" onclick="return validate_all();">
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>
<div id="footer">
<div class="contain">
<div class="footerdesc">
This website and its contents are copyright under AGPL<br />
Use of this website is subject to our <a href="../../site/terms/terms.html">Terms &amp; Conditions</a> and <a href="../../site/privacy/privacy.html">Privacy Policy</a>.
</div>
<a class="jagexlink" href="/">
<img src="../../site/img/main/layout/jagexc20a.webp" alt="Jagex" />
</a>
<br class="clear"/>
</div>
<br class="clear"/>
</div>
</div>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol)?"https://ssl.":"http://www.");
document.write(unescape("%3Cscript src='"+gaJsHost+"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var _pageTracker=_gat._getTracker("UA-2058817-15");
_pageTracker._setDomainName(".runescape.com");
_pageTracker._trackPageview();
}catch(x){}
</script>
<script type="text/javascript">
try {
var pageTracker=_gat._getTracker("UA-2058817-2");
pageTracker._setDomainName(".runescape.com");
pageTracker._trackPageview();
}catch(x){}
</script>
</body>
<!-- Mirrored from secure.runescape.com/m=create/index.html by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 08:58:40 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
</html>

View File

@ -1,631 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Mirrored from secure.runescape.com/m=create/index.ws by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 08:58:29 GMT -->
<!-- Added by HTTrack -->
<meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
<head>
<link rel="icon" type="image/vnd.microsoft.icon" href="../../site/favicon.ico">
<link rel="stylesheet" href="./../../site/2009scape-resources/css/2009scape.css">
<link rel="SHORTCUT ICON" href="../../site/favicon.ico">
<link rel="apple-touch-icon" href="../../site/img/mobile.webp">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Language" content="
en, English
">
<meta name="keywords"
content="RSPS, Open Source, 2009scape, Osrs, Oldschool Runescape, Runescape, zezima">
<meta name="description"
content="Play 2009scape for free, and join a global community of millions as you complete quests and win enormous treasures in a 3D world full of magic and monsters.">
<meta name="title" content="2009scape - MMORPG - The No.1 Free Online Multiplayer Game">
<title>2009scape - Create an Account</title>
<style type="text/css">
/*\*/
@import url(../../site/css/default/global-30.css);
/**/
</style>
<script type="text/javascript" src="../../www.jagex.com/js/jquery/jquery_1_4_2.js"></script>
<script type="text/javascript">
$(function () {
$("#play, #playExisting, #playBannerNoad").each(function () { this.href += "?j=1"; })
})
</script>
<style type="text/css">
/*\*/
@import url(../../site/css/create3-16.css);
/**/
</style>
<!--[if lte IE 7]><style type="text/css">
.brown_box select {margin-top: 1px;}
</style><![endif]-->
<script type="text/javascript" src="../../www.jagex.com/js/create/ajax-0.js"></script>
<script type="text/javascript">//<![CDATA[
var last_ajax_username = "".toLowerCase();
var last_ajax_response = '17';
var has_valid_username = true;
var blocked = false;
var info_showing = '';
var submitted = false;
function _(objid) {
if (typeof objid == "string") objid = document.getElementById(objid);
if (!objid) return;
return objid;
}
function findPosY(obj) {
var curtop = 0;
if (obj.offsetParent)
while (1) {
curtop += obj.offsetTop;
if (!obj.offsetParent)
break;
obj = obj.offsetParent;
}
else if (obj.y)
curtop += obj.y;
return curtop;
}
function isLeapYear(year) {
if (year < 0) return (year + 1) % 4 == 0;//>
if (year < 1582) return year % 4 == 0;//>
if (year % 4 != 0) return false;
if (year % 100 != 0) return true;
if (year % 400 != 0) return false;
return true;
}
function display(obj) {
info_showing = obj.id;
var jmesg = _('jmesg');
var srctext = _(obj.id + '_desc').innerHTML;
var ypos = findPosY(obj) - findPosY(_('formBoxes')) + 1;
jmesg.innerHTML = srctext;
jmesg.style.backgroundPosition = '0px ' + (ypos - 10) + 'px';
}
function uncross(obj) {
if (obj.className == 'fail') {
obj.className = '';
}
return;
}
function checkit() {
_('creatForm').action = '';
}
function validate_username(doajax) {
var obj = _('username');
var str = obj.value;
if (!str || str.length == 0) { obj.className = ''; return false; }
if (str.length > 12 || !str.match(/^[a-zA-Z0-9_ ]+$/)) {
obj.className = 'fail';
_('alts').style.display = 'none';
_('username_constraints_characters').className = 'error';
_('errorUsername').innerHTML = "Please supply a valid username.";
obj.focus();
obj.select();
return false;
} else {
_('username_constraints_characters').className = '';
if (doajax == true && blocked == false) {
if (str.toLowerCase() != last_ajax_username) {
/* do ajax availability test */
last_ajax_username = str.toLowerCase();
callback_request("checkusername.ajax?username=" + str, validate_username_ajax);
obj.className = 'loading';
}
else {
validate_username_ajax(last_ajax_response, true);
}
} else {
return true;
}
}
}
function validate_username_ajax(response, no_alts) {
last_ajax_response = response;
var obj = _('username');
if (!response || response.length == 0) {
obj.className = '';
_('alts').style.display = 'none';
_('username_constraints_characters').className = '';
_('errorUsername').innerHTML = '&nbsp;';
if (!no_alts && info_showing == 'usr') {
display(_('usr'));
}
return true;
}
var values = response.split(',');
if (values[0] == 17) {
obj.className = 'success';
_('alts').style.display = 'none';
_('username_constraints_characters').className = '';
_('errorUsername').innerHTML = '&nbsp;';
if (!no_alts && info_showing == 'usr') {
display(_('usr'));
}
return true;
}
else if (values[0] == 36 || values[0] == 47) {
blocked = true;
obj.className = '';
window.setTimeout('blocked = false', 7000);
_('alts').style.display = 'none';
_('username_constraints_characters').className = '';
_('errorUsername').innerHTML = '&nbsp;';
if (!no_alts && info_showing == 'usr') {
display(_('usr'));
}
return true;
}
else {
obj.className = 'fail';
_('errorUsername').innerHTML = "Sorry, that username is not available."; // "Please supply a valid username.";
var alts = "Sorry, that username is not available.";
if (values.length > 1) {
alts += " Possible alternatives: ";
var limit = 9;
if (values.length < limit) { limit = values.length; }//>
for (var i = 1; i < limit; i++) {//>
alts += values[i];
if (i + 1 < limit) { alts += ', '; }//>
}
alts += '.';
}
_('alts').innerHTML = alts;
_('alts').style.display = 'block';
_('username_constraints_characters').className = '';
if (!no_alts && info_showing == 'usr') {
display(_('usr'));
}
obj.focus();
obj.select();
return false;
}
}
function validate_password(error, startup) {
var pass = _('password1');
var pass2 = _('password2');
var constraints = _('pass_constraints');
var str = pass.value;
var str2 = pass2.value;
if (!str || str.length == 0) {
pass.className = '';
pass2.className = '';
constraints.className = '';
if (!startup && info_showing == 'pass') { display(_('pass')); }
return false;
}
else if (!str.match(/^[a-zA-Z0-9]{5,20}$/)) {
pass.className = 'fail';
pass2.className = '';
constraints.className = 'error';
if (!startup && info_showing == 'pass') { display(_('pass')); }
_('errorPassword').innerHTML = "Please supply a valid password.";
return false;
}
else {
pass.className = '';
constraints.className = '';
if (!startup && info_showing == 'pass') { display(_('pass')); }
if (str2.length == 0) {
pass2.className = '';
if (error == true) { _('errorPassword').innerHTML = '&nbsp;'; }
return false;
}
else if (str2 != str || !str2.match(/^[a-zA-Z0-9]{5,20}$/)) {
pass2.className = 'fail';
_('errorPassword').innerHTML = "Please make sure both passwords match.";
return false;
}
else {
pass2.className = '';
_('errorPassword').innerHTML = '&nbsp;';
return true;
}
}
}
function validate_date(reciprocate) {
var day = _('day');
var month = _('month');
var year = _('year');
var yearint = parseInt(year.value, 10);
// not y3k compliant! cripes!
if (yearint < 100 && yearint >= 0) {//>
if (yearint + 2000 > 2010) {
year.value = yearint + 1900;
} else {
year.value = yearint + 2000;
}
}
if (day.value < 0 || /*>*/ month.value < 0 || !year.value.match(/^[0-9]{4,4}$/)) { return false; }//>
if (yearint > 2010 || yearint < 1890) { return false; }//>
var monlens = new Array(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
if (isLeapYear(year.value)) { monlens[1] = 29; }
if (day.value > monlens[month.value]) {
day.value = monlens[month.value];
}
if (reciprocate == true && validate_country(false) && _('errorData').innerHTML != '&nbsp;') {
_('errorData').innerHTML = '&nbsp;';
}
return true;
}
function validate_country(reciprocate) {
var country = _('country');
if (country.value == '' || country.value <= 0) {//>
display(_('data'));
return false;
}
if (reciprocate == true && validate_date(false) && _('errorData').innerHTML != '&nbsp;') {
_('errorData').innerHTML = '&nbsp;';
}
return true;
}
function validate_all(e) {
e.preventDefault();
}
var input_order = ["username", "password1", "password2", "day", "month", "year", "country", "submitbutton"];
function a_pos(val, arr) {
for (var i = 0; i < arr.length; i++) if (val === arr[i]) return i;//>
return -1;
}
function handle_keypress(event) {
if (!event) event = window.event;
if (event.keyCode != 13) return true;
var p = a_pos(this.id, input_order);
if (p != -1 && p < input_order.length - 1) var next = _(input_order[p + 1]);//>
if (next && next.focus) {
next.focus();
return false;
}
return true;
}
function install_textboxes() {
// Skip the last one (submit button), but it needs to be in the array so things know where to go
for (var i = 0; i < input_order.length - 1; i++) if (!_(input_order[i]).onkeypress) {//>
_(input_order[i]).onkeypress = handle_keypress;
}
}
function install() {
validate_username(false);
validate_password(false, true);
install_textboxes();
if (_('jmesg').innerHTML == '') { display(_('usr')); }
}
// window.onload fix: Dean Edwards/Matthias Miller/John Resig
function dummy() {
};
function init() {
if (arguments.callee.done) return;
arguments.callee.done = true;
if (_timer) clearInterval(_timer);
if (install) install();
};
/* for Mozilla/Opera9 */
if (document.addEventListener) {
document.addEventListener("DOMContentLoaded", init, false);
}
/* for Internet Explorer */
/*@cc_on @*/
/*@if (@_win32)
document.write("<script id=__ie_onload defer src=dummy()><\/script>");
var script = _("__ie_onload");
script.onreadystatechange = function() {
if (this.readyState == "complete") {
init(); // call the onload handler
}
};
/*@end @*/
/* for Safari */
if (/WebKit/i.test(navigator.userAgent)) { // sniff
var _timer = setInterval(function () {
if (/loaded|complete/.test(document.readyState)) {
init(); // call the onload handler
}
}, 10);
}
/* for other browsers */
window.onload = init;//]]></script>
<noscript>
<style type="text/css">
#jmesgBg,
#jmesg {
display: none;
}
#formBoxes {
padding-bottom: 1em;
}
.formDesc {
display: block;
}
.formDesc p {
display: inline;
}
.formSection {
padding: 1em 0 5px;
}
#pass_desc,
#data_desc {
padding-top: 1em;
border-top: 2px solid black;
}
#alts {
display: block;
margin-bottom: 1em;
padding: 0;
}
#alts span {
cursor: default;
text-decoration: none;
}
#errorUsername,
#errorPassword {
margin-bottom: 1em;
}
</style>
</noscript>
</head>
<body id="navplay" class="bodyBackground">
<a name="top"></a>
<div class="bodyBackgroundHead">
<div id="bannerNoad">
<a href="https://2009scape.org/site/game_guide/play.html" class="HoverImg"
id="playBannerNoad"><img src="../../site/img/main/skins/default/playnowc20a.webp"
alt="Play Now" /></a>
</div>
<br>
<div id="scroll">
<div id="head">
<div id="headBg">
<div class="navigation">
<div class="location">
<b>Location: </b> <a href="../../index.html">Home</a> &gt;
Create a Free Account
</div>
</div>
<div id="headOrangeTop"></div>
<img id="banner" src="" alt="2009scape">
<script type="text/javascript">
document.getElementById("banner").src = `./../..//site/img/2009img/main/skins/default/banners/${new Date().getMonth()}.webp`;
</script>
<div id="headImage"><a href="/" id="logo_select"></a>
<div id="player_no"><span class="brandingColor">2009Scape</span>: a free &amp; open-source remake of 2009 era RuneScape</div>
</div>
<br>
</div>
<div id="headOrangeBottom"></div>
<div id="headAdvert">
<script type="text/javascript">< !--
google_ad_client = "pub";
google_ad_slot = "0";
google_ad_width = 728;
google_ad_height = 90;
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</div>
</div>
</div>
<div id="menubox">
<ul id="menus">
<li class="top"><a href="./../../index.html" id="home" class="tl"><span
class="ts">Home</span></a></li>
<li class="top"><a id="play" class="tl"
href="https://2009scape.org/site/game_guide/play.html"
onclick="if(!this.j){this.href+='?j=1';this.j=true;}"><span class="ts">Play Now</span></a>
<ul>
<li><a href="./../../secure/m=create/index.html" class="fly"><span>New Users</span></a></li>
<li><a href="https://2009scape.org/site/game_guide/play.html"
onclick="if(!this.j){this.href+='?j=1';this.j=true;}" class="fly"><span>Existing
Users</span></a></li>
</ul>
</li>
<li class="top"><a id="account" class="tl" href="./../../404.html"><span
class="ts">Account</span></a>
<ul>
<li><a href="./../../secure/m=create/index.html" class="fly"><span>Create New
Account</span></a></li>
<li><a href="./../../404.html" class="fly"><span>Account Management</span></a>
</li>
</ul>
</li>
<li class="top"><a id="guide" class="tl" href="./../../site/kbase/guid/manual.html"><span
class="ts">Game
Guide</span></a>
<ul>
<li><a href="./../../site/kbase/guid/manual.html" class="fly"><span>Manual</span></a></li>
<li><a href="./../../site/kbase/guid/quests0.html" class="fly"><span>QuestHelp</span></a>
</li>
<li><a href="./../../404.html" class="fly"><span>Grand Exchange</span></a></li>
<li><a href="./../../404.html" class="fly"><span>Rules</span></a></li>
<li><a href="./../../404.html" class="fly"><span>Lores</span></a></li>
<li><a href="./../../404.html" class="fly"><span>What is 2009scape?</span></a>
</li>
</ul>
</li>
<li class="top"><a id="community" class="tl" href="./../../404.html"><span class="ts">Community</span></a>
<ul>
<li><a href="./services/m=hiscore/hiscores.html?world=2" class="fly"><span>Hiscores</span></a></li>
<li><a href="./../../404.html" class="fly"><span>Contributors</span></a></li>
</ul>
</li>
<li class="top"><a id="help" class="tl" href="./../../404.html"><span
class="ts">Help</span></a>
<ul>
<li><a href="./../../404.html" class="fly"><span>Customer Support</span></a></li>
<li><a href="./../../404.html" class="fly"><span>Password Recovery</span></a>
</li>
<li><a href="./../../404.html" class="fly"><span>Locked Account
Recovery</span></a></li>
<li><a href="./../../404.html" class="fly"><span>Appeal Bans & Mutes</span></a>
</li>
<li><a href="./../../404.html" class="fly"><span>Parents' Guide</span></a></li>
</ul>
</li>
<li class="top"><a href="https://github.com/2009scape/" id="login" class="tl"><span class="ts">Source
Code</span></a></li>
</ul>
<br class="clear" />
</div>
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Create a Free Account
</h1>
</div>
</div>
</div>
<div class="section">
<div class="brown_background sectionContentContainer">
<div class="inner_brown_background">
<div class="brown_box">
<div class="statusbarwrap">
<div id="statusbar">
<div class="left">
<div class="right">
<div class="statusbutton firstoffspring firstActive">
<div class="subButton left">1. Just watch the video</div>
</div>
<div class="statusbutton middleoffspring ">
<div class="subButton middle"></div>
</div>
<div class="statusbutton lastoffspring ">
<div class="subButton right"></div>
</div>
<br style="clear: both;" />
</div>
</div>
</div>
</div>
<br class="clear" />
<div class="width756">
<div id="errorlog" style="position: absolute; top: 5px; right: 5px; float: right; padding: 5px;">
</div>
<form id="createForm" action="https://secure/m=create/input_details.ws" method="post"
onsubmit="return checkit()">
<div class="inner_brown_box brown_box_stack" id="cIntro">
Create an account through <a
href="https://2009scape.org/site/game_guide/play.html">Downloading</a>
the game.
</div>
<div id="formBoxes" class="inner_brown_box brown_box_stack brown_box_padded">
<iframe width="100%" height="400" src="https://www.youtube.com/embed/ywtRbI89OuU" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<br><br>
</div>
<a href="https://2009scape.org/site/game_guide/play.html">
<div class="inner_brown_box brown_box_padded">
</div>
</a>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<br class="clear" />
</div>
<div id="footer">
<div class="contain">
<div class="footerdesc">
This website and its contents are copyright under AGPL<br />
Use of this website is subject to our <a href="../../site/terms/terms.html">Terms &amp;
Conditions</a> and <a href="../../site/privacy/privacy.html">Privacy Policy</a>.
</div>
<a class="jagexlink" href="/">
<img src="./../../site/2009scape-resources/img/branding/logo-footer-dark.webp" width="110" height="33" alt="2009Scape" />
</a>
<br class="clear" />
</div>
<br class="clear" />
</div>
</div>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var _pageTracker = _gat._getTracker("UA-2058817-15");
_pageTracker._setDomainName(".runescape.com");
_pageTracker._trackPageview();
} catch (x) { }
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-2058817-2");
pageTracker._setDomainName(".runescape.com");
pageTracker._trackPageview();
} catch (x) { }
</script>
</body>
<!-- Mirrored from secure.runescape.com/m=create/index.ws by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 08:58:30 GMT -->
<!-- Added by HTTrack -->
<meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
</html>

View File

@ -1,309 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=poll&ssl=0&expired=0&dest=results.ws?id=468 by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 09:09:50 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
<head>
<link rel="icon" type="image/vnd.microsoft.icon" href="../../site/favicon.ico">
<link rel="SHORTCUT ICON" href="../../site/favicon.ico">
<link rel="apple-touch-icon" href="../../site/img/mobile.webp">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Language" content="
en,
English
">
<meta name="keywords" content="RSPS, Open Source, 2009scape, Osrs, Oldschool Runescape, Runescape, zezima">
<meta name="description" content="Play RuneScape for free, and join a global community of millions as you complete quests and win enormous treasures in a 3D world full of magic and monsters.">
<meta name="title" content="RuneScape - MMORPG - The No.1 Free Online Multiplayer Game">
<title>RuneScape - MMORPG - The No.1 Free Online Multiplayer Game</title>
<style type="text/css">/*\*/@import url(../../site/css/global-34.css);/**/</style>
<script type="text/javascript" src="../../www.jagex.com/js/jquery/jquery_1_4_2.js"></script>
<script type="text/javascript">
$(function(){
$("#play, #playExisting, #playBannerNoad").each(function(){ this.href += "?j=1"; })
})
</script>
<style type="text/css">/*\*/@import url(../../site/css/weblogin-6.css);/**/</style>
<!--[if lt IE 7]>
<style type="text/css" media="screen">
#recaptcha_box {
background-position-x: center;
}
</style>
<![endif]-->
<script type="text/javascript">
function ShowWarning(strImg,bRecaptcha){
document.getElementById('warning_image').style.backgroundImage='url(https://site/img/weblogin/'+strImg+')';
var lb = document.getElementById('login_background');
var lp = document.getElementById('login_panel');
if ( bRecaptcha ){
/* Height sorted out by margins etc. Set heights auto and brown background */
lb.style.backgroundImage='none';
lb.style.backgroundColor='#2c210d';
}else{
/* Fixed height, adjust for warning (no warning for non-java or IE6) */
lb.style.backgroundImage='url(https://site/img/weblogin/loginarea_bg.webp)';
lb.style.height="404px";
}
document.getElementById('warning').style.display="block";
}
function SetFocus(){
/* If the username field is empty, it gets focus. If the password field is empty but username is filled,
it gets focus. Returns false to prevent submit if a field is empty. */
var Username = document.getElementById('username');
var Password = document.getElementById('password');
if ( Username.value == ''){
Username.focus();
return false;
}
if ( Password.value == ''){
Password.focus();
return false;
}
return true;
}
</script>
</head>
<body id="navlogin" class="bodyBackground">
<a name="top"></a>
<div class="bodyBackgroundHead">
<div id="menubox">
<ul id="menus">
<li class="top"><a href="../../site/title.html" id="home" class="tl"><span class="ts">Home</span></a></li>
<li class="top"><a id="play" class="tl" href="https://2009scape.org/site/game_guide/play.html" onclick="try{pageTracker._trackPageview('/play_game/menu/top')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/top')}catch(x){}"
><span class="ts">Play Now</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../m%3dcreate/index.html" class="fly"><span>New Users</span></a></li>
<li><a href="https://2009scape.org/site/game_guide/play.html" id="playExisting" onclick="try{pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}"
class="fly"><span>Existing Users</span></a></li>
<li><a href="../../site/options.html" class="fly"><span>Java Options</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="account" class="tl" href="../../site/account_management.html"><span class="ts">Account</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="members/members.html" class="fly"><span>Upgrade Your Account</span></a></li>
<li><a href="../m%3dcreate/index-2.html" class="fly"><span>Create New Account</span></a></li>
<li><a href="../../site/account_management.html" class="fly"><span>Account Management</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="guide" class="tl" href="../../site/kbase/guid/manual.html"><span class="ts">Game Guide</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/manual.html" class="fly"><span>Manual</span></a></li>
<li><a href="loginform802b.html" class="fly"><span>QuestHelp</span></a></li>
<li><a href="../../services/m%3ditemdb_rs/frontpage.html" class="fly"><span>Grand Exchange</span></a></li>
<li><a href="../../site/kbase/guid/rules_of_conduct.html" class="fly"><span>Rules</span></a></li>
<li><a href="../../site/kbase/guid/lore.html" class="fly"><span>Lores</span></a></li>
<li><a href="../../site/splash.html" class="fly"><span>What is RuneScape?</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="community" class="tl" href="../../services/m%3dforum/forums.html"><span class="ts">Community</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../services/m%3dforum/forums.html" class="fly"><span>Forums</span></a></li>
<li><a href="../../services/m%3dhiscore/hiscores.html" class="fly"><span>Hiscores</span></a></li>
<li><a href="../../site/kbase/guid/Player_Submissions.html" class="fly"><span>Player Submissions</span></a></li>
<li><a href="../../services/m%3dadventurers-log/index.html" class="fly"><span>Adventurer's Log</span></a></li>
<li><a href="../../services/m%3dpoll/index.html" class="fly"><span>Polls</span></a></li>
<li><a href="../../site/kbase/guid/Downloads_and_Wallpapers.html" class="fly"><span>Downloads &amp; Wallpapers</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="help" class="tl" href="../../site/kbase/guid/Customer_Support.html"><span class="ts">Help</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/Customer_Support.html" class="fly"><span>Customer Support</span></a></li>
<li><a href="../../site/loginapplet/loginappletb4b5.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=passwordchoice.ws" class="fly"><span>Password Recovery</span></a></li>
<li><a href="../../site/loginapplet/loginappletef7e.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=lockchoice.ws" class="fly"><span>Locked Account Recovery</span></a></li>
<li><a href="loginform14d4.html?mod=offence-appeal&amp;dest=index.ws" class="fly"><span>Appeal Bans &amp; Mutes</span></a></li>
<li><a href="../../services/m%3dbugtracker_v4/index.html" class="fly"><span>Submit a Bug Report</span></a></li>
<li><a href="../../site/parents.html" class="fly"><span>Parents' Guide</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a href="loginform53bb.html?mod=www&amp;ssl=0&amp;dest=index.ws" id="login" class="tl"><span class="ts">Log In</span></a></li>
</ul>
<br class="clear" />
</div>
<div id="bannerNoad">
<a href="https://2009scape.org/site/game_guide/play.html" class="HoverImg" id="playBannerNoad"><img src="../../site/img/main/skins/default/playnowc20a.webp" alt="Play Now" /></a>
</div>
<div id="scroll">
<div id="head"><div id="headBg">
<div id="langAndLogin">
<div id="lang">
<a href="../../site/title.html"><img alt="English" title="English" src="../../site/img/main/layout/en.gif" /></a>
<a href="../../site/l%3d1/title.html"><img alt="Deutsch" title="Deutsch" src="../../site/img/main/layout/de.gif" /></a>
<a href="../../site/l%3d2/title.html"><img alt="Fran&ccedil;ais" title="Fran&ccedil;ais" src="../../site/img/main/layout/fr.gif" /></a>
<a href="../../site/l%3d3/title.html"><img alt="Portugu&ecirc;s (BR)" title="Portugu&ecirc;s (BR)" src="../../site/img/main/layout/br.gif" /></a>
</div>
</div>
<div class="navigation">
<div class="location">
<b>Location: </b> <a href="../../site/title.html">Home</a> &gt;
Secure Login
</div>
</div>
</div></div>
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Secure Login
</h1>
</div>
</div>
</div>
<div class="section">
<div class="brown_background">
<div id="login_background" class="inner_brown_background" >
<div id="login_panel" class="brown_box" >
<form id="login_form" action="https://secure/m=weblogin/login.ws" method="post" autocomplete="off">
<div class="bottom">
<div class="repeat">
<div class="top_section">
<div id="message">
Please enter your username and password to continue.
</div> <div class="section_form" id="usernameSection">
<label for="username">Username:</label>
<input size="20" type="text" name="username" id="username" maxlength="12"/>
</div>
<div class="section_form" id="passwordSection">
<label for="password">Password:</label>
<input size="20" type="password" id="password" name="password" maxlength="20"/>
</div>
</div>
<div class="bottom_section">
<div id="remember">
<label for="rem">
<input type="checkbox" name="rem" id="rem" value="1" class="checkbox"/>
Check this box to remember username</label>
</div>
<div id="submit_button">
<button type="submit" value="Login Now!" onmouseover="this.style.backgroundPosition='bottom';" onmouseout="this.style.backgroundPosition='top';" onclick="return SetFocus();">Login Now!</button>
</div>
<input type="hidden" name="mod" value="poll"/>
<input type="hidden" name="ssl" value="0"/>
<input type="hidden" name="dest" value="results.ws?id=468"/>
</div>
</div>
</div>
</form>
</div>
<div class="buttons">
<a href="../m%3dcreate/index-2.html" class="createaccount"><span class="buttbg"></span>Create a New Account<br/>Click Here!</a>
<a href="../../site/loginapplet/loginappletb4b5.html?mod=accountappeal&amp;dest=passwordchoice.ws" class="recoveraccount"><span class="butt1bg"></span>Lost Your Password?<br/> Click Here!</a>
</div>
<div id="warning">
<div id="warning_image">
<p>Only enter your password where you see green and "Jagex Limited" in your browser's address bar.</p>
</div>
</div>
<script type="text/javascript">
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 7.0){
/* IE7 */
ShowWarning('ie7.html',false);
}
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 8.0){
/* IE8 */
ShowWarning('ie8.html',false);
}
else if(jQuery.browser.safari && parseFloat(jQuery.browser.version.substr(0,3)) >= 530.0){
/* Safari4 */
ShowWarning('safaric4ca.html?1',false);
}
else if(jQuery.browser.mozilla && parseFloat(jQuery.browser.version.substr(0,3)) >= 1.9){
/* FF3 */
ShowWarning('ff.html',false);
}
SetFocus();
</script>
<br class="clear" />
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>
<div id="footer">
<div class="contain">
<div class="footerdesc">
This website and its contents are copyright under AGPL<br />
Use of this website is subject to our <a href="../../site/terms/terms.html">Terms &amp; Conditions</a> and <a href="../../site/privacy/privacy.html">Privacy Policy</a>.
</div>
<a class="jagexlink" href="/">
<img src="../../site/img/main/layout/jagexc20a.webp" alt="Jagex" />
</a>
<br class="clear"/>
</div>
<br class="clear"/>
</div>
</div>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol)?"https://ssl.":"http://www.");
document.write(unescape("%3Cscript src='"+gaJsHost+"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var _pageTracker=_gat._getTracker("UA-2058817-15");
_pageTracker._setDomainName(".runescape.com");
_pageTracker._trackPageview();
}catch(x){}
</script>
<script type="text/javascript">
try {
var pageTracker=_gat._getTracker("UA-2058817-2");
pageTracker._setDomainName(".runescape.com");
pageTracker._trackPageview();
}catch(x){}
</script>
</body>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=poll&ssl=0&expired=0&dest=results.ws?id=468 by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 09:09:50 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
</html>

View File

@ -1,309 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=offence-appeal&ssl=1&expired=0&dest=index.ws by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 09:00:02 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
<head>
<link rel="icon" type="image/vnd.microsoft.icon" href="../../site/favicon.ico">
<link rel="SHORTCUT ICON" href="../../site/favicon.ico">
<link rel="apple-touch-icon" href="../../site/img/mobile.webp">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Language" content="
en,
English
">
<meta name="keywords" content="RSPS, Open Source, 2009scape, Osrs, Oldschool Runescape, Runescape, zezima">
<meta name="description" content="Play RuneScape for free, and join a global community of millions as you complete quests and win enormous treasures in a 3D world full of magic and monsters.">
<meta name="title" content="RuneScape - MMORPG - The No.1 Free Online Multiplayer Game">
<title>RuneScape - MMORPG - The No.1 Free Online Multiplayer Game</title>
<style type="text/css">/*\*/@import url(../../site/css/global-34.css);/**/</style>
<script type="text/javascript" src="../../www.jagex.com/js/jquery/jquery_1_4_2.js"></script>
<script type="text/javascript">
$(function(){
$("#play, #playExisting, #playBannerNoad").each(function(){ this.href += "?j=1"; })
})
</script>
<style type="text/css">/*\*/@import url(../../site/css/weblogin-6.css);/**/</style>
<!--[if lt IE 7]>
<style type="text/css" media="screen">
#recaptcha_box {
background-position-x: center;
}
</style>
<![endif]-->
<script type="text/javascript">
function ShowWarning(strImg,bRecaptcha){
document.getElementById('warning_image').style.backgroundImage='url(https://site/img/weblogin/'+strImg+')';
var lb = document.getElementById('login_background');
var lp = document.getElementById('login_panel');
if ( bRecaptcha ){
/* Height sorted out by margins etc. Set heights auto and brown background */
lb.style.backgroundImage='none';
lb.style.backgroundColor='#2c210d';
}else{
/* Fixed height, adjust for warning (no warning for non-java or IE6) */
lb.style.backgroundImage='url(https://site/img/weblogin/loginarea_bg.webp)';
lb.style.height="404px";
}
document.getElementById('warning').style.display="block";
}
function SetFocus(){
/* If the username field is empty, it gets focus. If the password field is empty but username is filled,
it gets focus. Returns false to prevent submit if a field is empty. */
var Username = document.getElementById('username');
var Password = document.getElementById('password');
if ( Username.value == ''){
Username.focus();
return false;
}
if ( Password.value == ''){
Password.focus();
return false;
}
return true;
}
</script>
</head>
<body id="navlogin" class="bodyBackground">
<a name="top"></a>
<div class="bodyBackgroundHead">
<div id="menubox">
<ul id="menus">
<li class="top"><a href="../../site/title.html" id="home" class="tl"><span class="ts">Home</span></a></li>
<li class="top"><a id="play" class="tl" href="https://2009scape.org/site/game_guide/play.html" onclick="try{pageTracker._trackPageview('/play_game/menu/top')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/top')}catch(x){}"
><span class="ts">Play Now</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../m%3dcreate/index.html" class="fly"><span>New Users</span></a></li>
<li><a href="https://2009scape.org/site/game_guide/play.html" id="playExisting" onclick="try{pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}"
class="fly"><span>Existing Users</span></a></li>
<li><a href="../../site/options.html" class="fly"><span>Java Options</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="account" class="tl" href="../../site/account_management.html"><span class="ts">Account</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="members/members.html" class="fly"><span>Upgrade Your Account</span></a></li>
<li><a href="../m%3dcreate/index-2.html" class="fly"><span>Create New Account</span></a></li>
<li><a href="../../site/account_management.html" class="fly"><span>Account Management</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="guide" class="tl" href="../../site/kbase/guid/manual.html"><span class="ts">Game Guide</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/manual.html" class="fly"><span>Manual</span></a></li>
<li><a href="loginform802b.html" class="fly"><span>QuestHelp</span></a></li>
<li><a href="../../services/m%3ditemdb_rs/frontpage.html" class="fly"><span>Grand Exchange</span></a></li>
<li><a href="../../site/kbase/guid/rules_of_conduct.html" class="fly"><span>Rules</span></a></li>
<li><a href="../../site/kbase/guid/lore.html" class="fly"><span>Lores</span></a></li>
<li><a href="../../site/splash.html" class="fly"><span>What is 2009Scape?</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="community" class="tl" href="../../services/m%3dforum/forums.html"><span class="ts">Community</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../services/m%3dforum/forums.html" class="fly"><span>Forums</span></a></li>
<li><a href="../../services/m%3dhiscore/hiscores.html" class="fly"><span>Hiscores</span></a></li>
<li><a href="../../site/kbase/guid/Player_Submissions.html" class="fly"><span>Player Submissions</span></a></li>
<li><a href="../../services/m%3dadventurers-log/index.html" class="fly"><span>Adventurer's Log</span></a></li>
<li><a href="../../services/m%3dpoll/index.html" class="fly"><span>Polls</span></a></li>
<li><a href="../../site/kbase/guid/Downloads_and_Wallpapers.html" class="fly"><span>Downloads &amp; Wallpapers</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="help" class="tl" href="../../site/kbase/guid/Customer_Support.html"><span class="ts">Help</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/Customer_Support.html" class="fly"><span>Customer Support</span></a></li>
<li><a href="../../site/loginapplet/loginappletb4b5.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=passwordchoice.ws" class="fly"><span>Password Recovery</span></a></li>
<li><a href="../../site/loginapplet/loginappletef7e.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=lockchoice.ws" class="fly"><span>Locked Account Recovery</span></a></li>
<li><a href="loginform14d4.html?mod=offence-appeal&amp;dest=index.ws" class="fly"><span>Appeal Bans &amp; Mutes</span></a></li>
<li><a href="../../services/m%3dbugtracker_v4/index.html" class="fly"><span>Submit a Bug Report</span></a></li>
<li><a href="../../site/parents.html" class="fly"><span>Parents' Guide</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a href="loginform53bb.html?mod=www&amp;ssl=0&amp;dest=index.ws" id="login" class="tl"><span class="ts">Log In</span></a></li>
</ul>
<br class="clear" />
</div>
<div id="bannerNoad">
<a href="https://2009scape.org/site/game_guide/play.html" class="HoverImg" id="playBannerNoad"><img src="../../site/img/main/skins/default/playnowc20a.webp" alt="Play Now" /></a>
</div>
<div id="scroll">
<div id="head"><div id="headBg">
<div id="langAndLogin">
<div id="lang">
<a href="../../site/title.html"><img alt="English" title="English" src="../../site/img/main/layout/en.gif" /></a>
<a href="../../site/l%3d1/title.html"><img alt="Deutsch" title="Deutsch" src="../../site/img/main/layout/de.gif" /></a>
<a href="../../site/l%3d2/title.html"><img alt="Fran&ccedil;ais" title="Fran&ccedil;ais" src="../../site/img/main/layout/fr.gif" /></a>
<a href="../../site/l%3d3/title.html"><img alt="Portugu&ecirc;s (BR)" title="Portugu&ecirc;s (BR)" src="../../site/img/main/layout/br.gif" /></a>
</div>
</div>
<div class="navigation">
<div class="location">
<b>Location: </b> <a href="../../site/title.html">Home</a> &gt;
Secure Login
</div>
</div>
</div></div>
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Secure Login
</h1>
</div>
</div>
</div>
<div class="section">
<div class="brown_background">
<div id="login_background" class="inner_brown_background" >
<div id="login_panel" class="brown_box" >
<form id="login_form" action="https://secure/m=weblogin/login.ws" method="post" autocomplete="off">
<div class="bottom">
<div class="repeat">
<div class="top_section">
<div id="message">
Please enter your username and password to continue.
</div> <div class="section_form" id="usernameSection">
<label for="username">Username:</label>
<input size="20" type="text" name="username" id="username" maxlength="12"/>
</div>
<div class="section_form" id="passwordSection">
<label for="password">Password:</label>
<input size="20" type="password" id="password" name="password" maxlength="20"/>
</div>
</div>
<div class="bottom_section">
<div id="remember">
<label for="rem">
<input type="checkbox" name="rem" id="rem" value="1" class="checkbox"/>
Check this box to remember username</label>
</div>
<div id="submit_button">
<button type="submit" value="Login Now!" onmouseover="this.style.backgroundPosition='bottom';" onmouseout="this.style.backgroundPosition='top';" onclick="return SetFocus();">Login Now!</button>
</div>
<input type="hidden" name="mod" value="offence-appeal"/>
<input type="hidden" name="ssl" value="1"/>
<input type="hidden" name="dest" value="index.ws"/>
</div>
</div>
</div>
</form>
</div>
<div class="buttons">
<a href="../m%3dcreate/index-2.html" class="createaccount"><span class="buttbg"></span>Create a New Account<br/>Click Here!</a>
<a href="../../site/loginapplet/loginappletb4b5.html?mod=accountappeal&amp;dest=passwordchoice.ws" class="recoveraccount"><span class="butt1bg"></span>Lost Your Password?<br/> Click Here!</a>
</div>
<div id="warning">
<div id="warning_image">
<p>Only enter your password where you see green and "Jagex Limited" in your browser's address bar.</p>
</div>
</div>
<script type="text/javascript">
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 7.0){
/* IE7 */
ShowWarning('ie7.html',false);
}
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 8.0){
/* IE8 */
ShowWarning('ie8.html',false);
}
else if(jQuery.browser.safari && parseFloat(jQuery.browser.version.substr(0,3)) >= 530.0){
/* Safari4 */
ShowWarning('safaric4ca.html?1',false);
}
else if(jQuery.browser.mozilla && parseFloat(jQuery.browser.version.substr(0,3)) >= 1.9){
/* FF3 */
ShowWarning('ff.html',false);
}
SetFocus();
</script>
<br class="clear" />
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>
<div id="footer">
<div class="contain">
<div class="footerdesc">
This website and its contents are copyright under AGPL<br />
Use of this website is subject to our <a href="../../site/terms/terms.html">Terms &amp; Conditions</a> and <a href="../../site/privacy/privacy.html">Privacy Policy</a>.
</div>
<a class="jagexlink" href="/">
<img src="../../site/img/main/layout/jagexc20a.webp" alt="Jagex" />
</a>
<br class="clear"/>
</div>
<br class="clear"/>
</div>
</div>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol)?"https://ssl.":"http://www.");
document.write(unescape("%3Cscript src='"+gaJsHost+"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var _pageTracker=_gat._getTracker("UA-2058817-15");
_pageTracker._setDomainName(".runescape.com");
_pageTracker._trackPageview();
}catch(x){}
</script>
<script type="text/javascript">
try {
var pageTracker=_gat._getTracker("UA-2058817-2");
pageTracker._setDomainName(".runescape.com");
pageTracker._trackPageview();
}catch(x){}
</script>
</body>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=offence-appeal&ssl=1&expired=0&dest=index.ws by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 09:00:02 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
</html>

View File

@ -1,309 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=adventurers-log&ssl=0&dest= by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 09:09:50 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
<head>
<link rel="icon" type="image/vnd.microsoft.icon" href="../../site/favicon.ico">
<link rel="SHORTCUT ICON" href="../../site/favicon.ico">
<link rel="apple-touch-icon" href="../../site/img/mobile.webp">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Language" content="
en,
English
">
<meta name="keywords" content="RSPS, Open Source, 2009scape, Osrs, Oldschool Runescape, Runescape, zezima">
<meta name="description" content="Play RuneScape for free, and join a global community of millions as you complete quests and win enormous treasures in a 3D world full of magic and monsters.">
<meta name="title" content="RuneScape - MMORPG - The No.1 Free Online Multiplayer Game">
<title>RuneScape - MMORPG - The No.1 Free Online Multiplayer Game</title>
<style type="text/css">/*\*/@import url(../../site/css/global-34.css);/**/</style>
<script type="text/javascript" src="../../www.jagex.com/js/jquery/jquery_1_4_2.js"></script>
<script type="text/javascript">
$(function(){
$("#play, #playExisting, #playBannerNoad").each(function(){ this.href += "?j=1"; })
})
</script>
<style type="text/css">/*\*/@import url(../../site/css/weblogin-6.css);/**/</style>
<!--[if lt IE 7]>
<style type="text/css" media="screen">
#recaptcha_box {
background-position-x: center;
}
</style>
<![endif]-->
<script type="text/javascript">
function ShowWarning(strImg,bRecaptcha){
document.getElementById('warning_image').style.backgroundImage='url(https://site/img/weblogin/'+strImg+')';
var lb = document.getElementById('login_background');
var lp = document.getElementById('login_panel');
if ( bRecaptcha ){
/* Height sorted out by margins etc. Set heights auto and brown background */
lb.style.backgroundImage='none';
lb.style.backgroundColor='#2c210d';
}else{
/* Fixed height, adjust for warning (no warning for non-java or IE6) */
lb.style.backgroundImage='url(https://site/img/weblogin/loginarea_bg.webp)';
lb.style.height="404px";
}
document.getElementById('warning').style.display="block";
}
function SetFocus(){
/* If the username field is empty, it gets focus. If the password field is empty but username is filled,
it gets focus. Returns false to prevent submit if a field is empty. */
var Username = document.getElementById('username');
var Password = document.getElementById('password');
if ( Username.value == ''){
Username.focus();
return false;
}
if ( Password.value == ''){
Password.focus();
return false;
}
return true;
}
</script>
</head>
<body id="navlogin" class="bodyBackground">
<a name="top"></a>
<div class="bodyBackgroundHead">
<div id="menubox">
<ul id="menus">
<li class="top"><a href="../../site/title.html" id="home" class="tl"><span class="ts">Home</span></a></li>
<li class="top"><a id="play" class="tl" href="https://2009scape.org/site/game_guide/play.html" onclick="try{pageTracker._trackPageview('/play_game/menu/top')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/top')}catch(x){}"
><span class="ts">Play Now</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../m%3dcreate/index.html" class="fly"><span>New Users</span></a></li>
<li><a href="https://2009scape.org/site/game_guide/play.html" id="playExisting" onclick="try{pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}"
class="fly"><span>Existing Users</span></a></li>
<li><a href="../../site/options.html" class="fly"><span>Java Options</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="account" class="tl" href="../../site/account_management.html"><span class="ts">Account</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="members/members.html" class="fly"><span>Upgrade Your Account</span></a></li>
<li><a href="../m%3dcreate/index-2.html" class="fly"><span>Create New Account</span></a></li>
<li><a href="../../site/account_management.html" class="fly"><span>Account Management</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="guide" class="tl" href="../../site/kbase/guid/manual.html"><span class="ts">Game Guide</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/manual.html" class="fly"><span>Manual</span></a></li>
<li><a href="loginform802b.html" class="fly"><span>QuestHelp</span></a></li>
<li><a href="../../services/m%3ditemdb_rs/frontpage.html" class="fly"><span>Grand Exchange</span></a></li>
<li><a href="../../site/kbase/guid/rules_of_conduct.html" class="fly"><span>Rules</span></a></li>
<li><a href="../../site/kbase/guid/lore.html" class="fly"><span>Lores</span></a></li>
<li><a href="../../site/splash.html" class="fly"><span>What is RuneScape?</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="community" class="tl" href="../../services/m%3dforum/forums.html"><span class="ts">Community</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../services/m%3dforum/forums.html" class="fly"><span>Forums</span></a></li>
<li><a href="../../services/m%3dhiscore/hiscores.html" class="fly"><span>Hiscores</span></a></li>
<li><a href="../../site/kbase/guid/Player_Submissions.html" class="fly"><span>Player Submissions</span></a></li>
<li><a href="../../services/m%3dadventurers-log/index.html" class="fly"><span>Adventurer's Log</span></a></li>
<li><a href="../../services/m%3dpoll/index.html" class="fly"><span>Polls</span></a></li>
<li><a href="../../site/kbase/guid/Downloads_and_Wallpapers.html" class="fly"><span>Downloads &amp; Wallpapers</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="help" class="tl" href="../../site/kbase/guid/Customer_Support.html"><span class="ts">Help</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/Customer_Support.html" class="fly"><span>Customer Support</span></a></li>
<li><a href="../../site/loginapplet/loginappletb4b5.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=passwordchoice.ws" class="fly"><span>Password Recovery</span></a></li>
<li><a href="../../site/loginapplet/loginappletef7e.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=lockchoice.ws" class="fly"><span>Locked Account Recovery</span></a></li>
<li><a href="loginform14d4.html?mod=offence-appeal&amp;dest=index.ws" class="fly"><span>Appeal Bans &amp; Mutes</span></a></li>
<li><a href="../../services/m%3dbugtracker_v4/index.html" class="fly"><span>Submit a Bug Report</span></a></li>
<li><a href="../../site/parents.html" class="fly"><span>Parents' Guide</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a href="loginform53bb.html?mod=www&amp;ssl=0&amp;dest=index.ws" id="login" class="tl"><span class="ts">Log In</span></a></li>
</ul>
<br class="clear" />
</div>
<div id="bannerNoad">
<a href="https://2009scape.org/site/game_guide/play.html" class="HoverImg" id="playBannerNoad"><img src="../../site/img/main/skins/default/playnowc20a.webp" alt="Play Now" /></a>
</div>
<div id="scroll">
<div id="head"><div id="headBg">
<div id="langAndLogin">
<div id="lang">
<a href="../../site/title.html"><img alt="English" title="English" src="../../site/img/main/layout/en.gif" /></a>
<a href="../../site/l%3d1/title.html"><img alt="Deutsch" title="Deutsch" src="../../site/img/main/layout/de.gif" /></a>
<a href="../../site/l%3d2/title.html"><img alt="Fran&ccedil;ais" title="Fran&ccedil;ais" src="../../site/img/main/layout/fr.gif" /></a>
<a href="../../site/l%3d3/title.html"><img alt="Portugu&ecirc;s (BR)" title="Portugu&ecirc;s (BR)" src="../../site/img/main/layout/br.gif" /></a>
</div>
</div>
<div class="navigation">
<div class="location">
<b>Location: </b> <a href="../../site/title.html">Home</a> &gt;
Secure Login
</div>
</div>
</div></div>
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Secure Login
</h1>
</div>
</div>
</div>
<div class="section">
<div class="brown_background">
<div id="login_background" class="inner_brown_background" >
<div id="login_panel" class="brown_box" >
<form id="login_form" action="https://secure/m=weblogin/login.ws" method="post" autocomplete="off">
<div class="bottom">
<div class="repeat">
<div class="top_section">
<div id="message">
Please enter your username and password to continue.
</div> <div class="section_form" id="usernameSection">
<label for="username">Username:</label>
<input size="20" type="text" name="username" id="username" maxlength="12"/>
</div>
<div class="section_form" id="passwordSection">
<label for="password">Password:</label>
<input size="20" type="password" id="password" name="password" maxlength="20"/>
</div>
</div>
<div class="bottom_section">
<div id="remember">
<label for="rem">
<input type="checkbox" name="rem" id="rem" value="1" class="checkbox"/>
Check this box to remember username</label>
</div>
<div id="submit_button">
<button type="submit" value="Login Now!" onmouseover="this.style.backgroundPosition='bottom';" onmouseout="this.style.backgroundPosition='top';" onclick="return SetFocus();">Login Now!</button>
</div>
<input type="hidden" name="mod" value="adventurers-log"/>
<input type="hidden" name="ssl" value="0"/>
<input type="hidden" name="dest" value=""/>
</div>
</div>
</div>
</form>
</div>
<div class="buttons">
<a href="../m%3dcreate/index-2.html" class="createaccount"><span class="buttbg"></span>Create a New Account<br/>Click Here!</a>
<a href="../../site/loginapplet/loginappletb4b5.html?mod=accountappeal&amp;dest=passwordchoice.ws" class="recoveraccount"><span class="butt1bg"></span>Lost Your Password?<br/> Click Here!</a>
</div>
<div id="warning">
<div id="warning_image">
<p>Only enter your password where you see green and "Jagex Limited" in your browser's address bar.</p>
</div>
</div>
<script type="text/javascript">
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 7.0){
/* IE7 */
ShowWarning('ie7.html',false);
}
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 8.0){
/* IE8 */
ShowWarning('ie8.html',false);
}
else if(jQuery.browser.safari && parseFloat(jQuery.browser.version.substr(0,3)) >= 530.0){
/* Safari4 */
ShowWarning('safaric4ca.html?1',false);
}
else if(jQuery.browser.mozilla && parseFloat(jQuery.browser.version.substr(0,3)) >= 1.9){
/* FF3 */
ShowWarning('ff.html',false);
}
SetFocus();
</script>
<br class="clear" />
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>
<div id="footer">
<div class="contain">
<div class="footerdesc">
This website and its contents are copyright under AGPL<br />
Use of this website is subject to our <a href="../../site/terms/terms.html">Terms &amp; Conditions</a> and <a href="../../site/privacy/privacy.html">Privacy Policy</a>.
</div>
<a class="jagexlink" href="/">
<img src="../../site/img/main/layout/jagexc20a.webp" alt="Jagex" />
</a>
<br class="clear"/>
</div>
<br class="clear"/>
</div>
</div>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol)?"https://ssl.":"http://www.");
document.write(unescape("%3Cscript src='"+gaJsHost+"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var _pageTracker=_gat._getTracker("UA-2058817-15");
_pageTracker._setDomainName(".runescape.com");
_pageTracker._trackPageview();
}catch(x){}
</script>
<script type="text/javascript">
try {
var pageTracker=_gat._getTracker("UA-2058817-2");
pageTracker._setDomainName(".runescape.com");
pageTracker._trackPageview();
}catch(x){}
</script>
</body>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=adventurers-log&ssl=0&dest= by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 09:09:50 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
</html>

View File

@ -1,309 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=poll&ssl=0&expired=0&dest=vote.ws?id=468 by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 09:02:08 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
<head>
<link rel="icon" type="image/vnd.microsoft.icon" href="../../site/favicon.ico">
<link rel="SHORTCUT ICON" href="../../site/favicon.ico">
<link rel="apple-touch-icon" href="../../site/img/mobile.webp">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Language" content="
en,
English
">
<meta name="keywords" content="RSPS, Open Source, 2009scape, Osrs, Oldschool Runescape, Runescape, zezima">
<meta name="description" content="Play RuneScape for free, and join a global community of millions as you complete quests and win enormous treasures in a 3D world full of magic and monsters.">
<meta name="title" content="RuneScape - MMORPG - The No.1 Free Online Multiplayer Game">
<title>RuneScape - MMORPG - The No.1 Free Online Multiplayer Game</title>
<style type="text/css">/*\*/@import url(../../site/css/global-34.css);/**/</style>
<script type="text/javascript" src="../../www.jagex.com/js/jquery/jquery_1_4_2.js"></script>
<script type="text/javascript">
$(function(){
$("#play, #playExisting, #playBannerNoad").each(function(){ this.href += "?j=1"; })
})
</script>
<style type="text/css">/*\*/@import url(../../site/css/weblogin-6.css);/**/</style>
<!--[if lt IE 7]>
<style type="text/css" media="screen">
#recaptcha_box {
background-position-x: center;
}
</style>
<![endif]-->
<script type="text/javascript">
function ShowWarning(strImg,bRecaptcha){
document.getElementById('warning_image').style.backgroundImage='url(https://site/img/weblogin/'+strImg+')';
var lb = document.getElementById('login_background');
var lp = document.getElementById('login_panel');
if ( bRecaptcha ){
/* Height sorted out by margins etc. Set heights auto and brown background */
lb.style.backgroundImage='none';
lb.style.backgroundColor='#2c210d';
}else{
/* Fixed height, adjust for warning (no warning for non-java or IE6) */
lb.style.backgroundImage='url(https://site/img/weblogin/loginarea_bg.webp)';
lb.style.height="404px";
}
document.getElementById('warning').style.display="block";
}
function SetFocus(){
/* If the username field is empty, it gets focus. If the password field is empty but username is filled,
it gets focus. Returns false to prevent submit if a field is empty. */
var Username = document.getElementById('username');
var Password = document.getElementById('password');
if ( Username.value == ''){
Username.focus();
return false;
}
if ( Password.value == ''){
Password.focus();
return false;
}
return true;
}
</script>
</head>
<body id="navlogin" class="bodyBackground">
<a name="top"></a>
<div class="bodyBackgroundHead">
<div id="menubox">
<ul id="menus">
<li class="top"><a href="../../site/title.html" id="home" class="tl"><span class="ts">Home</span></a></li>
<li class="top"><a id="play" class="tl" href="https://2009scape.org/site/game_guide/play.html" onclick="try{pageTracker._trackPageview('/play_game/menu/top')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/top')}catch(x){}"
><span class="ts">Play Now</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../m%3dcreate/index.html" class="fly"><span>New Users</span></a></li>
<li><a href="https://2009scape.org/site/game_guide/play.html" id="playExisting" onclick="try{pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}"
class="fly"><span>Existing Users</span></a></li>
<li><a href="../../site/options.html" class="fly"><span>Java Options</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="account" class="tl" href="../../site/account_management.html"><span class="ts">Account</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="members/members.html" class="fly"><span>Upgrade Your Account</span></a></li>
<li><a href="../m%3dcreate/index-2.html" class="fly"><span>Create New Account</span></a></li>
<li><a href="../../site/account_management.html" class="fly"><span>Account Management</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="guide" class="tl" href="../../site/kbase/guid/manual.html"><span class="ts">Game Guide</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/manual.html" class="fly"><span>Manual</span></a></li>
<li><a href="loginform802b.html" class="fly"><span>QuestHelp</span></a></li>
<li><a href="../../services/m%3ditemdb_rs/frontpage.html" class="fly"><span>Grand Exchange</span></a></li>
<li><a href="../../site/kbase/guid/rules_of_conduct.html" class="fly"><span>Rules</span></a></li>
<li><a href="../../site/kbase/guid/lore.html" class="fly"><span>Lores</span></a></li>
<li><a href="../../site/splash.html" class="fly"><span>What is RuneScape?</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="community" class="tl" href="../../services/m%3dforum/forums.html"><span class="ts">Community</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../services/m%3dforum/forums.html" class="fly"><span>Forums</span></a></li>
<li><a href="../../services/m%3dhiscore/hiscores.html" class="fly"><span>Hiscores</span></a></li>
<li><a href="../../site/kbase/guid/Player_Submissions.html" class="fly"><span>Player Submissions</span></a></li>
<li><a href="../../services/m%3dadventurers-log/index.html" class="fly"><span>Adventurer's Log</span></a></li>
<li><a href="../../services/m%3dpoll/index.html" class="fly"><span>Polls</span></a></li>
<li><a href="../../site/kbase/guid/Downloads_and_Wallpapers.html" class="fly"><span>Downloads &amp; Wallpapers</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="help" class="tl" href="../../site/kbase/guid/Customer_Support.html"><span class="ts">Help</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/Customer_Support.html" class="fly"><span>Customer Support</span></a></li>
<li><a href="../../site/loginapplet/loginappletb4b5.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=passwordchoice.ws" class="fly"><span>Password Recovery</span></a></li>
<li><a href="../../site/loginapplet/loginappletef7e.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=lockchoice.ws" class="fly"><span>Locked Account Recovery</span></a></li>
<li><a href="loginform14d4.html?mod=offence-appeal&amp;dest=index.ws" class="fly"><span>Appeal Bans &amp; Mutes</span></a></li>
<li><a href="../../services/m%3dbugtracker_v4/index.html" class="fly"><span>Submit a Bug Report</span></a></li>
<li><a href="../../site/parents.html" class="fly"><span>Parents' Guide</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a href="loginform53bb.html?mod=www&amp;ssl=0&amp;dest=index.ws" id="login" class="tl"><span class="ts">Log In</span></a></li>
</ul>
<br class="clear" />
</div>
<div id="bannerNoad">
<a href="https://2009scape.org/site/game_guide/play.html" class="HoverImg" id="playBannerNoad"><img src="../../site/img/main/skins/default/playnowc20a.webp" alt="Play Now" /></a>
</div>
<div id="scroll">
<div id="head"><div id="headBg">
<div id="langAndLogin">
<div id="lang">
<a href="../../site/title.html"><img alt="English" title="English" src="../../site/img/main/layout/en.gif" /></a>
<a href="../../site/l%3d1/title.html"><img alt="Deutsch" title="Deutsch" src="../../site/img/main/layout/de.gif" /></a>
<a href="../../site/l%3d2/title.html"><img alt="Fran&ccedil;ais" title="Fran&ccedil;ais" src="../../site/img/main/layout/fr.gif" /></a>
<a href="../../site/l%3d3/title.html"><img alt="Portugu&ecirc;s (BR)" title="Portugu&ecirc;s (BR)" src="../../site/img/main/layout/br.gif" /></a>
</div>
</div>
<div class="navigation">
<div class="location">
<b>Location: </b> <a href="../../site/title.html">Home</a> &gt;
Secure Login
</div>
</div>
</div></div>
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Secure Login
</h1>
</div>
</div>
</div>
<div class="section">
<div class="brown_background">
<div id="login_background" class="inner_brown_background" >
<div id="login_panel" class="brown_box" >
<form id="login_form" action="https://secure/m=weblogin/login.ws" method="post" autocomplete="off">
<div class="bottom">
<div class="repeat">
<div class="top_section">
<div id="message">
Please enter your username and password to continue.
</div> <div class="section_form" id="usernameSection">
<label for="username">Username:</label>
<input size="20" type="text" name="username" id="username" maxlength="12"/>
</div>
<div class="section_form" id="passwordSection">
<label for="password">Password:</label>
<input size="20" type="password" id="password" name="password" maxlength="20"/>
</div>
</div>
<div class="bottom_section">
<div id="remember">
<label for="rem">
<input type="checkbox" name="rem" id="rem" value="1" class="checkbox"/>
Check this box to remember username</label>
</div>
<div id="submit_button">
<button type="submit" value="Login Now!" onmouseover="this.style.backgroundPosition='bottom';" onmouseout="this.style.backgroundPosition='top';" onclick="return SetFocus();">Login Now!</button>
</div>
<input type="hidden" name="mod" value="poll"/>
<input type="hidden" name="ssl" value="0"/>
<input type="hidden" name="dest" value="vote.ws?id=468"/>
</div>
</div>
</div>
</form>
</div>
<div class="buttons">
<a href="../m%3dcreate/index-2.html" class="createaccount"><span class="buttbg"></span>Create a New Account<br/>Click Here!</a>
<a href="../../site/loginapplet/loginappletb4b5.html?mod=accountappeal&amp;dest=passwordchoice.ws" class="recoveraccount"><span class="butt1bg"></span>Lost Your Password?<br/> Click Here!</a>
</div>
<div id="warning">
<div id="warning_image">
<p>Only enter your password where you see green and "Jagex Limited" in your browser's address bar.</p>
</div>
</div>
<script type="text/javascript">
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 7.0){
/* IE7 */
ShowWarning('ie7.html',false);
}
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 8.0){
/* IE8 */
ShowWarning('ie8.html',false);
}
else if(jQuery.browser.safari && parseFloat(jQuery.browser.version.substr(0,3)) >= 530.0){
/* Safari4 */
ShowWarning('safaric4ca.html?1',false);
}
else if(jQuery.browser.mozilla && parseFloat(jQuery.browser.version.substr(0,3)) >= 1.9){
/* FF3 */
ShowWarning('ff.html',false);
}
SetFocus();
</script>
<br class="clear" />
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>
<div id="footer">
<div class="contain">
<div class="footerdesc">
This website and its contents are copyright under AGPL<br />
Use of this website is subject to our <a href="../../site/terms/terms.html">Terms &amp; Conditions</a> and <a href="../../site/privacy/privacy.html">Privacy Policy</a>.
</div>
<a class="jagexlink" href="/">
<img src="../../site/img/main/layout/jagexc20a.webp" alt="Jagex" />
</a>
<br class="clear"/>
</div>
<br class="clear"/>
</div>
</div>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol)?"https://ssl.":"http://www.");
document.write(unescape("%3Cscript src='"+gaJsHost+"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var _pageTracker=_gat._getTracker("UA-2058817-15");
_pageTracker._setDomainName(".runescape.com");
_pageTracker._trackPageview();
}catch(x){}
</script>
<script type="text/javascript">
try {
var pageTracker=_gat._getTracker("UA-2058817-2");
pageTracker._setDomainName(".runescape.com");
pageTracker._trackPageview();
}catch(x){}
</script>
</body>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=poll&ssl=0&expired=0&dest=vote.ws?id=468 by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 09:02:08 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
</html>

View File

@ -1,309 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=poll&ssl=0&expired=0&dest=vote.ws?id=455 by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 10:50:06 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
<head>
<link rel="icon" type="image/vnd.microsoft.icon" href="../../site/favicon.ico">
<link rel="SHORTCUT ICON" href="../../site/favicon.ico">
<link rel="apple-touch-icon" href="../../site/img/mobile.webp">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Language" content="
en,
English
">
<meta name="keywords" content="RSPS, Open Source, 2009scape, Osrs, Oldschool Runescape, Runescape, zezima">
<meta name="description" content="Play RuneScape for free, and join a global community of millions as you complete quests and win enormous treasures in a 3D world full of magic and monsters.">
<meta name="title" content="RuneScape - MMORPG - The No.1 Free Online Multiplayer Game">
<title>RuneScape - MMORPG - The No.1 Free Online Multiplayer Game</title>
<style type="text/css">/*\*/@import url(../../site/css/global-34.css);/**/</style>
<script type="text/javascript" src="../../www.jagex.com/js/jquery/jquery_1_4_2.js"></script>
<script type="text/javascript">
$(function(){
$("#play, #playExisting, #playBannerNoad").each(function(){ this.href += "?j=1"; })
})
</script>
<style type="text/css">/*\*/@import url(../../site/css/weblogin-6.css);/**/</style>
<!--[if lt IE 7]>
<style type="text/css" media="screen">
#recaptcha_box {
background-position-x: center;
}
</style>
<![endif]-->
<script type="text/javascript">
function ShowWarning(strImg,bRecaptcha){
document.getElementById('warning_image').style.backgroundImage='url(https://site/img/weblogin/'+strImg+')';
var lb = document.getElementById('login_background');
var lp = document.getElementById('login_panel');
if ( bRecaptcha ){
/* Height sorted out by margins etc. Set heights auto and brown background */
lb.style.backgroundImage='none';
lb.style.backgroundColor='#2c210d';
}else{
/* Fixed height, adjust for warning (no warning for non-java or IE6) */
lb.style.backgroundImage='url(https://site/img/weblogin/loginarea_bg.webp)';
lb.style.height="404px";
}
document.getElementById('warning').style.display="block";
}
function SetFocus(){
/* If the username field is empty, it gets focus. If the password field is empty but username is filled,
it gets focus. Returns false to prevent submit if a field is empty. */
var Username = document.getElementById('username');
var Password = document.getElementById('password');
if ( Username.value == ''){
Username.focus();
return false;
}
if ( Password.value == ''){
Password.focus();
return false;
}
return true;
}
</script>
</head>
<body id="navlogin" class="bodyBackground">
<a name="top"></a>
<div class="bodyBackgroundHead">
<div id="menubox">
<ul id="menus">
<li class="top"><a href="../../site/title.html" id="home" class="tl"><span class="ts">Home</span></a></li>
<li class="top"><a id="play" class="tl" href="https://2009scape.org/site/game_guide/play.html" onclick="try{pageTracker._trackPageview('/play_game/menu/top')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/top')}catch(x){}"
><span class="ts">Play Now</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../m%3dcreate/index.html" class="fly"><span>New Users</span></a></li>
<li><a href="https://2009scape.org/site/game_guide/play.html" id="playExisting" onclick="try{pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}"
class="fly"><span>Existing Users</span></a></li>
<li><a href="../../site/options.html" class="fly"><span>Java Options</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="account" class="tl" href="../../site/account_management.html"><span class="ts">Account</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="members/members.html" class="fly"><span>Upgrade Your Account</span></a></li>
<li><a href="../m%3dcreate/index-2.html" class="fly"><span>Create New Account</span></a></li>
<li><a href="../../site/account_management.html" class="fly"><span>Account Management</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="guide" class="tl" href="../../site/kbase/guid/manual.html"><span class="ts">Game Guide</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/manual.html" class="fly"><span>Manual</span></a></li>
<li><a href="loginform802b.html" class="fly"><span>QuestHelp</span></a></li>
<li><a href="../../services/m%3ditemdb_rs/frontpage.html" class="fly"><span>Grand Exchange</span></a></li>
<li><a href="../../site/kbase/guid/rules_of_conduct.html" class="fly"><span>Rules</span></a></li>
<li><a href="../../site/kbase/guid/lore.html" class="fly"><span>Lores</span></a></li>
<li><a href="../../site/splash.html" class="fly"><span>What is RuneScape?</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="community" class="tl" href="../../services/m%3dforum/forums.html"><span class="ts">Community</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../services/m%3dforum/forums.html" class="fly"><span>Forums</span></a></li>
<li><a href="../../services/m%3dhiscore/hiscores.html" class="fly"><span>Hiscores</span></a></li>
<li><a href="../../site/kbase/guid/Player_Submissions.html" class="fly"><span>Player Submissions</span></a></li>
<li><a href="../../services/m%3dadventurers-log/index.html" class="fly"><span>Adventurer's Log</span></a></li>
<li><a href="../../services/m%3dpoll/index.html" class="fly"><span>Polls</span></a></li>
<li><a href="../../site/kbase/guid/Downloads_and_Wallpapers.html" class="fly"><span>Downloads &amp; Wallpapers</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="help" class="tl" href="../../site/kbase/guid/Customer_Support.html"><span class="ts">Help</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/Customer_Support.html" class="fly"><span>Customer Support</span></a></li>
<li><a href="../../site/loginapplet/loginappletb4b5.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=passwordchoice.ws" class="fly"><span>Password Recovery</span></a></li>
<li><a href="../../site/loginapplet/loginappletef7e.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=lockchoice.ws" class="fly"><span>Locked Account Recovery</span></a></li>
<li><a href="loginform14d4.html?mod=offence-appeal&amp;dest=index.ws" class="fly"><span>Appeal Bans &amp; Mutes</span></a></li>
<li><a href="../../services/m%3dbugtracker_v4/index.html" class="fly"><span>Submit a Bug Report</span></a></li>
<li><a href="../../site/parents.html" class="fly"><span>Parents' Guide</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a href="loginform53bb.html?mod=www&amp;ssl=0&amp;dest=index.ws" id="login" class="tl"><span class="ts">Log In</span></a></li>
</ul>
<br class="clear" />
</div>
<div id="bannerNoad">
<a href="https://2009scape.org/site/game_guide/play.html" class="HoverImg" id="playBannerNoad"><img src="../../site/img/main/skins/default/playnowc20a.webp" alt="Play Now" /></a>
</div>
<div id="scroll">
<div id="head"><div id="headBg">
<div id="langAndLogin">
<div id="lang">
<a href="../../site/title.html"><img alt="English" title="English" src="../../site/img/main/layout/en.gif" /></a>
<a href="../../site/l%3d1/title.html"><img alt="Deutsch" title="Deutsch" src="../../site/img/main/layout/de.gif" /></a>
<a href="../../site/l%3d2/title.html"><img alt="Fran&ccedil;ais" title="Fran&ccedil;ais" src="../../site/img/main/layout/fr.gif" /></a>
<a href="../../site/l%3d3/title.html"><img alt="Portugu&ecirc;s (BR)" title="Portugu&ecirc;s (BR)" src="../../site/img/main/layout/br.gif" /></a>
</div>
</div>
<div class="navigation">
<div class="location">
<b>Location: </b> <a href="../../site/title.html">Home</a> &gt;
Secure Login
</div>
</div>
</div></div>
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Secure Login
</h1>
</div>
</div>
</div>
<div class="section">
<div class="brown_background">
<div id="login_background" class="inner_brown_background" >
<div id="login_panel" class="brown_box" >
<form id="login_form" action="https://secure/m=weblogin/login.ws" method="post" autocomplete="off">
<div class="bottom">
<div class="repeat">
<div class="top_section">
<div id="message">
Please enter your username and password to continue.
</div> <div class="section_form" id="usernameSection">
<label for="username">Username:</label>
<input size="20" type="text" name="username" id="username" maxlength="12"/>
</div>
<div class="section_form" id="passwordSection">
<label for="password">Password:</label>
<input size="20" type="password" id="password" name="password" maxlength="20"/>
</div>
</div>
<div class="bottom_section">
<div id="remember">
<label for="rem">
<input type="checkbox" name="rem" id="rem" value="1" class="checkbox"/>
Check this box to remember username</label>
</div>
<div id="submit_button">
<button type="submit" value="Login Now!" onmouseover="this.style.backgroundPosition='bottom';" onmouseout="this.style.backgroundPosition='top';" onclick="return SetFocus();">Login Now!</button>
</div>
<input type="hidden" name="mod" value="poll"/>
<input type="hidden" name="ssl" value="0"/>
<input type="hidden" name="dest" value="vote.ws?id=455"/>
</div>
</div>
</div>
</form>
</div>
<div class="buttons">
<a href="../m%3dcreate/index-2.html" class="createaccount"><span class="buttbg"></span>Create a New Account<br/>Click Here!</a>
<a href="../../site/loginapplet/loginappletb4b5.html?mod=accountappeal&amp;dest=passwordchoice.ws" class="recoveraccount"><span class="butt1bg"></span>Lost Your Password?<br/> Click Here!</a>
</div>
<div id="warning">
<div id="warning_image">
<p>Only enter your password where you see green and "Jagex Limited" in your browser's address bar.</p>
</div>
</div>
<script type="text/javascript">
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 7.0){
/* IE7 */
ShowWarning('ie7.html',false);
}
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 8.0){
/* IE8 */
ShowWarning('ie8.html',false);
}
else if(jQuery.browser.safari && parseFloat(jQuery.browser.version.substr(0,3)) >= 530.0){
/* Safari4 */
ShowWarning('safaric4ca.html?1',false);
}
else if(jQuery.browser.mozilla && parseFloat(jQuery.browser.version.substr(0,3)) >= 1.9){
/* FF3 */
ShowWarning('ff.html',false);
}
SetFocus();
</script>
<br class="clear" />
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>
<div id="footer">
<div class="contain">
<div class="footerdesc">
This website and its contents are copyright under AGPL<br />
Use of this website is subject to our <a href="../../site/terms/terms.html">Terms &amp; Conditions</a> and <a href="../../site/privacy/privacy.html">Privacy Policy</a>.
</div>
<a class="jagexlink" href="/">
<img src="../../site/img/main/layout/jagexc20a.webp" alt="Jagex" />
</a>
<br class="clear"/>
</div>
<br class="clear"/>
</div>
</div>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol)?"https://ssl.":"http://www.");
document.write(unescape("%3Cscript src='"+gaJsHost+"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var _pageTracker=_gat._getTracker("UA-2058817-15");
_pageTracker._setDomainName(".runescape.com");
_pageTracker._trackPageview();
}catch(x){}
</script>
<script type="text/javascript">
try {
var pageTracker=_gat._getTracker("UA-2058817-2");
pageTracker._setDomainName(".runescape.com");
pageTracker._trackPageview();
}catch(x){}
</script>
</body>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=poll&ssl=0&expired=0&dest=vote.ws?id=455 by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 10:50:06 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
</html>

View File

@ -1,309 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=www&ssl=0&dest=index.ws by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 09:02:26 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
<head>
<link rel="icon" type="image/vnd.microsoft.icon" href="../../site/favicon.ico">
<link rel="SHORTCUT ICON" href="../../site/favicon.ico">
<link rel="apple-touch-icon" href="../../site/img/mobile.webp">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Language" content="
en,
English
">
<meta name="keywords" content="RSPS, Open Source, 2009scape, Osrs, Oldschool Runescape, Runescape, zezima">
<meta name="description" content="Play RuneScape for free, and join a global community of millions as you complete quests and win enormous treasures in a 3D world full of magic and monsters.">
<meta name="title" content="RuneScape - MMORPG - The No.1 Free Online Multiplayer Game">
<title>RuneScape - MMORPG - The No.1 Free Online Multiplayer Game</title>
<style type="text/css">/*\*/@import url(../../site/css/global-34.css);/**/</style>
<script type="text/javascript" src="../../www.jagex.com/js/jquery/jquery_1_4_2.js"></script>
<script type="text/javascript">
$(function(){
$("#play, #playExisting, #playBannerNoad").each(function(){ this.href += "?j=1"; })
})
</script>
<style type="text/css">/*\*/@import url(../../site/css/weblogin-6.css);/**/</style>
<!--[if lt IE 7]>
<style type="text/css" media="screen">
#recaptcha_box {
background-position-x: center;
}
</style>
<![endif]-->
<script type="text/javascript">
function ShowWarning(strImg,bRecaptcha){
document.getElementById('warning_image').style.backgroundImage='url(https://site/img/weblogin/'+strImg+')';
var lb = document.getElementById('login_background');
var lp = document.getElementById('login_panel');
if ( bRecaptcha ){
/* Height sorted out by margins etc. Set heights auto and brown background */
lb.style.backgroundImage='none';
lb.style.backgroundColor='#2c210d';
}else{
/* Fixed height, adjust for warning (no warning for non-java or IE6) */
lb.style.backgroundImage='url(https://site/img/weblogin/loginarea_bg.webp)';
lb.style.height="404px";
}
document.getElementById('warning').style.display="block";
}
function SetFocus(){
/* If the username field is empty, it gets focus. If the password field is empty but username is filled,
it gets focus. Returns false to prevent submit if a field is empty. */
var Username = document.getElementById('username');
var Password = document.getElementById('password');
if ( Username.value == ''){
Username.focus();
return false;
}
if ( Password.value == ''){
Password.focus();
return false;
}
return true;
}
</script>
</head>
<body id="navlogin" class="bodyBackground">
<a name="top"></a>
<div class="bodyBackgroundHead">
<div id="menubox">
<ul id="menus">
<li class="top"><a href="../../site/title.html" id="home" class="tl"><span class="ts">Home</span></a></li>
<li class="top"><a id="play" class="tl" href="https://2009scape.org/site/game_guide/play.html" onclick="try{pageTracker._trackPageview('/play_game/menu/top')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/top')}catch(x){}"
><span class="ts">Play Now</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../m%3dcreate/index.html" class="fly"><span>New Users</span></a></li>
<li><a href="https://2009scape.org/site/game_guide/play.html" id="playExisting" onclick="try{pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}"
class="fly"><span>Existing Users</span></a></li>
<li><a href="../../site/options.html" class="fly"><span>Java Options</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="account" class="tl" href="../../site/account_management.html"><span class="ts">Account</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="members/members.html" class="fly"><span>Upgrade Your Account</span></a></li>
<li><a href="../m%3dcreate/index-2.html" class="fly"><span>Create New Account</span></a></li>
<li><a href="../../site/account_management.html" class="fly"><span>Account Management</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="guide" class="tl" href="../../site/kbase/guid/manual.html"><span class="ts">Game Guide</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/manual.html" class="fly"><span>Manual</span></a></li>
<li><a href="loginform802b.html" class="fly"><span>QuestHelp</span></a></li>
<li><a href="../../services/m%3ditemdb_rs/frontpage.html" class="fly"><span>Grand Exchange</span></a></li>
<li><a href="../../site/kbase/guid/rules_of_conduct.html" class="fly"><span>Rules</span></a></li>
<li><a href="../../site/kbase/guid/lore.html" class="fly"><span>Lores</span></a></li>
<li><a href="../../site/splash.html" class="fly"><span>What is RuneScape?</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="community" class="tl" href="../../services/m%3dforum/forums.html"><span class="ts">Community</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../services/m%3dforum/forums.html" class="fly"><span>Forums</span></a></li>
<li><a href="../../services/m%3dhiscore/hiscores.html" class="fly"><span>Hiscores</span></a></li>
<li><a href="../../site/kbase/guid/Player_Submissions.html" class="fly"><span>Player Submissions</span></a></li>
<li><a href="../../services/m%3dadventurers-log/index.html" class="fly"><span>Adventurer's Log</span></a></li>
<li><a href="../../services/m%3dpoll/index.html" class="fly"><span>Polls</span></a></li>
<li><a href="../../site/kbase/guid/Downloads_and_Wallpapers.html" class="fly"><span>Downloads &amp; Wallpapers</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="help" class="tl" href="../../site/kbase/guid/Customer_Support.html"><span class="ts">Help</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/Customer_Support.html" class="fly"><span>Customer Support</span></a></li>
<li><a href="../../site/loginapplet/loginappletb4b5.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=passwordchoice.ws" class="fly"><span>Password Recovery</span></a></li>
<li><a href="../../site/loginapplet/loginappletef7e.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=lockchoice.ws" class="fly"><span>Locked Account Recovery</span></a></li>
<li><a href="loginform14d4.html?mod=offence-appeal&amp;dest=index.ws" class="fly"><span>Appeal Bans &amp; Mutes</span></a></li>
<li><a href="../../services/m%3dbugtracker_v4/index.html" class="fly"><span>Submit a Bug Report</span></a></li>
<li><a href="../../site/parents.html" class="fly"><span>Parents' Guide</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a href="loginform53bb.html?mod=www&amp;ssl=0&amp;dest=index.ws" id="login" class="tl"><span class="ts">Log In</span></a></li>
</ul>
<br class="clear" />
</div>
<div id="bannerNoad">
<a href="https://2009scape.org/site/game_guide/play.html" class="HoverImg" id="playBannerNoad"><img src="../../site/img/main/skins/default/playnowc20a.webp" alt="Play Now" /></a>
</div>
<div id="scroll">
<div id="head"><div id="headBg">
<div id="langAndLogin">
<div id="lang">
<a href="../../site/title.html"><img alt="English" title="English" src="../../site/img/main/layout/en.gif" /></a>
<a href="../../site/l%3d1/title.html"><img alt="Deutsch" title="Deutsch" src="../../site/img/main/layout/de.gif" /></a>
<a href="../../site/l%3d2/title.html"><img alt="Fran&ccedil;ais" title="Fran&ccedil;ais" src="../../site/img/main/layout/fr.gif" /></a>
<a href="../../site/l%3d3/title.html"><img alt="Portugu&ecirc;s (BR)" title="Portugu&ecirc;s (BR)" src="../../site/img/main/layout/br.gif" /></a>
</div>
</div>
<div class="navigation">
<div class="location">
<b>Location: </b> <a href="../../site/title.html">Home</a> &gt;
Secure Login
</div>
</div>
</div></div>
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Secure Login
</h1>
</div>
</div>
</div>
<div class="section">
<div class="brown_background">
<div id="login_background" class="inner_brown_background" >
<div id="login_panel" class="brown_box" >
<form id="login_form" action="https://secure/m=weblogin/login.ws" method="post" autocomplete="off">
<div class="bottom">
<div class="repeat">
<div class="top_section">
<div id="message">
Please enter your username and password to continue.
</div> <div class="section_form" id="usernameSection">
<label for="username">Username:</label>
<input size="20" type="text" name="username" id="username" maxlength="12"/>
</div>
<div class="section_form" id="passwordSection">
<label for="password">Password:</label>
<input size="20" type="password" id="password" name="password" maxlength="20"/>
</div>
</div>
<div class="bottom_section">
<div id="remember">
<label for="rem">
<input type="checkbox" name="rem" id="rem" value="1" class="checkbox"/>
Check this box to remember username</label>
</div>
<div id="submit_button">
<button type="submit" value="Login Now!" onmouseover="this.style.backgroundPosition='bottom';" onmouseout="this.style.backgroundPosition='top';" onclick="return SetFocus();">Login Now!</button>
</div>
<input type="hidden" name="mod" value="www"/>
<input type="hidden" name="ssl" value="0"/>
<input type="hidden" name="dest" value="index.ws"/>
</div>
</div>
</div>
</form>
</div>
<div class="buttons">
<a href="../m%3dcreate/index-2.html" class="createaccount"><span class="buttbg"></span>Create a New Account<br/>Click Here!</a>
<a href="../../site/loginapplet/loginappletb4b5.html?mod=accountappeal&amp;dest=passwordchoice.ws" class="recoveraccount"><span class="butt1bg"></span>Lost Your Password?<br/> Click Here!</a>
</div>
<div id="warning">
<div id="warning_image">
<p>Only enter your password where you see green and "Jagex Limited" in your browser's address bar.</p>
</div>
</div>
<script type="text/javascript">
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 7.0){
/* IE7 */
ShowWarning('ie7.html',false);
}
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 8.0){
/* IE8 */
ShowWarning('ie8.html',false);
}
else if(jQuery.browser.safari && parseFloat(jQuery.browser.version.substr(0,3)) >= 530.0){
/* Safari4 */
ShowWarning('safaric4ca.html?1',false);
}
else if(jQuery.browser.mozilla && parseFloat(jQuery.browser.version.substr(0,3)) >= 1.9){
/* FF3 */
ShowWarning('ff.html',false);
}
SetFocus();
</script>
<br class="clear" />
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>
<div id="footer">
<div class="contain">
<div class="footerdesc">
This website and its contents are copyright under AGPL<br />
Use of this website is subject to our <a href="../../site/terms/terms.html">Terms &amp; Conditions</a> and <a href="../../site/privacy/privacy.html">Privacy Policy</a>.
</div>
<a class="jagexlink" href="/">
<img src="../../site/img/main/layout/jagexc20a.webp" alt="Jagex" />
</a>
<br class="clear"/>
</div>
<br class="clear"/>
</div>
</div>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol)?"https://ssl.":"http://www.");
document.write(unescape("%3Cscript src='"+gaJsHost+"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var _pageTracker=_gat._getTracker("UA-2058817-15");
_pageTracker._setDomainName(".runescape.com");
_pageTracker._trackPageview();
}catch(x){}
</script>
<script type="text/javascript">
try {
var pageTracker=_gat._getTracker("UA-2058817-2");
pageTracker._setDomainName(".runescape.com");
pageTracker._trackPageview();
}catch(x){}
</script>
</body>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=www&ssl=0&dest=index.ws by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 09:02:26 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
</html>

View File

@ -1,309 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=offence-appeal&ssl=1&expired=0&dest=account_history.ws by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 09:02:27 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
<head>
<link rel="icon" type="image/vnd.microsoft.icon" href="../../site/favicon.ico">
<link rel="SHORTCUT ICON" href="../../site/favicon.ico">
<link rel="apple-touch-icon" href="../../site/img/mobile.webp">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Language" content="
en,
English
">
<meta name="keywords" content="RSPS, Open Source, 2009scape, Osrs, Oldschool Runescape, Runescape, zezima">
<meta name="description" content="Play RuneScape for free, and join a global community of millions as you complete quests and win enormous treasures in a 3D world full of magic and monsters.">
<meta name="title" content="RuneScape - MMORPG - The No.1 Free Online Multiplayer Game">
<title>RuneScape - MMORPG - The No.1 Free Online Multiplayer Game</title>
<style type="text/css">/*\*/@import url(../../site/css/global-34.css);/**/</style>
<script type="text/javascript" src="../../www.jagex.com/js/jquery/jquery_1_4_2.js"></script>
<script type="text/javascript">
$(function(){
$("#play, #playExisting, #playBannerNoad").each(function(){ this.href += "?j=1"; })
})
</script>
<style type="text/css">/*\*/@import url(../../site/css/weblogin-6.css);/**/</style>
<!--[if lt IE 7]>
<style type="text/css" media="screen">
#recaptcha_box {
background-position-x: center;
}
</style>
<![endif]-->
<script type="text/javascript">
function ShowWarning(strImg,bRecaptcha){
document.getElementById('warning_image').style.backgroundImage='url(https://site/img/weblogin/'+strImg+')';
var lb = document.getElementById('login_background');
var lp = document.getElementById('login_panel');
if ( bRecaptcha ){
/* Height sorted out by margins etc. Set heights auto and brown background */
lb.style.backgroundImage='none';
lb.style.backgroundColor='#2c210d';
}else{
/* Fixed height, adjust for warning (no warning for non-java or IE6) */
lb.style.backgroundImage='url(https://site/img/weblogin/loginarea_bg.webp)';
lb.style.height="404px";
}
document.getElementById('warning').style.display="block";
}
function SetFocus(){
/* If the username field is empty, it gets focus. If the password field is empty but username is filled,
it gets focus. Returns false to prevent submit if a field is empty. */
var Username = document.getElementById('username');
var Password = document.getElementById('password');
if ( Username.value == ''){
Username.focus();
return false;
}
if ( Password.value == ''){
Password.focus();
return false;
}
return true;
}
</script>
</head>
<body id="navlogin" class="bodyBackground">
<a name="top"></a>
<div class="bodyBackgroundHead">
<div id="menubox">
<ul id="menus">
<li class="top"><a href="../../site/title.html" id="home" class="tl"><span class="ts">Home</span></a></li>
<li class="top"><a id="play" class="tl" href="https://2009scape.org/site/game_guide/play.html" onclick="try{pageTracker._trackPageview('/play_game/menu/top')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/top')}catch(x){}"
><span class="ts">Play Now</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../m%3dcreate/index.html" class="fly"><span>New Users</span></a></li>
<li><a href="https://2009scape.org/site/game_guide/play.html" id="playExisting" onclick="try{pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}"
class="fly"><span>Existing Users</span></a></li>
<li><a href="../../site/options.html" class="fly"><span>Java Options</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="account" class="tl" href="../../site/account_management.html"><span class="ts">Account</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="members/members.html" class="fly"><span>Upgrade Your Account</span></a></li>
<li><a href="../m%3dcreate/index-2.html" class="fly"><span>Create New Account</span></a></li>
<li><a href="../../site/account_management.html" class="fly"><span>Account Management</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="guide" class="tl" href="../../site/kbase/guid/manual.html"><span class="ts">Game Guide</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/manual.html" class="fly"><span>Manual</span></a></li>
<li><a href="loginform802b.html" class="fly"><span>QuestHelp</span></a></li>
<li><a href="../../services/m%3ditemdb_rs/frontpage.html" class="fly"><span>Grand Exchange</span></a></li>
<li><a href="../../site/kbase/guid/rules_of_conduct.html" class="fly"><span>Rules</span></a></li>
<li><a href="../../site/kbase/guid/lore.html" class="fly"><span>Lores</span></a></li>
<li><a href="../../site/splash.html" class="fly"><span>What is RuneScape?</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="community" class="tl" href="../../services/m%3dforum/forums.html"><span class="ts">Community</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../services/m%3dforum/forums.html" class="fly"><span>Forums</span></a></li>
<li><a href="../../services/m%3dhiscore/hiscores.html" class="fly"><span>Hiscores</span></a></li>
<li><a href="../../site/kbase/guid/Player_Submissions.html" class="fly"><span>Player Submissions</span></a></li>
<li><a href="../../services/m%3dadventurers-log/index.html" class="fly"><span>Adventurer's Log</span></a></li>
<li><a href="../../services/m%3dpoll/index.html" class="fly"><span>Polls</span></a></li>
<li><a href="../../site/kbase/guid/Downloads_and_Wallpapers.html" class="fly"><span>Downloads &amp; Wallpapers</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="help" class="tl" href="../../site/kbase/guid/Customer_Support.html"><span class="ts">Help</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/Customer_Support.html" class="fly"><span>Customer Support</span></a></li>
<li><a href="../../site/loginapplet/loginappletb4b5.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=passwordchoice.ws" class="fly"><span>Password Recovery</span></a></li>
<li><a href="../../site/loginapplet/loginappletef7e.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=lockchoice.ws" class="fly"><span>Locked Account Recovery</span></a></li>
<li><a href="loginform14d4.html?mod=offence-appeal&amp;dest=index.ws" class="fly"><span>Appeal Bans &amp; Mutes</span></a></li>
<li><a href="../../services/m%3dbugtracker_v4/index.html" class="fly"><span>Submit a Bug Report</span></a></li>
<li><a href="../../site/parents.html" class="fly"><span>Parents' Guide</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a href="loginform53bb.html?mod=www&amp;ssl=0&amp;dest=index.ws" id="login" class="tl"><span class="ts">Log In</span></a></li>
</ul>
<br class="clear" />
</div>
<div id="bannerNoad">
<a href="https://2009scape.org/site/game_guide/play.html" class="HoverImg" id="playBannerNoad"><img src="../../site/img/main/skins/default/playnowc20a.webp" alt="Play Now" /></a>
</div>
<div id="scroll">
<div id="head"><div id="headBg">
<div id="langAndLogin">
<div id="lang">
<a href="../../site/title.html"><img alt="English" title="English" src="../../site/img/main/layout/en.gif" /></a>
<a href="../../site/l%3d1/title.html"><img alt="Deutsch" title="Deutsch" src="../../site/img/main/layout/de.gif" /></a>
<a href="../../site/l%3d2/title.html"><img alt="Fran&ccedil;ais" title="Fran&ccedil;ais" src="../../site/img/main/layout/fr.gif" /></a>
<a href="../../site/l%3d3/title.html"><img alt="Portugu&ecirc;s (BR)" title="Portugu&ecirc;s (BR)" src="../../site/img/main/layout/br.gif" /></a>
</div>
</div>
<div class="navigation">
<div class="location">
<b>Location: </b> <a href="../../site/title.html">Home</a> &gt;
Secure Login
</div>
</div>
</div></div>
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Secure Login
</h1>
</div>
</div>
</div>
<div class="section">
<div class="brown_background">
<div id="login_background" class="inner_brown_background" >
<div id="login_panel" class="brown_box" >
<form id="login_form" action="https://secure/m=weblogin/login.ws" method="post" autocomplete="off">
<div class="bottom">
<div class="repeat">
<div class="top_section">
<div id="message">
Please enter your username and password to continue.
</div> <div class="section_form" id="usernameSection">
<label for="username">Username:</label>
<input size="20" type="text" name="username" id="username" maxlength="12"/>
</div>
<div class="section_form" id="passwordSection">
<label for="password">Password:</label>
<input size="20" type="password" id="password" name="password" maxlength="20"/>
</div>
</div>
<div class="bottom_section">
<div id="remember">
<label for="rem">
<input type="checkbox" name="rem" id="rem" value="1" class="checkbox"/>
Check this box to remember username</label>
</div>
<div id="submit_button">
<button type="submit" value="Login Now!" onmouseover="this.style.backgroundPosition='bottom';" onmouseout="this.style.backgroundPosition='top';" onclick="return SetFocus();">Login Now!</button>
</div>
<input type="hidden" name="mod" value="offence-appeal"/>
<input type="hidden" name="ssl" value="1"/>
<input type="hidden" name="dest" value="account_history.ws"/>
</div>
</div>
</div>
</form>
</div>
<div class="buttons">
<a href="../m%3dcreate/index-2.html" class="createaccount"><span class="buttbg"></span>Create a New Account<br/>Click Here!</a>
<a href="../../site/loginapplet/loginappletb4b5.html?mod=accountappeal&amp;dest=passwordchoice.ws" class="recoveraccount"><span class="butt1bg"></span>Lost Your Password?<br/> Click Here!</a>
</div>
<div id="warning">
<div id="warning_image">
<p>Only enter your password where you see green and "Jagex Limited" in your browser's address bar.</p>
</div>
</div>
<script type="text/javascript">
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 7.0){
/* IE7 */
ShowWarning('ie7.html',false);
}
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 8.0){
/* IE8 */
ShowWarning('ie8.html',false);
}
else if(jQuery.browser.safari && parseFloat(jQuery.browser.version.substr(0,3)) >= 530.0){
/* Safari4 */
ShowWarning('safaric4ca.html?1',false);
}
else if(jQuery.browser.mozilla && parseFloat(jQuery.browser.version.substr(0,3)) >= 1.9){
/* FF3 */
ShowWarning('ff.html',false);
}
SetFocus();
</script>
<br class="clear" />
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>
<div id="footer">
<div class="contain">
<div class="footerdesc">
This website and its contents are copyright under AGPL<br />
Use of this website is subject to our <a href="../../site/terms/terms.html">Terms &amp; Conditions</a> and <a href="../../site/privacy/privacy.html">Privacy Policy</a>.
</div>
<a class="jagexlink" href="/">
<img src="../../site/img/main/layout/jagexc20a.webp" alt="Jagex" />
</a>
<br class="clear"/>
</div>
<br class="clear"/>
</div>
</div>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol)?"https://ssl.":"http://www.");
document.write(unescape("%3Cscript src='"+gaJsHost+"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var _pageTracker=_gat._getTracker("UA-2058817-15");
_pageTracker._setDomainName(".runescape.com");
_pageTracker._trackPageview();
}catch(x){}
</script>
<script type="text/javascript">
try {
var pageTracker=_gat._getTracker("UA-2058817-2");
pageTracker._setDomainName(".runescape.com");
pageTracker._trackPageview();
}catch(x){}
</script>
</body>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=offence-appeal&ssl=1&expired=0&dest=account_history.ws by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 09:02:27 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
</html>

View File

@ -1,309 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=questhelp&ssl=0&expired=0&dest=index.ws by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 08:58:42 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
<head>
<link rel="icon" type="image/vnd.microsoft.icon" href="../../site/favicon.ico">
<link rel="SHORTCUT ICON" href="../../site/favicon.ico">
<link rel="apple-touch-icon" href="../../site/img/mobile.webp">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Language" content="
en,
English
">
<meta name="keywords" content="RSPS, Open Source, 2009scape, Osrs, Oldschool Runescape, Runescape, zezima">
<meta name="description" content="Play RuneScape for free, and join a global community of millions as you complete quests and win enormous treasures in a 3D world full of magic and monsters.">
<meta name="title" content="RuneScape - MMORPG - The No.1 Free Online Multiplayer Game">
<title>RuneScape - MMORPG - The No.1 Free Online Multiplayer Game</title>
<style type="text/css">/*\*/@import url(../../site/css/global-34.css);/**/</style>
<script type="text/javascript" src="../../www.jagex.com/js/jquery/jquery_1_4_2.js"></script>
<script type="text/javascript">
$(function(){
$("#play, #playExisting, #playBannerNoad").each(function(){ this.href += "?j=1"; })
})
</script>
<style type="text/css">/*\*/@import url(../../site/css/weblogin-6.css);/**/</style>
<!--[if lt IE 7]>
<style type="text/css" media="screen">
#recaptcha_box {
background-position-x: center;
}
</style>
<![endif]-->
<script type="text/javascript">
function ShowWarning(strImg,bRecaptcha){
document.getElementById('warning_image').style.backgroundImage='url(https://site/img/weblogin/'+strImg+')';
var lb = document.getElementById('login_background');
var lp = document.getElementById('login_panel');
if ( bRecaptcha ){
/* Height sorted out by margins etc. Set heights auto and brown background */
lb.style.backgroundImage='none';
lb.style.backgroundColor='#2c210d';
}else{
/* Fixed height, adjust for warning (no warning for non-java or IE6) */
lb.style.backgroundImage='url(https://site/img/weblogin/loginarea_bg.webp)';
lb.style.height="404px";
}
document.getElementById('warning').style.display="block";
}
function SetFocus(){
/* If the username field is empty, it gets focus. If the password field is empty but username is filled,
it gets focus. Returns false to prevent submit if a field is empty. */
var Username = document.getElementById('username');
var Password = document.getElementById('password');
if ( Username.value == ''){
Username.focus();
return false;
}
if ( Password.value == ''){
Password.focus();
return false;
}
return true;
}
</script>
</head>
<body id="navlogin" class="bodyBackground">
<a name="top"></a>
<div class="bodyBackgroundHead">
<div id="menubox">
<ul id="menus">
<li class="top"><a href="../../site/title.html" id="home" class="tl"><span class="ts">Home</span></a></li>
<li class="top"><a id="play" class="tl" href="https://2009scape.org/site/game_guide/play.html" onclick="try{pageTracker._trackPageview('/play_game/menu/top')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/top')}catch(x){}"
><span class="ts">Play Now</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../m%3dcreate/index.html" class="fly"><span>New Users</span></a></li>
<li><a href="https://2009scape.org/site/game_guide/play.html" id="playExisting" onclick="try{pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}"
class="fly"><span>Existing Users</span></a></li>
<li><a href="../../site/options.html" class="fly"><span>Java Options</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="account" class="tl" href="../../site/account_management.html"><span class="ts">Account</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="members/members.html" class="fly"><span>Upgrade Your Account</span></a></li>
<li><a href="../m%3dcreate/index-2.html" class="fly"><span>Create New Account</span></a></li>
<li><a href="../../site/account_management.html" class="fly"><span>Account Management</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="guide" class="tl" href="../../site/kbase/guid/manual.html"><span class="ts">Game Guide</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/manual.html" class="fly"><span>Manual</span></a></li>
<li><a href="loginform802b.html" class="fly"><span>QuestHelp</span></a></li>
<li><a href="../../services/m%3ditemdb_rs/frontpage.html" class="fly"><span>Grand Exchange</span></a></li>
<li><a href="../../site/kbase/guid/rules_of_conduct.html" class="fly"><span>Rules</span></a></li>
<li><a href="../../site/kbase/guid/lore.html" class="fly"><span>Lores</span></a></li>
<li><a href="../../site/splash.html" class="fly"><span>What is RuneScape?</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="community" class="tl" href="../../services/m%3dforum/forums.html"><span class="ts">Community</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../services/m%3dforum/forums.html" class="fly"><span>Forums</span></a></li>
<li><a href="../../services/m%3dhiscore/hiscores.html" class="fly"><span>Hiscores</span></a></li>
<li><a href="../../site/kbase/guid/Player_Submissions.html" class="fly"><span>Player Submissions</span></a></li>
<li><a href="../../services/m%3dadventurers-log/index.html" class="fly"><span>Adventurer's Log</span></a></li>
<li><a href="../../services/m%3dpoll/index.html" class="fly"><span>Polls</span></a></li>
<li><a href="../../site/kbase/guid/Downloads_and_Wallpapers.html" class="fly"><span>Downloads &amp; Wallpapers</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="help" class="tl" href="../../site/kbase/guid/Customer_Support.html"><span class="ts">Help</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/Customer_Support.html" class="fly"><span>Customer Support</span></a></li>
<li><a href="../../site/loginapplet/loginappletb4b5.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=passwordchoice.ws" class="fly"><span>Password Recovery</span></a></li>
<li><a href="../../site/loginapplet/loginappletef7e.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=lockchoice.ws" class="fly"><span>Locked Account Recovery</span></a></li>
<li><a href="loginform14d4.html?mod=offence-appeal&amp;dest=index.ws" class="fly"><span>Appeal Bans &amp; Mutes</span></a></li>
<li><a href="../../services/m%3dbugtracker_v4/index.html" class="fly"><span>Submit a Bug Report</span></a></li>
<li><a href="../../site/parents.html" class="fly"><span>Parents' Guide</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a href="loginform53bb.html?mod=www&amp;ssl=0&amp;dest=index.ws" id="login" class="tl"><span class="ts">Log In</span></a></li>
</ul>
<br class="clear" />
</div>
<div id="bannerNoad">
<a href="https://2009scape.org/site/game_guide/play.html" class="HoverImg" id="playBannerNoad"><img src="../../site/img/main/skins/default/playnowc20a.webp" alt="Play Now" /></a>
</div>
<div id="scroll">
<div id="head"><div id="headBg">
<div id="langAndLogin">
<div id="lang">
<a href="../../site/title.html"><img alt="English" title="English" src="../../site/img/main/layout/en.gif" /></a>
<a href="../../site/l%3d1/title.html"><img alt="Deutsch" title="Deutsch" src="../../site/img/main/layout/de.gif" /></a>
<a href="../../site/l%3d2/title.html"><img alt="Fran&ccedil;ais" title="Fran&ccedil;ais" src="../../site/img/main/layout/fr.gif" /></a>
<a href="../../site/l%3d3/title.html"><img alt="Portugu&ecirc;s (BR)" title="Portugu&ecirc;s (BR)" src="../../site/img/main/layout/br.gif" /></a>
</div>
</div>
<div class="navigation">
<div class="location">
<b>Location: </b> <a href="../../site/title.html">Home</a> &gt;
Secure Login
</div>
</div>
</div></div>
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Secure Login
</h1>
</div>
</div>
</div>
<div class="section">
<div class="brown_background">
<div id="login_background" class="inner_brown_background" >
<div id="login_panel" class="brown_box" >
<form id="login_form" action="https://secure/m=weblogin/login.ws" method="post" autocomplete="off">
<div class="bottom">
<div class="repeat">
<div class="top_section">
<div id="message">
Please enter your username and password to continue.
</div> <div class="section_form" id="usernameSection">
<label for="username">Username:</label>
<input size="20" type="text" name="username" id="username" maxlength="12"/>
</div>
<div class="section_form" id="passwordSection">
<label for="password">Password:</label>
<input size="20" type="password" id="password" name="password" maxlength="20"/>
</div>
</div>
<div class="bottom_section">
<div id="remember">
<label for="rem">
<input type="checkbox" name="rem" id="rem" value="1" class="checkbox"/>
Check this box to remember username</label>
</div>
<div id="submit_button">
<button type="submit" value="Login Now!" onmouseover="this.style.backgroundPosition='bottom';" onmouseout="this.style.backgroundPosition='top';" onclick="return SetFocus();">Login Now!</button>
</div>
<input type="hidden" name="mod" value="questhelp"/>
<input type="hidden" name="ssl" value="0"/>
<input type="hidden" name="dest" value="index.ws"/>
</div>
</div>
</div>
</form>
</div>
<div class="buttons">
<a href="../m%3dcreate/index-2.html" class="createaccount"><span class="buttbg"></span>Create a New Account<br/>Click Here!</a>
<a href="../../site/loginapplet/loginappletb4b5.html?mod=accountappeal&amp;dest=passwordchoice.ws" class="recoveraccount"><span class="butt1bg"></span>Lost Your Password?<br/> Click Here!</a>
</div>
<div id="warning">
<div id="warning_image">
<p>Only enter your password where you see green and "Jagex Limited" in your browser's address bar.</p>
</div>
</div>
<script type="text/javascript">
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 7.0){
/* IE7 */
ShowWarning('ie7.html',false);
}
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 8.0){
/* IE8 */
ShowWarning('ie8.html',false);
}
else if(jQuery.browser.safari && parseFloat(jQuery.browser.version.substr(0,3)) >= 530.0){
/* Safari4 */
ShowWarning('safaric4ca.html?1',false);
}
else if(jQuery.browser.mozilla && parseFloat(jQuery.browser.version.substr(0,3)) >= 1.9){
/* FF3 */
ShowWarning('ff.html',false);
}
SetFocus();
</script>
<br class="clear" />
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>
<div id="footer">
<div class="contain">
<div class="footerdesc">
This website and its contents are copyright under AGPL<br />
Use of this website is subject to our <a href="../../site/terms/terms.html">Terms &amp; Conditions</a> and <a href="../../site/privacy/privacy.html">Privacy Policy</a>.
</div>
<a class="jagexlink" href="/">
<img src="../../site/img/main/layout/jagexc20a.webp" alt="Jagex" />
</a>
<br class="clear"/>
</div>
<br class="clear"/>
</div>
</div>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol)?"https://ssl.":"http://www.");
document.write(unescape("%3Cscript src='"+gaJsHost+"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var _pageTracker=_gat._getTracker("UA-2058817-15");
_pageTracker._setDomainName(".runescape.com");
_pageTracker._trackPageview();
}catch(x){}
</script>
<script type="text/javascript">
try {
var pageTracker=_gat._getTracker("UA-2058817-2");
pageTracker._setDomainName(".runescape.com");
pageTracker._trackPageview();
}catch(x){}
</script>
</body>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=questhelp&ssl=0&expired=0&dest=index.ws by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 08:58:44 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
</html>

View File

@ -1,309 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=adventurers-log&dest=display_player_profile.ws by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 09:09:50 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
<head>
<link rel="icon" type="image/vnd.microsoft.icon" href="../../site/favicon.ico">
<link rel="SHORTCUT ICON" href="../../site/favicon.ico">
<link rel="apple-touch-icon" href="../../site/img/mobile.webp">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Language" content="
en,
English
">
<meta name="keywords" content="RSPS, Open Source, 2009scape, Osrs, Oldschool Runescape, Runescape, zezima">
<meta name="description" content="Play RuneScape for free, and join a global community of millions as you complete quests and win enormous treasures in a 3D world full of magic and monsters.">
<meta name="title" content="RuneScape - MMORPG - The No.1 Free Online Multiplayer Game">
<title>RuneScape - MMORPG - The No.1 Free Online Multiplayer Game</title>
<style type="text/css">/*\*/@import url(../../site/css/global-34.css);/**/</style>
<script type="text/javascript" src="../../www.jagex.com/js/jquery/jquery_1_4_2.js"></script>
<script type="text/javascript">
$(function(){
$("#play, #playExisting, #playBannerNoad").each(function(){ this.href += "?j=1"; })
})
</script>
<style type="text/css">/*\*/@import url(../../site/css/weblogin-6.css);/**/</style>
<!--[if lt IE 7]>
<style type="text/css" media="screen">
#recaptcha_box {
background-position-x: center;
}
</style>
<![endif]-->
<script type="text/javascript">
function ShowWarning(strImg,bRecaptcha){
document.getElementById('warning_image').style.backgroundImage='url(https://site/img/weblogin/'+strImg+')';
var lb = document.getElementById('login_background');
var lp = document.getElementById('login_panel');
if ( bRecaptcha ){
/* Height sorted out by margins etc. Set heights auto and brown background */
lb.style.backgroundImage='none';
lb.style.backgroundColor='#2c210d';
}else{
/* Fixed height, adjust for warning (no warning for non-java or IE6) */
lb.style.backgroundImage='url(https://site/img/weblogin/loginarea_bg.webp)';
lb.style.height="404px";
}
document.getElementById('warning').style.display="block";
}
function SetFocus(){
/* If the username field is empty, it gets focus. If the password field is empty but username is filled,
it gets focus. Returns false to prevent submit if a field is empty. */
var Username = document.getElementById('username');
var Password = document.getElementById('password');
if ( Username.value == ''){
Username.focus();
return false;
}
if ( Password.value == ''){
Password.focus();
return false;
}
return true;
}
</script>
</head>
<body id="navlogin" class="bodyBackground">
<a name="top"></a>
<div class="bodyBackgroundHead">
<div id="menubox">
<ul id="menus">
<li class="top"><a href="../../site/title.html" id="home" class="tl"><span class="ts">Home</span></a></li>
<li class="top"><a id="play" class="tl" href="https://2009scape.org/site/game_guide/play.html" onclick="try{pageTracker._trackPageview('/play_game/menu/top')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/top')}catch(x){}"
><span class="ts">Play Now</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../m%3dcreate/index.html" class="fly"><span>New Users</span></a></li>
<li><a href="https://2009scape.org/site/game_guide/play.html" id="playExisting" onclick="try{pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}"
class="fly"><span>Existing Users</span></a></li>
<li><a href="../../site/options.html" class="fly"><span>Java Options</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="account" class="tl" href="../../site/account_management.html"><span class="ts">Account</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="members/members.html" class="fly"><span>Upgrade Your Account</span></a></li>
<li><a href="../m%3dcreate/index-2.html" class="fly"><span>Create New Account</span></a></li>
<li><a href="../../site/account_management.html" class="fly"><span>Account Management</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="guide" class="tl" href="../../site/kbase/guid/manual.html"><span class="ts">Game Guide</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/manual.html" class="fly"><span>Manual</span></a></li>
<li><a href="loginform802b.html" class="fly"><span>QuestHelp</span></a></li>
<li><a href="../../services/m%3ditemdb_rs/frontpage.html" class="fly"><span>Grand Exchange</span></a></li>
<li><a href="../../site/kbase/guid/rules_of_conduct.html" class="fly"><span>Rules</span></a></li>
<li><a href="../../site/kbase/guid/lore.html" class="fly"><span>Lores</span></a></li>
<li><a href="../../site/splash.html" class="fly"><span>What is RuneScape?</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="community" class="tl" href="../../services/m%3dforum/forums.html"><span class="ts">Community</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../services/m%3dforum/forums.html" class="fly"><span>Forums</span></a></li>
<li><a href="../../services/m%3dhiscore/hiscores.html" class="fly"><span>Hiscores</span></a></li>
<li><a href="../../site/kbase/guid/Player_Submissions.html" class="fly"><span>Player Submissions</span></a></li>
<li><a href="../../services/m%3dadventurers-log/index.html" class="fly"><span>Adventurer's Log</span></a></li>
<li><a href="../../services/m%3dpoll/index.html" class="fly"><span>Polls</span></a></li>
<li><a href="../../site/kbase/guid/Downloads_and_Wallpapers.html" class="fly"><span>Downloads &amp; Wallpapers</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="help" class="tl" href="../../site/kbase/guid/Customer_Support.html"><span class="ts">Help</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/Customer_Support.html" class="fly"><span>Customer Support</span></a></li>
<li><a href="../../site/loginapplet/loginappletb4b5.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=passwordchoice.ws" class="fly"><span>Password Recovery</span></a></li>
<li><a href="../../site/loginapplet/loginappletef7e.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=lockchoice.ws" class="fly"><span>Locked Account Recovery</span></a></li>
<li><a href="loginform14d4.html?mod=offence-appeal&amp;dest=index.ws" class="fly"><span>Appeal Bans &amp; Mutes</span></a></li>
<li><a href="../../services/m%3dbugtracker_v4/index.html" class="fly"><span>Submit a Bug Report</span></a></li>
<li><a href="../../site/parents.html" class="fly"><span>Parents' Guide</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a href="loginform53bb.html?mod=www&amp;ssl=0&amp;dest=index.ws" id="login" class="tl"><span class="ts">Log In</span></a></li>
</ul>
<br class="clear" />
</div>
<div id="bannerNoad">
<a href="https://2009scape.org/site/game_guide/play.html" class="HoverImg" id="playBannerNoad"><img src="../../site/img/main/skins/default/playnowc20a.webp" alt="Play Now" /></a>
</div>
<div id="scroll">
<div id="head"><div id="headBg">
<div id="langAndLogin">
<div id="lang">
<a href="../../site/title.html"><img alt="English" title="English" src="../../site/img/main/layout/en.gif" /></a>
<a href="../../site/l%3d1/title.html"><img alt="Deutsch" title="Deutsch" src="../../site/img/main/layout/de.gif" /></a>
<a href="../../site/l%3d2/title.html"><img alt="Fran&ccedil;ais" title="Fran&ccedil;ais" src="../../site/img/main/layout/fr.gif" /></a>
<a href="../../site/l%3d3/title.html"><img alt="Portugu&ecirc;s (BR)" title="Portugu&ecirc;s (BR)" src="../../site/img/main/layout/br.gif" /></a>
</div>
</div>
<div class="navigation">
<div class="location">
<b>Location: </b> <a href="../../site/title.html">Home</a> &gt;
Secure Login
</div>
</div>
</div></div>
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Secure Login
</h1>
</div>
</div>
</div>
<div class="section">
<div class="brown_background">
<div id="login_background" class="inner_brown_background" >
<div id="login_panel" class="brown_box" >
<form id="login_form" action="https://secure/m=weblogin/login.ws" method="post" autocomplete="off">
<div class="bottom">
<div class="repeat">
<div class="top_section">
<div id="message">
Please enter your username and password to continue.
</div> <div class="section_form" id="usernameSection">
<label for="username">Username:</label>
<input size="20" type="text" name="username" id="username" maxlength="12"/>
</div>
<div class="section_form" id="passwordSection">
<label for="password">Password:</label>
<input size="20" type="password" id="password" name="password" maxlength="20"/>
</div>
</div>
<div class="bottom_section">
<div id="remember">
<label for="rem">
<input type="checkbox" name="rem" id="rem" value="1" class="checkbox"/>
Check this box to remember username</label>
</div>
<div id="submit_button">
<button type="submit" value="Login Now!" onmouseover="this.style.backgroundPosition='bottom';" onmouseout="this.style.backgroundPosition='top';" onclick="return SetFocus();">Login Now!</button>
</div>
<input type="hidden" name="mod" value="adventurers-log"/>
<input type="hidden" name="ssl" value="0"/>
<input type="hidden" name="dest" value="display_player_profile.ws"/>
</div>
</div>
</div>
</form>
</div>
<div class="buttons">
<a href="../m%3dcreate/index-2.html" class="createaccount"><span class="buttbg"></span>Create a New Account<br/>Click Here!</a>
<a href="../../site/loginapplet/loginappletb4b5.html?mod=accountappeal&amp;dest=passwordchoice.ws" class="recoveraccount"><span class="butt1bg"></span>Lost Your Password?<br/> Click Here!</a>
</div>
<div id="warning">
<div id="warning_image">
<p>Only enter your password where you see green and "Jagex Limited" in your browser's address bar.</p>
</div>
</div>
<script type="text/javascript">
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 7.0){
/* IE7 */
ShowWarning('ie7.html',false);
}
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 8.0){
/* IE8 */
ShowWarning('ie8.html',false);
}
else if(jQuery.browser.safari && parseFloat(jQuery.browser.version.substr(0,3)) >= 530.0){
/* Safari4 */
ShowWarning('safaric4ca.html?1',false);
}
else if(jQuery.browser.mozilla && parseFloat(jQuery.browser.version.substr(0,3)) >= 1.9){
/* FF3 */
ShowWarning('ff.html',false);
}
SetFocus();
</script>
<br class="clear" />
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>
<div id="footer">
<div class="contain">
<div class="footerdesc">
This website and its contents are copyright under AGPL<br />
Use of this website is subject to our <a href="../../site/terms/terms.html">Terms &amp; Conditions</a> and <a href="../../site/privacy/privacy.html">Privacy Policy</a>.
</div>
<a class="jagexlink" href="/">
<img src="../../site/img/main/layout/jagexc20a.webp" alt="Jagex" />
</a>
<br class="clear"/>
</div>
<br class="clear"/>
</div>
</div>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol)?"https://ssl.":"http://www.");
document.write(unescape("%3Cscript src='"+gaJsHost+"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var _pageTracker=_gat._getTracker("UA-2058817-15");
_pageTracker._setDomainName(".runescape.com");
_pageTracker._trackPageview();
}catch(x){}
</script>
<script type="text/javascript">
try {
var pageTracker=_gat._getTracker("UA-2058817-2");
pageTracker._setDomainName(".runescape.com");
pageTracker._trackPageview();
}catch(x){}
</script>
</body>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=adventurers-log&dest=display_player_profile.ws by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 09:09:50 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
</html>

View File

@ -1,309 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=www&ssl=0&dest=title.ws by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 09:00:04 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
<head>
<link rel="icon" type="image/vnd.microsoft.icon" href="../../site/favicon.ico">
<link rel="SHORTCUT ICON" href="../../site/favicon.ico">
<link rel="apple-touch-icon" href="../../site/img/mobile.webp">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Language" content="
en,
English
">
<meta name="keywords" content="RSPS, Open Source, 2009scape, Osrs, Oldschool Runescape, Runescape, zezima">
<meta name="description" content="Play RuneScape for free, and join a global community of millions as you complete quests and win enormous treasures in a 3D world full of magic and monsters.">
<meta name="title" content="RuneScape - MMORPG - The No.1 Free Online Multiplayer Game">
<title>RuneScape - MMORPG - The No.1 Free Online Multiplayer Game</title>
<style type="text/css">/*\*/@import url(../../site/css/global-34.css);/**/</style>
<script type="text/javascript" src="../../www.jagex.com/js/jquery/jquery_1_4_2.js"></script>
<script type="text/javascript">
$(function(){
$("#play, #playExisting, #playBannerNoad").each(function(){ this.href += "?j=1"; })
})
</script>
<style type="text/css">/*\*/@import url(../../site/css/weblogin-6.css);/**/</style>
<!--[if lt IE 7]>
<style type="text/css" media="screen">
#recaptcha_box {
background-position-x: center;
}
</style>
<![endif]-->
<script type="text/javascript">
function ShowWarning(strImg,bRecaptcha){
document.getElementById('warning_image').style.backgroundImage='url(https://site/img/weblogin/'+strImg+')';
var lb = document.getElementById('login_background');
var lp = document.getElementById('login_panel');
if ( bRecaptcha ){
/* Height sorted out by margins etc. Set heights auto and brown background */
lb.style.backgroundImage='none';
lb.style.backgroundColor='#2c210d';
}else{
/* Fixed height, adjust for warning (no warning for non-java or IE6) */
lb.style.backgroundImage='url(https://site/img/weblogin/loginarea_bg.webp)';
lb.style.height="404px";
}
document.getElementById('warning').style.display="block";
}
function SetFocus(){
/* If the username field is empty, it gets focus. If the password field is empty but username is filled,
it gets focus. Returns false to prevent submit if a field is empty. */
var Username = document.getElementById('username');
var Password = document.getElementById('password');
if ( Username.value == ''){
Username.focus();
return false;
}
if ( Password.value == ''){
Password.focus();
return false;
}
return true;
}
</script>
</head>
<body id="navlogin" class="bodyBackground">
<a name="top"></a>
<div class="bodyBackgroundHead">
<div id="menubox">
<ul id="menus">
<li class="top"><a href="../../site/title.html" id="home" class="tl"><span class="ts">Home</span></a></li>
<li class="top"><a id="play" class="tl" href="https://2009scape.org/site/game_guide/play.html" onclick="try{pageTracker._trackPageview('/play_game/menu/top')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/top')}catch(x){}"
><span class="ts">Play Now</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../m%3dcreate/index.html" class="fly"><span>New Users</span></a></li>
<li><a href="https://2009scape.org/site/game_guide/play.html" id="playExisting" onclick="try{pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}"
class="fly"><span>Existing Users</span></a></li>
<li><a href="../../site/options.html" class="fly"><span>Java Options</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="account" class="tl" href="../../site/account_management.html"><span class="ts">Account</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="members/members.html" class="fly"><span>Upgrade Your Account</span></a></li>
<li><a href="../m%3dcreate/index-2.html" class="fly"><span>Create New Account</span></a></li>
<li><a href="../../site/account_management.html" class="fly"><span>Account Management</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="guide" class="tl" href="../../site/kbase/guid/manual.html"><span class="ts">Game Guide</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/manual.html" class="fly"><span>Manual</span></a></li>
<li><a href="loginform802b.html" class="fly"><span>QuestHelp</span></a></li>
<li><a href="../../services/m%3ditemdb_rs/frontpage.html" class="fly"><span>Grand Exchange</span></a></li>
<li><a href="../../site/kbase/guid/rules_of_conduct.html" class="fly"><span>Rules</span></a></li>
<li><a href="../../site/kbase/guid/lore.html" class="fly"><span>Lores</span></a></li>
<li><a href="../../site/splash.html" class="fly"><span>What is RuneScape?</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="community" class="tl" href="../../services/m%3dforum/forums.html"><span class="ts">Community</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../services/m%3dforum/forums.html" class="fly"><span>Forums</span></a></li>
<li><a href="../../services/m%3dhiscore/hiscores.html" class="fly"><span>Hiscores</span></a></li>
<li><a href="../../site/kbase/guid/Player_Submissions.html" class="fly"><span>Player Submissions</span></a></li>
<li><a href="../../services/m%3dadventurers-log/index.html" class="fly"><span>Adventurer's Log</span></a></li>
<li><a href="../../services/m%3dpoll/index.html" class="fly"><span>Polls</span></a></li>
<li><a href="../../site/kbase/guid/Downloads_and_Wallpapers.html" class="fly"><span>Downloads &amp; Wallpapers</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="help" class="tl" href="../../site/kbase/guid/Customer_Support.html"><span class="ts">Help</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/Customer_Support.html" class="fly"><span>Customer Support</span></a></li>
<li><a href="../../site/loginapplet/loginappletb4b5.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=passwordchoice.ws" class="fly"><span>Password Recovery</span></a></li>
<li><a href="../../site/loginapplet/loginappletef7e.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=lockchoice.ws" class="fly"><span>Locked Account Recovery</span></a></li>
<li><a href="loginform14d4.html?mod=offence-appeal&amp;dest=index.ws" class="fly"><span>Appeal Bans &amp; Mutes</span></a></li>
<li><a href="../../services/m%3dbugtracker_v4/index.html" class="fly"><span>Submit a Bug Report</span></a></li>
<li><a href="../../site/parents.html" class="fly"><span>Parents' Guide</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a href="loginform53bb.html?mod=www&amp;ssl=0&amp;dest=index.ws" id="login" class="tl"><span class="ts">Log In</span></a></li>
</ul>
<br class="clear" />
</div>
<div id="bannerNoad">
<a href="https://2009scape.org/site/game_guide/play.html" class="HoverImg" id="playBannerNoad"><img src="../../site/img/main/skins/default/playnowc20a.webp" alt="Play Now" /></a>
</div>
<div id="scroll">
<div id="head"><div id="headBg">
<div id="langAndLogin">
<div id="lang">
<a href="../../site/title.html"><img alt="English" title="English" src="../../site/img/main/layout/en.gif" /></a>
<a href="../../site/l%3d1/title.html"><img alt="Deutsch" title="Deutsch" src="../../site/img/main/layout/de.gif" /></a>
<a href="../../site/l%3d2/title.html"><img alt="Fran&ccedil;ais" title="Fran&ccedil;ais" src="../../site/img/main/layout/fr.gif" /></a>
<a href="../../site/l%3d3/title.html"><img alt="Portugu&ecirc;s (BR)" title="Portugu&ecirc;s (BR)" src="../../site/img/main/layout/br.gif" /></a>
</div>
</div>
<div class="navigation">
<div class="location">
<b>Location: </b> <a href="../../site/title.html">Home</a> &gt;
Secure Login
</div>
</div>
</div></div>
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Secure Login
</h1>
</div>
</div>
</div>
<div class="section">
<div class="brown_background">
<div id="login_background" class="inner_brown_background" >
<div id="login_panel" class="brown_box" >
<form id="login_form" action="https://secure/m=weblogin/login.ws" method="post" autocomplete="off">
<div class="bottom">
<div class="repeat">
<div class="top_section">
<div id="message">
Please enter your username and password to continue.
</div> <div class="section_form" id="usernameSection">
<label for="username">Username:</label>
<input size="20" type="text" name="username" id="username" maxlength="12"/>
</div>
<div class="section_form" id="passwordSection">
<label for="password">Password:</label>
<input size="20" type="password" id="password" name="password" maxlength="20"/>
</div>
</div>
<div class="bottom_section">
<div id="remember">
<label for="rem">
<input type="checkbox" name="rem" id="rem" value="1" class="checkbox"/>
Check this box to remember username</label>
</div>
<div id="submit_button">
<button type="submit" value="Login Now!" onmouseover="this.style.backgroundPosition='bottom';" onmouseout="this.style.backgroundPosition='top';" onclick="return SetFocus();">Login Now!</button>
</div>
<input type="hidden" name="mod" value="www"/>
<input type="hidden" name="ssl" value="0"/>
<input type="hidden" name="dest" value="title.ws"/>
</div>
</div>
</div>
</form>
</div>
<div class="buttons">
<a href="../m%3dcreate/index-2.html" class="createaccount"><span class="buttbg"></span>Create a New Account<br/>Click Here!</a>
<a href="../../site/loginapplet/loginappletb4b5.html?mod=accountappeal&amp;dest=passwordchoice.ws" class="recoveraccount"><span class="butt1bg"></span>Lost Your Password?<br/> Click Here!</a>
</div>
<div id="warning">
<div id="warning_image">
<p>Only enter your password where you see green and "Jagex Limited" in your browser's address bar.</p>
</div>
</div>
<script type="text/javascript">
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 7.0){
/* IE7 */
ShowWarning('ie7.html',false);
}
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 8.0){
/* IE8 */
ShowWarning('ie8.html',false);
}
else if(jQuery.browser.safari && parseFloat(jQuery.browser.version.substr(0,3)) >= 530.0){
/* Safari4 */
ShowWarning('safaric4ca.html?1',false);
}
else if(jQuery.browser.mozilla && parseFloat(jQuery.browser.version.substr(0,3)) >= 1.9){
/* FF3 */
ShowWarning('ff.html',false);
}
SetFocus();
</script>
<br class="clear" />
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>
<div id="footer">
<div class="contain">
<div class="footerdesc">
This website and its contents are copyright under AGPL<br />
Use of this website is subject to our <a href="../../site/terms/terms.html">Terms &amp; Conditions</a> and <a href="../../site/privacy/privacy.html">Privacy Policy</a>.
</div>
<a class="jagexlink" href="/">
<img src="../../site/img/main/layout/jagexc20a.webp" alt="Jagex" />
</a>
<br class="clear"/>
</div>
<br class="clear"/>
</div>
</div>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol)?"https://ssl.":"http://www.");
document.write(unescape("%3Cscript src='"+gaJsHost+"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var _pageTracker=_gat._getTracker("UA-2058817-15");
_pageTracker._setDomainName(".runescape.com");
_pageTracker._trackPageview();
}catch(x){}
</script>
<script type="text/javascript">
try {
var pageTracker=_gat._getTracker("UA-2058817-2");
pageTracker._setDomainName(".runescape.com");
pageTracker._trackPageview();
}catch(x){}
</script>
</body>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=www&ssl=0&dest=title.ws by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 09:00:04 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
</html>

View File

@ -1,309 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=forum&ssl=0&dest=login.ws by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 09:08:55 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
<head>
<link rel="icon" type="image/vnd.microsoft.icon" href="../../site/favicon.ico">
<link rel="SHORTCUT ICON" href="../../site/favicon.ico">
<link rel="apple-touch-icon" href="../../site/img/mobile.webp">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Language" content="
en,
English
">
<meta name="keywords" content="RSPS, Open Source, 2009scape, Osrs, Oldschool Runescape, Runescape, zezima">
<meta name="description" content="Play RuneScape for free, and join a global community of millions as you complete quests and win enormous treasures in a 3D world full of magic and monsters.">
<meta name="title" content="RuneScape - MMORPG - The No.1 Free Online Multiplayer Game">
<title>RuneScape - MMORPG - The No.1 Free Online Multiplayer Game</title>
<style type="text/css">/*\*/@import url(../../site/css/global-34.css);/**/</style>
<script type="text/javascript" src="../../www.jagex.com/js/jquery/jquery_1_4_2.js"></script>
<script type="text/javascript">
$(function(){
$("#play, #playExisting, #playBannerNoad").each(function(){ this.href += "?j=1"; })
})
</script>
<style type="text/css">/*\*/@import url(../../site/css/weblogin-6.css);/**/</style>
<!--[if lt IE 7]>
<style type="text/css" media="screen">
#recaptcha_box {
background-position-x: center;
}
</style>
<![endif]-->
<script type="text/javascript">
function ShowWarning(strImg,bRecaptcha){
document.getElementById('warning_image').style.backgroundImage='url(https://site/img/weblogin/'+strImg+')';
var lb = document.getElementById('login_background');
var lp = document.getElementById('login_panel');
if ( bRecaptcha ){
/* Height sorted out by margins etc. Set heights auto and brown background */
lb.style.backgroundImage='none';
lb.style.backgroundColor='#2c210d';
}else{
/* Fixed height, adjust for warning (no warning for non-java or IE6) */
lb.style.backgroundImage='url(https://site/img/weblogin/loginarea_bg.webp)';
lb.style.height="404px";
}
document.getElementById('warning').style.display="block";
}
function SetFocus(){
/* If the username field is empty, it gets focus. If the password field is empty but username is filled,
it gets focus. Returns false to prevent submit if a field is empty. */
var Username = document.getElementById('username');
var Password = document.getElementById('password');
if ( Username.value == ''){
Username.focus();
return false;
}
if ( Password.value == ''){
Password.focus();
return false;
}
return true;
}
</script>
</head>
<body id="navlogin" class="bodyBackground">
<a name="top"></a>
<div class="bodyBackgroundHead">
<div id="menubox">
<ul id="menus">
<li class="top"><a href="../../site/title.html" id="home" class="tl"><span class="ts">Home</span></a></li>
<li class="top"><a id="play" class="tl" href="https://2009scape.org/site/game_guide/play.html" onclick="try{pageTracker._trackPageview('/play_game/menu/top')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/top')}catch(x){}"
><span class="ts">Play Now</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../m%3dcreate/index.html" class="fly"><span>New Users</span></a></li>
<li><a href="https://2009scape.org/site/game_guide/play.html" id="playExisting" onclick="try{pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}"
class="fly"><span>Existing Users</span></a></li>
<li><a href="../../site/options.html" class="fly"><span>Java Options</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="account" class="tl" href="../../site/account_management.html"><span class="ts">Account</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="members/members.html" class="fly"><span>Upgrade Your Account</span></a></li>
<li><a href="../m%3dcreate/index-2.html" class="fly"><span>Create New Account</span></a></li>
<li><a href="../../site/account_management.html" class="fly"><span>Account Management</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="guide" class="tl" href="../../site/kbase/guid/manual.html"><span class="ts">Game Guide</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/manual.html" class="fly"><span>Manual</span></a></li>
<li><a href="loginform802b.html" class="fly"><span>QuestHelp</span></a></li>
<li><a href="../../services/m%3ditemdb_rs/frontpage.html" class="fly"><span>Grand Exchange</span></a></li>
<li><a href="../../site/kbase/guid/rules_of_conduct.html" class="fly"><span>Rules</span></a></li>
<li><a href="../../site/kbase/guid/lore.html" class="fly"><span>Lores</span></a></li>
<li><a href="../../site/splash.html" class="fly"><span>What is RuneScape?</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="community" class="tl" href="../../services/m%3dforum/forums.html"><span class="ts">Community</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../services/m%3dforum/forums.html" class="fly"><span>Forums</span></a></li>
<li><a href="../../services/m%3dhiscore/hiscores.html" class="fly"><span>Hiscores</span></a></li>
<li><a href="../../site/kbase/guid/Player_Submissions.html" class="fly"><span>Player Submissions</span></a></li>
<li><a href="../../services/m%3dadventurers-log/index.html" class="fly"><span>Adventurer's Log</span></a></li>
<li><a href="../../services/m%3dpoll/index.html" class="fly"><span>Polls</span></a></li>
<li><a href="../../site/kbase/guid/Downloads_and_Wallpapers.html" class="fly"><span>Downloads &amp; Wallpapers</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="help" class="tl" href="../../site/kbase/guid/Customer_Support.html"><span class="ts">Help</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/Customer_Support.html" class="fly"><span>Customer Support</span></a></li>
<li><a href="../../site/loginapplet/loginappletb4b5.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=passwordchoice.ws" class="fly"><span>Password Recovery</span></a></li>
<li><a href="../../site/loginapplet/loginappletef7e.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=lockchoice.ws" class="fly"><span>Locked Account Recovery</span></a></li>
<li><a href="loginform14d4.html?mod=offence-appeal&amp;dest=index.ws" class="fly"><span>Appeal Bans &amp; Mutes</span></a></li>
<li><a href="../../services/m%3dbugtracker_v4/index.html" class="fly"><span>Submit a Bug Report</span></a></li>
<li><a href="../../site/parents.html" class="fly"><span>Parents' Guide</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a href="loginform53bb.html?mod=www&amp;ssl=0&amp;dest=index.ws" id="login" class="tl"><span class="ts">Log In</span></a></li>
</ul>
<br class="clear" />
</div>
<div id="bannerNoad">
<a href="https://2009scape.org/site/game_guide/play.html" class="HoverImg" id="playBannerNoad"><img src="../../site/img/main/skins/default/playnowc20a.webp" alt="Play Now" /></a>
</div>
<div id="scroll">
<div id="head"><div id="headBg">
<div id="langAndLogin">
<div id="lang">
<a href="../../site/title.html"><img alt="English" title="English" src="../../site/img/main/layout/en.gif" /></a>
<a href="../../site/l%3d1/title.html"><img alt="Deutsch" title="Deutsch" src="../../site/img/main/layout/de.gif" /></a>
<a href="../../site/l%3d2/title.html"><img alt="Fran&ccedil;ais" title="Fran&ccedil;ais" src="../../site/img/main/layout/fr.gif" /></a>
<a href="../../site/l%3d3/title.html"><img alt="Portugu&ecirc;s (BR)" title="Portugu&ecirc;s (BR)" src="../../site/img/main/layout/br.gif" /></a>
</div>
</div>
<div class="navigation">
<div class="location">
<b>Location: </b> <a href="../../site/title.html">Home</a> &gt;
Secure Login
</div>
</div>
</div></div>
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Secure Login
</h1>
</div>
</div>
</div>
<div class="section">
<div class="brown_background">
<div id="login_background" class="inner_brown_background" >
<div id="login_panel" class="brown_box" >
<form id="login_form" action="https://secure/m=weblogin/login.ws" method="post" autocomplete="off">
<div class="bottom">
<div class="repeat">
<div class="top_section">
<div id="message">
Please enter your username and password to continue.
</div> <div class="section_form" id="usernameSection">
<label for="username">Username:</label>
<input size="20" type="text" name="username" id="username" maxlength="12"/>
</div>
<div class="section_form" id="passwordSection">
<label for="password">Password:</label>
<input size="20" type="password" id="password" name="password" maxlength="20"/>
</div>
</div>
<div class="bottom_section">
<div id="remember">
<label for="rem">
<input type="checkbox" name="rem" id="rem" value="1" class="checkbox"/>
Check this box to remember username</label>
</div>
<div id="submit_button">
<button type="submit" value="Login Now!" onmouseover="this.style.backgroundPosition='bottom';" onmouseout="this.style.backgroundPosition='top';" onclick="return SetFocus();">Login Now!</button>
</div>
<input type="hidden" name="mod" value="forum"/>
<input type="hidden" name="ssl" value="0"/>
<input type="hidden" name="dest" value="login.ws"/>
</div>
</div>
</div>
</form>
</div>
<div class="buttons">
<a href="../m%3dcreate/index-2.html" class="createaccount"><span class="buttbg"></span>Create a New Account<br/>Click Here!</a>
<a href="../../site/loginapplet/loginappletb4b5.html?mod=accountappeal&amp;dest=passwordchoice.ws" class="recoveraccount"><span class="butt1bg"></span>Lost Your Password?<br/> Click Here!</a>
</div>
<div id="warning">
<div id="warning_image">
<p>Only enter your password where you see green and "Jagex Limited" in your browser's address bar.</p>
</div>
</div>
<script type="text/javascript">
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 7.0){
/* IE7 */
ShowWarning('ie7.html',false);
}
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 8.0){
/* IE8 */
ShowWarning('ie8.html',false);
}
else if(jQuery.browser.safari && parseFloat(jQuery.browser.version.substr(0,3)) >= 530.0){
/* Safari4 */
ShowWarning('safaric4ca.html?1',false);
}
else if(jQuery.browser.mozilla && parseFloat(jQuery.browser.version.substr(0,3)) >= 1.9){
/* FF3 */
ShowWarning('ff.html',false);
}
SetFocus();
</script>
<br class="clear" />
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>
<div id="footer">
<div class="contain">
<div class="footerdesc">
This website and its contents are copyright under AGPL<br />
Use of this website is subject to our <a href="../../site/terms/terms.html">Terms &amp; Conditions</a> and <a href="../../site/privacy/privacy.html">Privacy Policy</a>.
</div>
<a class="jagexlink" href="/">
<img src="../../site/img/main/layout/jagexc20a.webp" alt="Jagex" />
</a>
<br class="clear"/>
</div>
<br class="clear"/>
</div>
</div>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol)?"https://ssl.":"http://www.");
document.write(unescape("%3Cscript src='"+gaJsHost+"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var _pageTracker=_gat._getTracker("UA-2058817-15");
_pageTracker._setDomainName(".runescape.com");
_pageTracker._trackPageview();
}catch(x){}
</script>
<script type="text/javascript">
try {
var pageTracker=_gat._getTracker("UA-2058817-2");
pageTracker._setDomainName(".runescape.com");
pageTracker._trackPageview();
}catch(x){}
</script>
</body>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=forum&ssl=0&dest=login.ws by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 09:08:55 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
</html>

View File

@ -1,309 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=poll&ssl=0&expired=0&dest=vote.ws?id=451 by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 10:50:11 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
<head>
<link rel="icon" type="image/vnd.microsoft.icon" href="../../site/favicon.ico">
<link rel="SHORTCUT ICON" href="../../site/favicon.ico">
<link rel="apple-touch-icon" href="../../site/img/mobile.webp">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Language" content="
en,
English
">
<meta name="keywords" content="RSPS, Open Source, 2009scape, Osrs, Oldschool Runescape, Runescape, zezima">
<meta name="description" content="Play RuneScape for free, and join a global community of millions as you complete quests and win enormous treasures in a 3D world full of magic and monsters.">
<meta name="title" content="RuneScape - MMORPG - The No.1 Free Online Multiplayer Game">
<title>RuneScape - MMORPG - The No.1 Free Online Multiplayer Game</title>
<style type="text/css">/*\*/@import url(../../site/css/global-34.css);/**/</style>
<script type="text/javascript" src="../../www.jagex.com/js/jquery/jquery_1_4_2.js"></script>
<script type="text/javascript">
$(function(){
$("#play, #playExisting, #playBannerNoad").each(function(){ this.href += "?j=1"; })
})
</script>
<style type="text/css">/*\*/@import url(../../site/css/weblogin-6.css);/**/</style>
<!--[if lt IE 7]>
<style type="text/css" media="screen">
#recaptcha_box {
background-position-x: center;
}
</style>
<![endif]-->
<script type="text/javascript">
function ShowWarning(strImg,bRecaptcha){
document.getElementById('warning_image').style.backgroundImage='url(https://site/img/weblogin/'+strImg+')';
var lb = document.getElementById('login_background');
var lp = document.getElementById('login_panel');
if ( bRecaptcha ){
/* Height sorted out by margins etc. Set heights auto and brown background */
lb.style.backgroundImage='none';
lb.style.backgroundColor='#2c210d';
}else{
/* Fixed height, adjust for warning (no warning for non-java or IE6) */
lb.style.backgroundImage='url(https://site/img/weblogin/loginarea_bg.webp)';
lb.style.height="404px";
}
document.getElementById('warning').style.display="block";
}
function SetFocus(){
/* If the username field is empty, it gets focus. If the password field is empty but username is filled,
it gets focus. Returns false to prevent submit if a field is empty. */
var Username = document.getElementById('username');
var Password = document.getElementById('password');
if ( Username.value == ''){
Username.focus();
return false;
}
if ( Password.value == ''){
Password.focus();
return false;
}
return true;
}
</script>
</head>
<body id="navlogin" class="bodyBackground">
<a name="top"></a>
<div class="bodyBackgroundHead">
<div id="menubox">
<ul id="menus">
<li class="top"><a href="../../site/title.html" id="home" class="tl"><span class="ts">Home</span></a></li>
<li class="top"><a id="play" class="tl" href="https://2009scape.org/site/game_guide/play.html" onclick="try{pageTracker._trackPageview('/play_game/menu/top')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/top')}catch(x){}"
><span class="ts">Play Now</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../m%3dcreate/index.html" class="fly"><span>New Users</span></a></li>
<li><a href="https://2009scape.org/site/game_guide/play.html" id="playExisting" onclick="try{pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}; try{_pageTracker._trackPageview('/play_game/menu/existing')}catch(x){}"
class="fly"><span>Existing Users</span></a></li>
<li><a href="../../site/options.html" class="fly"><span>Java Options</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="account" class="tl" href="../../site/account_management.html"><span class="ts">Account</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="members/members.html" class="fly"><span>Upgrade Your Account</span></a></li>
<li><a href="../m%3dcreate/index-2.html" class="fly"><span>Create New Account</span></a></li>
<li><a href="../../site/account_management.html" class="fly"><span>Account Management</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="guide" class="tl" href="../../site/kbase/guid/manual.html"><span class="ts">Game Guide</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/manual.html" class="fly"><span>Manual</span></a></li>
<li><a href="loginform802b.html" class="fly"><span>QuestHelp</span></a></li>
<li><a href="../../services/m%3ditemdb_rs/frontpage.html" class="fly"><span>Grand Exchange</span></a></li>
<li><a href="../../site/kbase/guid/rules_of_conduct.html" class="fly"><span>Rules</span></a></li>
<li><a href="../../site/kbase/guid/lore.html" class="fly"><span>Lores</span></a></li>
<li><a href="../../site/splash.html" class="fly"><span>What is 2009Scape?</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="community" class="tl" href="../../services/m%3dforum/forums.html"><span class="ts">Community</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../services/m%3dforum/forums.html" class="fly"><span>Forums</span></a></li>
<li><a href="../../services/m%3dhiscore/hiscores.html" class="fly"><span>Hiscores</span></a></li>
<li><a href="../../site/kbase/guid/Player_Submissions.html" class="fly"><span>Player Submissions</span></a></li>
<li><a href="../../services/m%3dadventurers-log/index.html" class="fly"><span>Adventurer's Log</span></a></li>
<li><a href="../../services/m%3dpoll/index.html" class="fly"><span>Polls</span></a></li>
<li><a href="../../site/kbase/guid/Downloads_and_Wallpapers.html" class="fly"><span>Downloads &amp; Wallpapers</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a id="help" class="tl" href="../../site/kbase/guid/Customer_Support.html"><span class="ts">Help</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="../../site/kbase/guid/Customer_Support.html" class="fly"><span>Customer Support</span></a></li>
<li><a href="../../site/loginapplet/loginappletb4b5.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=passwordchoice.ws" class="fly"><span>Password Recovery</span></a></li>
<li><a href="../../site/loginapplet/loginappletef7e.html?mod=www&amp;dest=loginapplet/loginapplet.ws?mod=accountappeal&amp;dest=lockchoice.ws" class="fly"><span>Locked Account Recovery</span></a></li>
<li><a href="loginform14d4.html?mod=offence-appeal&amp;dest=index.ws" class="fly"><span>Appeal Bans &amp; Mutes</span></a></li>
<li><a href="../../services/m%3dbugtracker_v4/index.html" class="fly"><span>Submit a Bug Report</span></a></li>
<li><a href="../../site/parents.html" class="fly"><span>Parents' Guide</span></a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li class="top"><a href="loginform53bb.html?mod=www&amp;ssl=0&amp;dest=index.ws" id="login" class="tl"><span class="ts">Log In</span></a></li>
</ul>
<br class="clear" />
</div>
<div id="bannerNoad">
<a href="https://2009scape.org/site/game_guide/play.html" class="HoverImg" id="playBannerNoad"><img src="../../site/img/main/skins/default/playnowc20a.webp" alt="Play Now" /></a>
</div>
<div id="scroll">
<div id="head"><div id="headBg">
<div id="langAndLogin">
<div id="lang">
<a href="../../site/title.html"><img alt="English" title="English" src="../../site/img/main/layout/en.gif" /></a>
<a href="../../site/l%3d1/title.html"><img alt="Deutsch" title="Deutsch" src="../../site/img/main/layout/de.gif" /></a>
<a href="../../site/l%3d2/title.html"><img alt="Fran&ccedil;ais" title="Fran&ccedil;ais" src="../../site/img/main/layout/fr.gif" /></a>
<a href="../../site/l%3d3/title.html"><img alt="Portugu&ecirc;s (BR)" title="Portugu&ecirc;s (BR)" src="../../site/img/main/layout/br.gif" /></a>
</div>
</div>
<div class="navigation">
<div class="location">
<b>Location: </b> <a href="../../site/title.html">Home</a> &gt;
Secure Login
</div>
</div>
</div></div>
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Secure Login
</h1>
</div>
</div>
</div>
<div class="section">
<div class="brown_background">
<div id="login_background" class="inner_brown_background" >
<div id="login_panel" class="brown_box" >
<form id="login_form" action="https://secure/m=weblogin/login.ws" method="post" autocomplete="off">
<div class="bottom">
<div class="repeat">
<div class="top_section">
<div id="message">
Please enter your username and password to continue.
</div> <div class="section_form" id="usernameSection">
<label for="username">Username:</label>
<input size="20" type="text" name="username" id="username" maxlength="12"/>
</div>
<div class="section_form" id="passwordSection">
<label for="password">Password:</label>
<input size="20" type="password" id="password" name="password" maxlength="20"/>
</div>
</div>
<div class="bottom_section">
<div id="remember">
<label for="rem">
<input type="checkbox" name="rem" id="rem" value="1" class="checkbox"/>
Check this box to remember username</label>
</div>
<div id="submit_button">
<button type="submit" value="Login Now!" onmouseover="this.style.backgroundPosition='bottom';" onmouseout="this.style.backgroundPosition='top';" onclick="return SetFocus();">Login Now!</button>
</div>
<input type="hidden" name="mod" value="poll"/>
<input type="hidden" name="ssl" value="0"/>
<input type="hidden" name="dest" value="vote.ws?id=451"/>
</div>
</div>
</div>
</form>
</div>
<div class="buttons">
<a href="../m%3dcreate/index-2.html" class="createaccount"><span class="buttbg"></span>Create a New Account<br/>Click Here!</a>
<a href="../../site/loginapplet/loginappletb4b5.html?mod=accountappeal&amp;dest=passwordchoice.ws" class="recoveraccount"><span class="butt1bg"></span>Lost Your Password?<br/> Click Here!</a>
</div>
<div id="warning">
<div id="warning_image">
<p>Only enter your password where you see green and "Jagex Limited" in your browser's address bar.</p>
</div>
</div>
<script type="text/javascript">
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 7.0){
/* IE7 */
ShowWarning('ie7.html',false);
}
if(jQuery.browser.msie && parseFloat(jQuery.browser.version) == 8.0){
/* IE8 */
ShowWarning('ie8.html',false);
}
else if(jQuery.browser.safari && parseFloat(jQuery.browser.version.substr(0,3)) >= 530.0){
/* Safari4 */
ShowWarning('safaric4ca.html?1',false);
}
else if(jQuery.browser.mozilla && parseFloat(jQuery.browser.version.substr(0,3)) >= 1.9){
/* FF3 */
ShowWarning('ff.html',false);
}
SetFocus();
</script>
<br class="clear" />
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>
<div id="footer">
<div class="contain">
<div class="footerdesc">
This website and its contents are copyright under AGPL<br />
Use of this website is subject to our <a href="../../site/terms/terms.html">Terms &amp; Conditions</a> and <a href="../../site/privacy/privacy.html">Privacy Policy</a>.
</div>
<a class="jagexlink" href="/">
<img src="../../site/img/main/layout/jagexc20a.webp" alt="Jagex" />
</a>
<br class="clear"/>
</div>
<br class="clear"/>
</div>
</div>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol)?"https://ssl.":"http://www.");
document.write(unescape("%3Cscript src='"+gaJsHost+"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var _pageTracker=_gat._getTracker("UA-2058817-15");
_pageTracker._setDomainName(".runescape.com");
_pageTracker._trackPageview();
}catch(x){}
</script>
<script type="text/javascript">
try {
var pageTracker=_gat._getTracker("UA-2058817-2");
pageTracker._setDomainName(".runescape.com");
pageTracker._trackPageview();
}catch(x){}
</script>
</body>
<!-- Mirrored from secure.runescape.com/m=weblogin/loginform.ws?mod=poll&ssl=0&expired=0&dest=vote.ws?id=451 by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 10:50:11 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
</html>

View File

@ -3,44 +3,7 @@ title: Drop Tables
layout: guide
---
<link rel="stylesheet" href="../css/style.css">
<div id="content">
<div id="rule">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque_medium">
{{ page.title }}
</h1>
</div>
</div>
<div class="section">
<div class="article_theme_1">
<div class="article">
<div class="topshadow">
<div class="bottomborder">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottombordershad">
<div class="bottomleftshad">
<div class="bottomrightshad">
<div id="app"></div>
<script src="https://unpkg.com/vue@3/dist/vue.global.prod.js"></script>
<script type="module" src="../js/searchtool.js"></script>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br class="clear">
</div>
</div>
<div id="app"></div>
<script src="https://unpkg.com/vue@3/dist/vue.global.prod.js"></script>
<script type="module" src="./js/searchtool.js"></script>

View File

@ -8,51 +8,180 @@ layout: guide
margin-top: 0px !important;
}
</style>
<div id="content">
<div id="rule">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque_medium">
{{ page.title }}
</h1>
</div>
</div>
<div class="section">
<div class="article_theme_1">
<div class="article">
<div class="topshadow">
<div class="bottomborder">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottombordershad">
<div class="bottomleftshad">
<div class="bottomrightshad">
<div id="wrapper" style="padding-bottom: 40px;">
<center>
<br>
<br>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright" id="search">Rare Drop Table</span></span>
</div>
<p>Notes: The data on this page may become outdated.</p>
</center>
<div id="table" style="margin:auto;width: 80%;"><h1></h1><table style="width:100%;"><tbody class="true"><tr><td><img src="./img/items/995.webp"></td><td>Coins<div class="debug">id: 995</div></td><td>3000</td><td class="common" title="7.02%">1/14.25</td></tr><tr><td><img src="./img/items/1623.webp"></td><td>Uncut sapphire<div class="debug">id: 1623</div></td><td>1</td><td class="common" title="7.02%">1/14.25</td></tr><tr><td><img src="./img/items/886.webp"></td><td>Steel arrow<div class="debug">id: 886</div></td><td>150</td><td class="common" title="5.85%">1/17.1</td></tr><tr><td><img src="./img/items/1621.webp"></td><td>Uncut emerald<div class="debug">id: 1621</div></td><td>1</td><td class="common" title="5.85%">1/17.1</td></tr><tr><td><img src="./img/items/1619.webp"></td><td>Uncut ruby<div class="debug">id: 1619</div></td><td>1</td><td class="common" title="4.68%">1/21.38</td></tr><tr><td><img src="./img/items/1452.webp"></td><td>Chaos talisman<div class="debug">id: 1452</div></td><td>1</td><td class="common" title="4.09%">1/24.43</td></tr><tr><td><img src="./img/items/1462.webp"></td><td>Nature talisman<div class="debug">id: 1462</div></td><td>1</td><td class="common" title="4.09%">1/24.43</td></tr><tr><td><img src="./img/items/443.webp"></td><td>Silver ore<div class="debug">id: 443</div></td><td>100</td><td class="common" title="4.09%">1/24.43</td></tr><tr><td><img src="./img/items/2363.webp"></td><td>Runite bar<div class="debug">id: 2363</div></td><td>1</td><td class="common" title="4.09%">1/24.43</td></tr><tr><td><img src="./img/items/1617.webp"></td><td>Uncut diamond<div class="debug">id: 1617</div></td><td>1</td><td class="common" title="4.09%">1/24.43</td></tr><tr><td><img src="./img/items/1319.webp"></td><td>Rune 2h sword<div class="debug">id: 1319</div></td><td>1</td><td class="common" title="4.09%">1/24.43</td></tr><tr><td><img src="./img/items/1373.webp"></td><td>Rune battleaxe<div class="debug">id: 1373</div></td><td>1</td><td class="common" title="4.09%">1/24.43</td></tr><tr><td><img src="./img/items/1185.webp"></td><td>Rune sq shield<div class="debug">id: 1185</div></td><td>1</td><td class="common" title="4.09%">1/24.43</td></tr><tr><td><img src="./img/items/987.webp"></td><td>Loop half of a key<div class="debug">id: 987</div></td><td>1</td><td class="common" title="4.09%">1/24.43</td></tr><tr><td><img src="./img/items/985.webp"></td><td>Tooth half of a key<div class="debug">id: 985</div></td><td>1</td><td class="common" title="4.09%">1/24.43</td></tr><tr><td><img src="./img/items/560.webp"></td><td>Death rune<div class="debug">id: 560</div></td><td>45</td><td class="uncommon" title="3.51%">1/28.5</td></tr><tr><td><img src="./img/items/563.webp"></td><td>Law rune<div class="debug">id: 563</div></td><td>45</td><td class="uncommon" title="3.51%">1/28.5</td></tr><tr><td><img src="./img/items/561.webp"></td><td>Nature rune<div class="debug">id: 561</div></td><td>67</td><td class="uncommon" title="3.51%">1/28.5</td></tr><tr><td><img src="./img/items/892.webp"></td><td>Rune arrow<div class="debug">id: 892</div></td><td>42</td><td class="uncommon" title="3.51%">1/28.5</td></tr><tr><td><img src="./img/items/829.webp"></td><td>Adamant javelin<div class="debug">id: 829</div></td><td>20</td><td class="uncommon" title="3.51%">1/28.5</td></tr><tr><td><img src="./img/items/1615.webp"></td><td>Dragonstone<div class="debug">id: 1615</div></td><td>1</td><td class="uncommon" title="2.92%">1/34.2</td></tr><tr><td><img src="./img/items/830.webp"></td><td>Rune javelin<div class="debug">id: 830</div></td><td>5</td><td class="uncommon" title="2.34%">1/42.75</td></tr><tr><td><img src="./img/items/1201.webp"></td><td>Rune kiteshield<div class="debug">id: 1201</div></td><td>1</td><td class="uncommon" title="2.34%">1/42.75</td></tr><tr><td><img src="./img/items/1149.webp"></td><td>Dragon med helm<div class="debug">id: 1149</div></td><td>1</td><td class="uncommon" title="1.75%">1/57</td></tr><tr><td><img src="./img/items/1247.webp"></td><td>Rune spear<div class="debug">id: 1247</div></td><td>1</td><td class="rare" title="0.58%">1/171</td></tr><tr><td><img src="./img/items/2366.webp"></td><td>Shield left half<div class="debug">id: 2366</div></td><td>1</td><td class="rare" title="0.58%">1/171</td></tr><tr><td><img src="./img/items/1249.webp"></td><td>Dragon spear<div class="debug">id: 1249</div></td><td>1</td><td class="rare" title="0.58%">1/171</td></tr></tbody></table></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="wrapper" style="padding-bottom: 40px;">
<center>
<br>
<br>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright" id="search">Rare Drop Table</span></span>
</div>
<p>Notes: The data on this page may become outdated.</p>
</center>
<div id="table" style="margin:auto;width: 80%;">
<h1></h1>
<table style="width:100%;">
<tbody class="true">
<tr>
<td><img src="./img/items/995.webp"></td>
<td>Coins<div class="debug">id: 995</div></td>
<td>3000</td>
<td class="common" title="7.02%">1/14.25</td>
</tr>
<tr>
<td><img src="./img/items/1623.webp"></td>
<td>Uncut sapphire<div class="debug">id: 1623</div></td>
<td>1</td>
<td class="common" title="7.02%">1/14.25</td>
</tr>
<tr>
<td><img src="./img/items/886.webp"></td>
<td>Steel arrow<div class="debug">id: 886</div></td>
<td>150</td>
<td class="common" title="5.85%">1/17.1</td>
</tr>
<tr>
<td><img src="./img/items/1621.webp"></td>
<td>Uncut emerald<div class="debug">id: 1621</div></td>
<td>1</td>
<td class="common" title="5.85%">1/17.1</td>
</tr>
<tr>
<td><img src="./img/items/1619.webp"></td>
<td>Uncut ruby<div class="debug">id: 1619</div></td>
<td>1</td>
<td class="common" title="4.68%">1/21.38</td>
</tr>
<tr>
<td><img src="./img/items/1452.webp"></td>
<td>Chaos talisman<div class="debug">id: 1452</div></td>
<td>1</td>
<td class="common" title="4.09%">1/24.43</td>
</tr>
<tr>
<td><img src="./img/items/1462.webp"></td>
<td>Nature talisman<div class="debug">id: 1462</div></td>
<td>1</td>
<td class="common" title="4.09%">1/24.43</td>
</tr>
<tr>
<td><img src="./img/items/443.webp"></td>
<td>Silver ore<div class="debug">id: 443</div></td>
<td>100</td>
<td class="common" title="4.09%">1/24.43</td>
</tr>
<tr>
<td><img src="./img/items/2363.webp"></td>
<td>Runite bar<div class="debug">id: 2363</div></td>
<td>1</td><td class="common" title="4.09%">1/24.43</td>
</tr>
<tr>
<td><img src="./img/items/1617.webp"></td>
<td>Uncut diamond<div class="debug">id: 1617</div></td>
<td>1</td>
<td class="common" title="4.09%">1/24.43</td>
</tr>
<tr>
<td><img src="./img/items/1319.webp"></td>
<td>Rune 2h sword<div class="debug">id: 1319</div></td>
<td>1</td>
<td class="common" title="4.09%">1/24.43</td>
</tr>
<tr>
<td><img src="./img/items/1373.webp"></td>
<td>Rune battleaxe<div class="debug">id: 1373</div></td>
<td>1</td>
<td class="common" title="4.09%">1/24.43</td>
</tr>
<tr>
<td><img src="./img/items/1185.webp"></td>
<td>Rune sq shield<div class="debug">id: 1185</div></td>
<td>1</td>
<td class="common" title="4.09%">1/24.43</td>
</tr>
<tr>
<td><img src="./img/items/987.webp"></td>
<td>Loop half of a key<div class="debug">id: 987</div></td>
<td>1</td>
<td class="common" title="4.09%">1/24.43</td>
</tr>
<tr>
<td><img src="./img/items/985.webp"></td>
<td>Tooth half of a key<div class="debug">id: 985</div></td>
<td>1</td>
<td class="common" title="4.09%">1/24.43</td>
</tr>
<tr>
<td><img src="./img/items/560.webp"></td>
<td>Death rune<div class="debug">id: 560</div></td>
<td>45</td>
<td class="uncommon" title="3.51%">1/28.5</td>
</tr>
<tr>
<td><img src="./img/items/563.webp"></td>
<td>Law rune<div class="debug">id: 563</div></td>
<td>45</td>
<td class="uncommon" title="3.51%">1/28.5</td>
</tr>
<tr>
<td><img src="./img/items/561.webp"></td>
<td>Nature rune<div class="debug">id: 561</div></td>
<td>67</td>
<td class="uncommon" title="3.51%">1/28.5</td>
</tr>
<tr>
<td><img src="./img/items/892.webp"></td>
<td>Rune arrow<div class="debug">id: 892</div></td>
<td>42</td>
<td class="uncommon" title="3.51%">1/28.5</td>
</tr>
<tr>
<td><img src="./img/items/829.webp"></td>
<td>Adamant javelin<div class="debug">id: 829</div></td>
<td>20</td><td class="uncommon" title="3.51%">1/28.5</td>
</tr>
<tr>
<td><img src="./img/items/1615.webp"></td>
<td>Dragonstone<div class="debug">id: 1615</div></td>
<td>1</td>
<td class="uncommon" title="2.92%">1/34.2</td>
</tr>
<tr>
<td><img src="./img/items/830.webp"></td>
<td>Rune javelin<div class="debug">id: 830</div></td>
<td>5</td>
<td class="uncommon" title="2.34%">1/42.75</td>
</tr>
<tr>
<td><img src="./img/items/1201.webp"></td>
<td>Rune kiteshield<div class="debug">id: 1201</div></td>
<td>1</td>
<td class="uncommon" title="2.34%">1/42.75</td>
</tr>
<tr>
<td><img src="./img/items/1149.webp"></td>
<td>Dragon med helm<div class="debug">id: 1149</div></td>
<td>1</td>
<td class="uncommon" title="1.75%">1/57</td>
</tr>
<tr>
<td><img src="./img/items/1247.webp"></td>
<td>Rune spear<div class="debug">id: 1247</div></td>
<td>1</td>
<td class="rare" title="0.58%">1/171</td>
</tr>
<tr>
<td><img src="./img/items/2366.webp"></td>
<td>Shield left half<div class="debug">id: 2366</div></td>
<td>1</td>
<td class="rare" title="0.58%">1/171</td>
</tr>
<tr>
<td><img src="./img/items/1249.webp"></td>
<td>Dragon spear<div class="debug">id: 1249</div></td>
<td>1</td>
<td class="rare" title="0.58%">1/171</td>
</tr>
</tbody>
</table>
</div>
</div>

View File

@ -650,11 +650,11 @@
</p>
<p>
Use of our Game's source code is subject to our
<a href="/site/terms/terms.html"
<a href="/site/terms"
>Terms &amp; Conditions</a
>
and
<a href="/site/privacy/privacy.html">Privacy Policy</a
<a href="/site/privacy">Privacy Policy</a
>.<br />
</p>
</div>

View File

@ -1,120 +1,103 @@
---
title: Games
title: FunOrb
tags: funorb
layout: guide
layout: community
---
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">FunOrb</h1>
<div class="section">
<div class="article_theme_2">
<div class="firstborder">
<div class="brown_box">
<!-- Horizontaly center the paragraph -->
<p class="text" style="text-align: center">
This is a legacy page. Please visit the new Funorb page by going <a href="../index.html">here</a>!
</p>
<br />
<div class="brown_box" style="margin-bottom: 5px; padding-bottom: 1px" id="games">
<script>
let odd = true;
function addGame(gameId, gameName, gameDesc, author) {
const game = document.createElement("div");
game.className = "itemborder";
if (odd) game.style.marginRight = "4px";
odd = !odd;
const headingPic = document.createElement("div");
headingPic.className = "headingpic";
headingPic.style.backgroundImage = "url(../img/" + gameId + ".avif)";
const gameLink = document.createElement("a");
gameLink.href = "./" + gameId + ".html";
const gameImg = document.createElement("img");
gameImg.alt = `${gameName} icon`;
gameImg.src = "../img/" + gameId + ".avif";
gameImg.style.width = "70px";
gameImg.style.height = "70px";
gameLink.appendChild(gameImg);
const gameDiv = document.createElement("div");
gameDiv.className = "cattext";
const gameText = document.createElement("div");
gameText.className = "text";
const gameTitle = document.createElement("div");
gameTitle.className = "title1";
const gameTitleLink = document.createElement("a");
gameTitleLink.href = "./" + gameId + ".html";
gameTitleLink.innerHTML = gameName;
gameTitle.appendChild(gameTitleLink);
gameText.appendChild(gameTitle);
gameText.innerHTML += gameDesc;
gameText.innerHTML += "<br />Added by " + author;
gameDiv.appendChild(gameText);
headingPic.appendChild(gameLink);
game.appendChild(headingPic);
game.appendChild(gameDiv);
document.getElementById("games").appendChild(game);
}
addGame(
"ageofwar",
"Age of War",
"Battle of the ages!<br/>",
"Red Bracket"
);
addGame(
"bloonstd1",
"Bloons Tower Defense 1",
"Use Monkeys to stop the bloons from escaping!<br/>",
"Red Bracket"
);
addGame(
"bloonstd2",
"Bloons Tower Defense 2",
"Use Monkeys to stop the bloons from escaping!<br/>",
"Red Bracket"
);
addGame(
"bloonstd3",
"Bloons Tower Defense 3",
"Use Monkeys to stop the bloons from escaping, v3!<br/>",
"Red Bracket"
);
addGame(
"flashsonic",
"Flash Sonic",
"Run through the levels as Sonic!<br/>",
"Red Bracket"
);
addGame(
"learntofly2",
"Learn to Fly 2",
"Help a poor Penguin fly...<br/>",
"Red Bracket"
)
addGame(
"worldshardestgame",
"World's Hardest Game",
"A game that's actually hard<br/>",
"Red Bracket"
);
</script>
</div>
<div class="container" style="clear: both"></div>
</div>
</div>
<div class="section">
<div class="article_theme_2">
<div class="firstborder">
<div class="brown_box">
<!-- Horizontaly center the paragraph -->
<p class="text" style="text-align: center">
This is a legacy page. Please visit the new Funorb page by going <a href="../index.html">here</a>!
</p>
<br />
<div
class="brown_box"
style="margin-bottom: 5px; padding-bottom: 1px"
id="games"
>
<script>
let odd = true;
function addGame(gameId, gameName, gameDesc, author) {
const game = document.createElement("div");
game.className = "itemborder";
if (odd) game.style.marginRight = "4px";
odd = !odd;
const headingPic = document.createElement("div");
headingPic.className = "headingpic";
headingPic.style.backgroundImage = "url(../img/" + gameId + ".avif)";
const gameLink = document.createElement("a");
gameLink.href = "./" + gameId + ".html";
const gameImg = document.createElement("img");
gameImg.alt = `${gameName} icon`;
gameImg.src = "../img/" + gameId + ".avif";
gameImg.style.width = "70px";
gameImg.style.height = "70px";
gameLink.appendChild(gameImg);
const gameDiv = document.createElement("div");
gameDiv.className = "cattext";
const gameText = document.createElement("div");
gameText.className = "text";
const gameTitle = document.createElement("div");
gameTitle.className = "title1";
const gameTitleLink = document.createElement("a");
gameTitleLink.href = "./" + gameId + ".html";
gameTitleLink.innerHTML = gameName;
gameTitle.appendChild(gameTitleLink);
gameText.appendChild(gameTitle);
gameText.innerHTML += gameDesc;
gameText.innerHTML += "<br />Added by " + author;
gameDiv.appendChild(gameText);
headingPic.appendChild(gameLink);
game.appendChild(headingPic);
game.appendChild(gameDiv);
document.getElementById("games").appendChild(game);
}
addGame(
"ageofwar",
"Age of War",
"Battle of the ages!<br/>",
"Red Bracket"
);
addGame(
"bloonstd1",
"Bloons Tower Defense 1",
"Use Monkeys to stop the bloons from escaping!<br/>",
"Red Bracket"
);
addGame(
"bloonstd2",
"Bloons Tower Defense 2",
"Use Monkeys to stop the bloons from escaping!<br/>",
"Red Bracket"
);
addGame(
"bloonstd3",
"Bloons Tower Defense 3",
"Use Monkeys to stop the bloons from escaping, v3!<br/>",
"Red Bracket"
);
addGame(
"flashsonic",
"Flash Sonic",
"Run through the levels as Sonic!<br/>",
"Red Bracket"
);
addGame(
"learntofly2",
"Learn to Fly 2",
"Help a poor Penguin fly...<br/>",
"Red Bracket"
)
addGame(
"worldshardestgame",
"World's Hardest Game",
"A game that's actually hard<br/>",
"Red Bracket"
);
</script>
</div>
<div class="container" style="clear: both"></div>
</div>
</div>
</div>
</div>
<br class="clear" />
</div>
</div>

View File

@ -1 +0,0 @@
google-site-verification: google59c3b1a60dac4e74.html

View File

@ -505,9 +505,9 @@
</p>
<p>
Use of our Game's source code is subject to our
<a href="/site/terms/terms.html">Terms &amp; Conditions</a>
<a href="/site/terms">Terms &amp; Conditions</a>
and
<a href="/site/privacy/privacy.html">Privacy Policy</a>.<br />
<a href="/site/privacy">Privacy Policy</a>.<br />
</p>
</div>
<div id="jagex">

View File

@ -560,14 +560,14 @@
</p>
<p>
Use of our Game's source code is subject to our
<a href="/site/terms/terms.html">Terms &amp; Conditions</a>
<a href="/site/terms">Terms &amp; Conditions</a>
and
<a href="/site/privacy/privacy.html">Privacy Policy</a>.<br />
<a href="/site/privacy">Privacy Policy</a>.<br />
</p>
</div>
<div id="jagex">
<a href="/" target="_blank">
<img src="/site/2009scape-resources/img/branding/logo-footer-dark.webp" width="110" height="33"
<img src="/2009scape-resources/img/branding/logo-footer-dark.webp" width="110" height="33"
alt="2009Scape Logo" />
</a>
</div>

View File

@ -1,259 +1,38 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Mirrored from site/kbase/guid/manual by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 08:58:40 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
<head>
<link rel="icon" type="image/vnd.microsoft.icon" href="../../favicon.ico">
<link rel="SHORTCUT ICON" href="../../favicon.ico">
<link rel="apple-touch-icon" href="../../img/mobile.webp">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Language" content="
en,
English
">
<meta name="keywords" content="RSPS, Open Source, 2009scape, Osrs, Oldschool 2009scape, 2009scape, zezima">
<meta name="description" content="See some of our archived web pages!">
<meta name="title" content="2009scape- Archived Webpages">
<title>2009scape - Archived Webpages</title>
<style type="text/css">/*\*/@import url(../css/global-34.css);/**/</style>
<script type="text/javascript" src="../../../www.jagex.com/js/jquery/jquery_1_4_2.js"></script>
<script type="text/javascript">
$(function(){
$("#play, #playExisting, #playBannerNoad").each(function(){ this.href += "?j=1"; })
})
</script>
<style type="text/css">/*\*/@import url(../css/kbase-6.css);/**/</style>
<script type="text/javascript">
var link_no=0;
function open_window(url, width, height) {
var settings="toolbar=0,scrollbars=0";
if(width && width!=0) settings+=",width=" + width;
if(height && height!=0) settings+=",height=" + height;
window.open(url, "popuplink" + link_no++, settings);
}
var subcats=new Array();
function add_subcat(parent, id, name, selected) {
if(!subcats[parent]) subcats[parent]=new Array();
var new_option=document.createElement("OPTION");
new_option.name=name;
new_option.innerHTML=name;
new_option.value=id;
if(selected) { new_option.selected='selected'; }
subcats[parent][subcats[parent].length]=new_option;
return new_option;
}
function update_cats(suffix) {
if(!suffix) suffix="";
var top_level_select=document.getElementById("search_cat_select" + suffix);
var subcat_select=document.getElementById("search_subcat_select" + suffix);
if(!top_level_select || !subcat_select) return;
if(subcat_select.options)
for(old in subcat_select.options) subcat_select.options[1]=null;
to_show=top_level_select.value;
if(to_show>-1 && subcats[to_show]) {
for(new_opt=0; new_opt<subcats[to_show].length; new_opt++) {
var oldopt=subcats[to_show][new_opt];
var newopt=document.createElement("OPTION");
newopt.name=oldopt.name;
newopt.innerHTML=oldopt.innerHTML;
newopt.value=oldopt.value;
subcat_select.appendChild(newopt);
}
}
}
window.onload=function() {
update_cats();
update_cats('_footer');
}
</script>
<script type="text/javascript">
new_subcat=add_subcat(4, 5, "Postbag from the Hedge", -1 == 5);new_subcat=add_subcat(4, 6, "Players' Gallery", -1 == 6);new_subcat=add_subcat(4, 19, "God letters", -1 == 19);new_subcat=add_subcat(775, 892, "How do I get started?", -1 == 892);new_subcat=add_subcat(775, 798, "Controls", -1 == 798);new_subcat=add_subcat(775, 795, "Combat", -1 == 795);new_subcat=add_subcat(775, 776, "Skills", -1 == 776);new_subcat=add_subcat(775, 7, "Quests", -1 == 7);new_subcat=add_subcat(775, 1, "Achievement Diary", -1 == 1);new_subcat=add_subcat(775, 10, "Activities", -1 == 10);new_subcat=add_subcat(775, 38, "Distractions and Diversions", -1 == 38);new_subcat=add_subcat(775, 831, "Miscellaneous Guides", -1 == 831);new_subcat=add_subcat(775, 881, "Area Guides", -1 == 881);new_subcat=add_subcat(20, 32, "A New Look 2009scape: Part 1", -1 == 32);new_subcat=add_subcat(20, 21, "Graphics Team - NPC Improvement Project", -1 == 21);new_subcat=add_subcat(9, 127, "Billing", -1 == 127);new_subcat=add_subcat(9, 126, "Technical", -1 == 126);new_subcat=add_subcat(9, 827, "Safety & Security Guidelines", -1 == 827);new_subcat=add_subcat(9, 872, "Other", -1 == 872);
</script>
</head>
<body id="navguide" class="bodyBackground">
<a name="top"></a>
<div id="scroll">
<div id="head">
<div id="headBg">
<div id="headOrangeTop"></div>
<img id="banner" src="" alt="RuneScape" width="766" height="143">
<!--SCRIPT: MONTHLY BANNER-->
<script type="text/javascript">
document.getElementById("banner").src = `../2009scape-resources/img/banners/${new Date().getMonth() + 1}.webp`;
</script>
<div id="headImage"><a href="/" id="logo_select"></a>
<div id="player_no"><span class="brandingColor">2009Scape</span>: a free &amp; open-source remake of 2009 era RuneScape</div>
</div>
<div id="headOrangeBottom"></div>
<!-- End of Banner -->
<div id="menubox">
<ul id="menus">
<li class="top"><a href="./../../index.html" id="home" class="tl"><span class="ts">Home</span></a></li>
<li class="top"><a id="play" class="tl"
href="https://cdn.2009scape.org/wiki/doku.php?id=start"><span class="ts">Wiki</span></a>
</li>
<li class="top"><a id="play" class="tl" href="../../services/m=news/archives/archives.html"><span class="ts">Updates</span></a>
<ul>
<li><a href="../../services/m=news/archives/archives.html" class="fly"><span>Legacy Updates</span></a></li>
<li><a href="../../services/m=news/list.html" class="fly"><span>2.009 Updates</span></a></li>
</ul>
</li>
<li class="top"><a id="community" class="tl" href="../game_guide/manual.html"><span class="ts">Game
Guide</span></a>
<ul>
<li><a href="../game_guide/manual.html" class="fly"><span>Browse the Game Guide</span></a></li>
<li><a href="../game_guide/credits.html" class="fly"><span>The Credit System</span></a>
<li><a href="../rules/rules.html" class="fly"><span>Our Rules</span></a></li>
<li><a href="../game_guide/about2009scape.html" class="fly"><span>About 2009scape</span></a></li>
</ul>
</li>
<li class="top"><a id="guide" class="tl" href="./community.html"><span class="ts">Community</span></a>
<ul>
<li><a href="https://discord.com/invite/43YPGND" class="fly"><span>Discord Server</span> </a></li>
<li><a href="https://matrix.to/#/#2009scape:matrix.vddcore.eu" class="fly"><span>Matrix Server</span> </a></li>
<li><a href="./services/m=hiscore/hiscores.html?world=2" class="fly"><span>Legacy Hiscores</span></a></li>
<li><a href="./hall_of_fame.html" class="fly"><span>The Hall Of Fame</span></a>
<li><a href="./staff.html" class="fly"><span>Meet the Staff</span></a>
<li><a href="./contributors.html" class="fly"><span>To the Tributes!</span></a></li>
<li><a href="../classicapplet/playclassic.html" class="fly"><span>Play Classic</span></a>
</ul>
</li>
<li class="top"><a id="help" class="tl" href="../help/help_hub.html"><span class="ts">Help</span></a>
<ul>
<li><a href="../help/faq.html" class="fly"><span>Frequently Asked Questions</span></a></li>
<li><a href="https://gitlab.com/2009scape/2009scape/-/issues/new" class="fly"><span>Submit a Bug Report</span></a>
</li>
</ul>
</li>
<li class="top"><a id="login" class="tl" href="https://gitlab.com/2009scape" rel="noopener noreferrer" target="_blank"><span class="ts">Source Code</span></a>
<ul>
<li><li><a href="https://gitlab.com/2009scape/2009scape" rel="noopener noreferrer" target="_blank" class="fly"><span>Game Source Code</span></a></li>
<li><a href="https://github.com/2009scape/2009Scape.github.io" rel="noopener noreferrer" target="_blank" class="fly"><span>Website Source Code</span></a>
</ul>
</li>
</ul>
<br class="clear" />
</div>
<div class="navigation">
<div class="location">
<b>Location: </b> <a href="../../../index.html">Home</a> &gt;
Archived Web Pages<br />
</div>
</div>
</div></div>
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Archived Web Pages
</h1>
</div>
</div>
</div>
<div class="section">
---
title: Archived web pages
layout: community
---
<div class="article_theme_2">
<div class="firstborder">
<div class="brown_box">
<div class="brown_box" style="margin-bottom: 5px; padding-bottom:1px;">
<div class="itemborder" style="margin-right:4px;">
<div class="headingpic"><a href="./archived_hall_of_fame.html"><img src="../img/main/kbase/category_pages/img_big/controls_statistics.webp" alt="" style="width:70px;height:70px;"/></a></div>
<div class="cattext"><div class="text"><div class="title1"><a href="./archived_hall_of_fame.html">x10 & x20 Hall of Fame</a></div>
Check out the Hall of Famers for the removed experience rates for x10 and x20 xp.</div>
</div>
</div>
<div class="container" style="clear:both;"></div>
</div>
<div class="container" style="clear:both;"></div>
<div class="brown_box" style="margin-bottom: 5px;"><div class="inner_brown_box">
<div class="helptext">
<div class="helptitle"><b>Important Information</b></div>
This entire website is getting a massive overhaul and this page will change. If you need any help at all ask a staff member either on our
<a href="https://discord.gg/43YPGND">Discord</a> or if you do not prefer discord check out our <a href="https://matrix.to/#/#2009scape:matrix.vddcore.eu">Matrix</a>!
</div>
</div></div>
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>
</div>
<div id="footer">
<div class="contain">
<div class="footerdesc">
Copyright &copy; 2021 under AGPL. <strong>2009Scape is not affiliated with RuneScape or Jagex Ltd.</strong><br />
Use of our Game's source code is subject to our <a href="../terms/terms.html">Terms &amp;
Conditions</a> and <a href="../privacy/privacy.html">Privacy Policy</a>.<br />
<div class="firstborder">
<div class="brown_box">
<div class="brown_box" style="margin-bottom: 5px; padding-bottom:1px;">
<div class="itemborder" style="margin-right:4px;">
<div class="headingpic">
<a href="archived_hall_of_fame.html">
<img src="/site/img/main/kbase/category_pages/img_big/controls_statistics.webp" alt="" style="width:70px;height:70px;"/>
</a>
</div>
<a class="jagexlink" href="/">
<img src="../2009scape-resources/img/branding/logo-footer-dark.webp" width="110" height="33" alt="2009Scape" />
</a>
<br class="clear" />
<div class="cattext">
<div class="text">
<div class="title1">
<a href="archived_hall_of_fame.html">x10 & x20 Hall of Fame</a>
</div>
Check out the Hall of Famers for the removed experience rates for x10 and x20 xp.
</div>
</div>
</div>
<div class="container" style="clear:both;"></div>
</div>
<div class="container" style="clear:both;"></div>
<div class="brown_box" style="margin-bottom: 5px;">
<div class="inner_brown_box">
<div class="helptext">
<div class="helptitle"><b>Important Information</b></div>
This entire website is getting a massive overhaul and this page will change.
If you need any help at all ask a staff member either on our <a href="https://discord.gg/43YPGND">Discord</a> or if you do not prefer Discord check out our <a href="https://matrix.to/#/#2009scape:matrix.vddcore.eu">Matrix</a>!
</div>
</div>
</div>
</div>
<br class="clear" />
</div>
</div>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol)?"https://ssl.":"http://www.");
document.write(unescape("%3Cscript src='"+gaJsHost+"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var _pageTracker=_gat._getTracker("UA-2058817-15");
_pageTracker._setDomainName(".2009scape.com");
_pageTracker._trackPageview();
}catch(x){}
</script>
<script type="text/javascript">
try {
var pageTracker=_gat._getTracker("UA-2058817-2");
pageTracker._setDomainName(".2009scape.com");
pageTracker._trackPageview();
}catch(x){}
</script>
</body>
<!-- Mirrored from site/kbase/guid/manual by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 08:58:42 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
</html>
</div>
</div>

File diff suppressed because it is too large Load Diff

View File

@ -533,10 +533,10 @@
<div class="footerdesc">
Every credit possible is to the developers of <a
href="https://github.com/candybox2/">Candybox</a>.<br />This page of the website is NOT coverd
by our <a href="../../site/terms/terms.html">Terms and Conditions</a>.<br />
by our <a href="/site/terms">Terms and Conditions</a>.<br />
</div>
<a class="jagexlink" href="/">
<img src="../../site/img/2009img/main/layout/jagex.webp" alt="Jagex" />
<img src="/site/img/2009img/main/layout/jagex.webp" alt="Jagex" />
</a>
</div>

View File

@ -1,193 +1,162 @@
---
title: OpenRSC - Open Source Runescape Classic
title: Open RuneScape Classic
layout: default
---
<style type="text/css">
.buttons_play {
width: 500px;
margin: auto;
width: 500px;
margin: auto;
}
.drop_play {
width: 354px;
margin: auto;
width: 354px;
margin: auto;
}
a.buttonlong {
text-decoration: none;
text-align: center;
line-height: 24px;
display: block;
color: black;
}
#playnow {
margin: 0 auto 1em;
display: block;
position: relative;
width: 500px;
height: 33px;
overflow: hidden;
}
#playnow:hover {
font-weight: bold;
}
#playnow img {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 200%;
}
#playnow:hover img {
top: -100%;
text-decoration: none;
text-align: center;
line-height: 24px;
display: block;
color: black;
}
/* Intro */
#intro {
margin: 0 0 -6px 0;
position: relative;
top: -6px;
left: -6px;
width: 754px;
height: 362px;
background: #d0b16d url(../img/main/classicapplet/intro_bg.webp) left top no-repeat;
margin: 0 0 -6px 0;
position: relative;
top: -6px;
left: -6px;
width: 754px;
height: 362px;
background: #d0b16d url(../img/main/classicapplet/intro_bg.webp) left top no-repeat;
}
/* Bullets */
#intro ul {
position: absolute;
left: 41px;
top: 122px;
width: 295px;
margin: 0;
padding: 0 0 0 20px;
text-align: left;
font-size: 12px;
color: #492c21;
position: absolute;
left: 41px;
top: 122px;
width: 295px;
margin: 0;
padding: 0 0 0 20px;
text-align: left;
font-size: 12px;
color: #492c21;
}
#intro ul li {
margin: 0 0 6px;
margin: 0 0 6px;
}
/* Screens */
#screens {
position: absolute;
left: 365px;
top: 46px;
width: 312px;
height: 257px;
position: absolute;
left: 365px;
top: 46px;
width: 312px;
height: 257px;
}
#screens a {
position: absolute;
left: 0;
top: 196px;
position: absolute;
left: 0;
top: 196px;
}
#screens a img {
width: 101px;
height: 62px;
width: 101px;
height: 62px;
}
#screens #bigScreen {
top: 0;
top: 0;
}
#screens #bigScreen img {
width: 312px;
height: 192px;
width: 312px;
height: 192px;
}
#screens #screen1 {
left: 105px;
left: 105px;
}
#screens #screen2 {
left: 211px;
left: 211px;
}
#screens .selected img {
margin: -1px;
border: 1px solid #feedb8;
margin: -1px;
border: 1px solid #feedb8;
}
#members {
position: absolute;
left: 50%;
top: 314px;
width: 666px;
margin: 0 0 0 -333px;
color: #392c14;
font-weight: bold;
font-size: 11px;
text-align: center;
position: absolute;
left: 50%;
top: 314px;
width: 666px;
margin: 0 0 0 -333px;
color: #392c14;
font-weight: bold;
font-size: 11px;
text-align: center;
}
#members a {
color: #634310;
color: #634310;
}
/* Play Big */
#playBig {
position: absolute;
left: 77px;
top: 258px;
width: 251px;
height: 50px;
position: absolute;
left: 77px;
top: 258px;
width: 251px;
height: 50px;
}
</style>
</style>
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Open RuneScape Classic
</h1>
</div>
</div>
</div>
<div class="section">
<div class="brown_background">
<div class="brown_background">
<div id="intro">
<ul>
<li>Take advantage of the forever free version of Runescape Classic.</li>
<li>Ever heard your clan mates talk about the "old days" and wonder what they were really like? Find out!</li>
<li>Be part of the nostalgia - try glorious three hit combat!</li>
<li>See what the old "Wildy" was really like.</li>
<li>Defeat Elvarg all over again... OLDSKOOL!</li>
</ul>
<div id="screens">
<img id="bigScreen" src="../2009scape-resources/img/classic/alphatest.webp" width="300" height="200" alt="">
<a href="../img/main/classicapplet/screen0.webp" target="_blank" id="screen0" class="screen"><img src="../img/main/classicapplet/screen0_thumb.webp" alt=""></a>
<a href="../img/main/classicapplet/screen1.webp" target="_blank" id="screen1" class="screen"><img src="../img/main/classicapplet/screen1_thumb.webp" alt=""></a>
<a href="../img/main/classicapplet/screen2.webp" target="_blank" id="screen2" class="screen"><img src="../img/main/classicapplet/screen2_thumb.webp" alt=""></a>
</div>
<a href="https://rsc.vet/playnow" id="playBig" class="play HoverImg">
<img src="../img/main/classicapplet/playBig.webp" alt="Play Now">
</a>
<p id="members">Please note: We our not the developers of OpenRsc,
<br> please make sure you read and follow their
<a href="https://rsc.vet/faq" target="_blank" rel="noopener noreferrer">rules</a> before going over there.</p>
<ul>
<li>Take advantage of the forever free version of Runescape Classic.</li>
<li>Ever heard your clan mates talk about the "old days" and wonder what they were really like? Find out!</li>
<li>Be part of the nostalgia - try glorious three hit combat!</li>
<li>See what the old "Wildy" was really like.</li>
<li>Defeat Elvarg all over again... OLDSKOOL!</li>
</ul>
<div id="screens">
<img id="bigScreen" src="/site/2009scape-resources/img/classic/alphatest.webp" width="300" height="200" alt="">
<a href="/site/img/main/classicapplet/screen0.webp" target="_blank" id="screen0" class="screen"><img src="/site/img/main/classicapplet/screen0_thumb.webp" alt=""></a>
<a href="/site/img/main/classicapplet/screen1.webp" target="_blank" id="screen1" class="screen"><img src="/site/img/main/classicapplet/screen1_thumb.webp" alt=""></a>
<a href="/site/img/main/classicapplet/screen2.webp" target="_blank" id="screen2" class="screen"><img src="/site/img/main/classicapplet/screen2_thumb.webp" alt=""></a>
</div>
<a href="https://rsc.vet/playnow" id="playBig" class="play HoverImg">
<img src="/site/img/main/classicapplet/playBig.webp" alt="Play Now">
</a>
<p id="members">
Please note: We our not the developers of OpenRSC,
<br>
please make sure you read and follow their
<a href="https://rsc.vet/faq" target="_blank" rel="noopener noreferrer">rules</a> before going over there.
</p>
</div>
<div class="inner_brown_background">
<div style="margin-bottom:0px;" class="brown_box">
<div class="subsectionHeader">Play RuneScape Classic</div>
<div style="text-align:center" class="inner_brown_box">
<b>Extra links and Images of Open RSC below</b>
<ul>
<li>Check out their really cool full of QoL feature Client <a href="https://rsc.plus/" target="_blank" rel="noopener noreferrer">RSC+</a></li>
<li>Click the icon to enter their discord : <a href="https://discord.com/invite/mTBXvu2"><img src="./../2009scape-resources/img/icons/brand-discord.svg" width="20" height="20"></a></li>
</ul>
<br>
<br>
<div style="margin-bottom:0px;" class="brown_box">
<div class="subsectionHeader">Play RuneScape Classic</div>
<div class="inner_brown_box">
<p>
Check out their really cool full of QoL feature Client <a href="https://rsc.plus/" target="_blank" rel="noopener noreferrer">RSC+</a>
<br />
Click the icon to enter their Discord: <a href="https://discord.com/invite/mTBXvu2"><img src="/site/2009scape-resources/img/icons/brand-discord.svg" width="20" height="20"></a>
</p>
<br>
<br>
</div>
</div>
</div>
</div> </div> </div> </div> </div>
</div>
</div>

View File

@ -1 +0,0 @@
<meta http-equiv="refresh" content="0; URL=./" />

View File

@ -1,193 +0,0 @@
---
title: The Tributes
tags: community
layout: guide
---
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
The Tributes
</h1>
</div>
</div>
</div>
<div class="section">
<div class="article_theme_1">
<div class="article">
<div class="topshadow">
<div class="bottomborder">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottomleft">
<div class="bottomright">
<div class="links"> </div>
<br class="clear"/>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">The Tributes</span></span>
</div><br/>
<br/>
<br/>
<p> Unlike the hunger games we love to celebrate our tributes not have them kill each other. Even though
that would be fantastic content idea. In order to become a contributor you need to ... Contribute!
Our Legacy is open source so you are able to contribute as mentioned in the
<a href="../game_guide/credits.html"> Credit System</a> page. They have saved the developers countless of
hours of work making sure we get closer to where we need to be.
<br/>
<br/>
We have been looking at more ways to celebrate them in general to encourage more people to contribute more often.
I mean it's okay if you honestly can not in anyways but the staff are more than willing to help you learn in order
to save us time.
<br/>
<br/>
<b><i> Why should you contribute if you aren't guarenteed staff?</i></b>
<br/>
</p><p> Staff is not based off of how much you contribute. It's based off a few characteristics we personally look for.
Unlike staff, you can not lose your contributor title. Even when staff are "terminated" we give them a contributor symbol to show
our appreciation for their work.
</p>
<b><i> You get a unique role on the discord </i></b>
<br/>
<p> While this doesn't matter to everyone this does matter to some. It shows recognition by putting you in your own category.
There aren't any special abilities other than a unique color of your name.
<br/>
<br/>
This will not be useful for matrix users and I'm sorry. Do note that you are recognized for your efforts and this page is for you!
</p>
<b> You get them credits</b>
<p> Did you know that contributing gets you money?? Wait.. not real cash but it does give you credits inside of the game.
You will notice that you will start getting in-game credits for your efforts of json.
</p>
<b> First choice at things </b>
<p> When it comes to voting for polls, testing new content before others or even learning about upcoming events you are more likely to
be picked for this since you have taken the time to help us out.
</p>
<b>You get a clan chat badge</b>
<p> The clan chat badge goes up over time as you contribute more and more. It does not do anything in-game it just shows that you have
contributed towards the project.
<b>Currently in the process of getting back in the groove of things so this will come in time but you will not be forgotten!</b>
</p>
<br/>
<br/>
More will be added to this page over time including names or perks. Thank you for all of the contributions everyone! You guys rock!
<br/>
<br/>
<b> Our list of thanks </b> <br/><br/>
+ <b style="color:#6fa9de"> Ryannathans </b><br/>
+ <b style="color:#6fa9de"> Crash Bandicoot </b> <br/>
+ <b style="color:#6fa9de"> Evspra (Qmqz)</b> <br/>
+ <b style="color:#6fa9de"> Logg </b> <br/>
+ <b style="color:#6fa9de"> Alex </b> <br/>
+ <b style="color:#6fa9de"> Afaroutdude </b> <br/>
+ <b style="color:#6fa9de"> Michael Carrot </b> <br/>
+ <b style="color:#6fa9de"> Qweqker </b> <br/>
+ <b style="color:#6fa9de"> Aweinstock </b> <br/>
+ <b style="color:#6fa9de">Downthecrop</b> <br/>
+ <b style="color:#6fa9de">Phunny</b> <br/>
+ <b style="color:#6fa9de">Pyrr</b> <br/>
+ <b style="color:#6fa9de">Cp49</b> <br/>
+ <b style="color:#6fa9de">Vk91</b> <br/>
+ <b style="color:#6fa9de">Daniella</b> <br>
+ <b style="color:#6fa9de">Regenleif</b> <br/>
+ <b style="color:#6fa9de">Pazaz</b> <br/>
+ <b style="color:#6fa9de">Kennynes</b> <br/>
+ <b style="color:#6fa9de">Cory</b> <br/>
+ <b style="color:#6fa9de">Spoofessor</b> <br/>
+ <b style="color:#6fa9de">Bushtail</b> <br/>
<br/>
<br/>
<br/>
<tr>
</tr>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="search">
<div class="searchtop">
<div class="bottombordershad">
<div class="leftshadow">
<div class="rightshadow">
<div class="topleft">
<div class="topright">
<div class="bottomleftshad">
<div class="bottomrightshad">
<div class="searchtext">
<p style="text-align: center;font-size:11px;font-weight:bold; margin-bottom: 0px;">
<img src="/site/img/2009img/main/kbase/redpartyhat.webp" alt="Cute Red Partyhat icon"/>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>

View File

@ -0,0 +1,76 @@
---
title: The Tributes
tags: community
layout: guide
---
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">The Tributes</span></span>
</div>
Unlike the hunger games we love to celebrate our tributes not have them kill each other.
Even though that would be fantastic content idea.
In order to become a contributor you need to ... Contribute!
Our Legacy is open source so you are able to contribute as mentioned in the [Credit System](/site/game_guide/credits.html) page.
They have saved the developers countless of hours of work making sure we get closer to where we need to be.
We have been looking at more ways to celebrate them in general to encourage more people to contribute more often.
I mean it's okay if you honestly can not in anyways but the staff are more than willing to help you learn in order to save us time.
***Why should you contribute if you aren't guarenteed staff?***
Staff is not based off of how much you contribute.
It's based off a few characteristics we personally look for.
Unlike staff, you can not lose your contributor title.
Even when staff are "terminated" we give them a contributor symbol to show our appreciation for their work.
***You get a unique role on the discord***
While this doesn't matter to everyone this does matter to some.
It shows recognition by putting you in your own category.
There aren't any special abilities other than a unique color of your name.
This will not be useful for Matrix users and I'm sorry.
Do note that you are recognized for your efforts and this page is for you!
**You get them credits**
Did you know that contributing gets you money??
Wait.. not real cash but it does give you credits inside of the game.
You will notice that you will start getting in-game credits for your efforts of json.
**First choice at things**
When it comes to voting for polls, testing new content before others or even learning about upcoming events you are more likely to be picked for this since you have taken the time to help us out.
**You get a clan chat badge**
The clan chat badge goes up over time as you contribute more and more.
It does not do anything in-game it just shows that you have contributed towards the project.
**Currently in the process of getting back in the groove of things so this will come in time but you will not be forgotten!**
More will be added to this page over time including names or perks. Thank you for all of the contributions everyone! You guys rock!
**Our list of thanks:**
- <b style="color:#6fa9de"> Ryannathans </b><br/>
- <b style="color:#6fa9de"> Crash Bandicoot </b><br/>
- <b style="color:#6fa9de"> Evspra (Qmqz)</b><br/>
- <b style="color:#6fa9de"> Logg </b><br/>
- <b style="color:#6fa9de"> Alex </b><br/>
- <b style="color:#6fa9de"> Afaroutdude </b><br/>
- <b style="color:#6fa9de"> Michael Carrot </b><br/>
- <b style="color:#6fa9de"> Qweqker </b><br/>
- <b style="color:#6fa9de"> Aweinstock </b><br/>
- <b style="color:#6fa9de">Downthecrop</b><br/>
- <b style="color:#6fa9de">Phunny</b><br/>
- <b style="color:#6fa9de">Pyrr</b><br/>
- <b style="color:#6fa9de">Cp49</b><br/>
- <b style="color:#6fa9de">Vk91</b><br/>
- <b style="color:#6fa9de">Daniella</b><br>
- <b style="color:#6fa9de">Regenleif</b><br/>
- <b style="color:#6fa9de">Pazaz</b><br/>
- <b style="color:#6fa9de">Kennynes</b><br/>
- <b style="color:#6fa9de">Cory</b><br/>
- <b style="color:#6fa9de">Spoofessor</b><br/>
- <b style="color:#6fa9de">Bushtail</b><br/>

View File

@ -1,78 +1,90 @@
---
title: Hall of Fame
tags: community
layout: guide
layout: community
---
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Hall of Fame
</h1>
</div>
</div>
</div>
<div class="section">
<div class="article_theme_2">
<div class="firstborder">
<div class="brown_box">
<div class="brown_box" style="margin-bottom: 5px; padding-bottom:1px;">
<div class="itemborder" style="margin-right:4px;">
<div class="headingpic"><a href="./hall_of_fame_x1.html"><img alt="" src="../img/main/kbase/category_pages/img_big/controls_statistics.webp" style="width:70px;height:70px;"/></a></div>
<div class="cattext"><div class="text"><div class="title1"><a href="./hall_of_fame_x1.html">x1xp Hall of Fame</a></div>
Check out the Hall of fame for x1xp players</div>
</div>
</div>
<div class="itemborder">
<div class="headingpic"><a href="./hall_of_fame_x2.5.html"><img alt="" src="../img/main/kbase/category_pages/img_big/controls_statistics.webp" style="width:70px;height:70px;"/></a></div>
<div class="cattext"><div class="text"><div class="title1"><a href="./hall_of_fame_x2.5.html">x2.5xp Hall of Fame</a></div>
Check out the Hall of fame for x2.5xp players </div>
</div>
</div>
<div class="itemborder">
<div class="headingpic"><a href="./hall_of_fame_x5.html"><img alt="" src="../img/main/kbase/category_pages/img_big/controls_statistics.webp" style="width:70px;height:70px;"/></a></div>
<div class="cattext"><div class="text"><div class="title1"><a href="./hall_of_fame_x5.html">x5xp Hall of Fame</a></div>
Check out the Hall of fame for x5xp players </div>
</div>
</div>
<div class="itemborder">
<div class="headingpic"><a href="./hall_of_fame_x10.html"><img alt="" src="../img/main/kbase/category_pages/img_big/controls_statistics.webp" style="width:70px;height:70px;"/></a></div>
<div class="cattext"><div class="text"><div class="title1"><a href="./hall_of_fame_x10.html">x10xp Hall of Fame</a></div>
Check out the Hall of fame for x10xp Permadeath players </div>
<div class="firstborder">
<div class="brown_box">
<div class="brown_box" style="margin-bottom: 5px; padding-bottom:1px;">
<div class="itemborder" style="margin-right:4px;">
<div class="headingpic">
<a href="./hall_of_fame_x1.html">
<img alt="" src="../img/main/kbase/category_pages/img_big/controls_statistics.webp" style="width:70px;height:70px;"/>
</a>
</div>
<div class="cattext">
<div class="text">
<div class="title1"><a href="./hall_of_fame_x1.html">x1xp Hall of Fame</a></div>
Check out the Hall of fame for x1xp players
</div>
</div>
</div>
<div class="itemborder">
<div class="headingpic">
<a href="./hall_of_fame_x2.5.html">
<img alt="" src="../img/main/kbase/category_pages/img_big/controls_statistics.webp" style="width:70px;height:70px;"/>
</a>
</div>
<div class="cattext">
<div class="text">
<div class="title1">
<a href="./hall_of_fame_x2.5.html">x2.5xp Hall of Fame</a>
</div>
Check out the Hall of fame for x2.5xp players
</div>
</div>
</div>
<div class="itemborder">
<div class="headingpic">
<a href="./hall_of_fame_x5.html">
<img alt="" src="../img/main/kbase/category_pages/img_big/controls_statistics.webp" style="width:70px;height:70px;"/>
</a>
</div>
<div class="cattext">
<div class="text">
<div class="title1">
<a href="./hall_of_fame_x5.html">x5xp Hall of Fame</a>
</div>
Check out the Hall of fame for x5xp players
</div>
</div>
</div>
<div class="itemborder">
<div class="headingpic">
<a href="./hall_of_fame_x10.html">
<img alt="" src="../img/main/kbase/category_pages/img_big/controls_statistics.webp" style="width:70px;height:70px;"/>
</a>
</div>
<div class="cattext">
<div class="text">
<div class="title1">
<a href="./hall_of_fame_x10.html">x10xp Hall of Fame</a>
</div>
Check out the Hall of fame for x10xp Permadeath players
</div>
</div>
</div>
<div class="itemborder">
<div class="headingpic">
<a href="../archives/archived_hall_of_fame.html">
<img alt="" src="../img/main/kbase/category_pages/img_big/controls_statistics.webp" style="width:70px;height:70px;"/>
</a>
</div>
<div class="cattext">
<div class="text">
<div class="title1">
<a href="../archives/archived_hall_of_fame.html">Archived old exp rates</a>
</div>
Check out our Archived Hall of Fame for no longer existing xp rates
</div>
</div>
</div>
<div class="container" style="clear:both;"></div>
</div>
<div class="container" style="clear:both;"></div>
{% include website-overhaul-notice.html %}
</div>
</div>
<div class="itemborder">
<div class="headingpic"><a href="../archives/archived_hall_of_fame.html"><img alt="" src="../img/main/kbase/category_pages/img_big/controls_statistics.webp" style="width:70px;height:70px;"/></a></div>
<div class="cattext"><div class="text"><div class="title1"><a href="../archives/archived_hall_of_fame.html">Archived old exp rates</a></div>
Check out our Archived Hall of Fame for no longer existing xp rates </div>
</div>
</div>
<div class="container" style="clear:both;"></div>
</div>
<div class="container" style="clear:both;"></div>
<div class="brown_box" style="margin-bottom: 5px;"><div class="inner_brown_box">
<div class="helptext">
<div class="helptitle"><b>Important Information</b></div>
This entire website is getting a massive overhaul and this page will change. If you need any help at all ask a staff member either on our
<a href="https://discord.gg/43YPGND">Discord</a> or if you do not prefer discord check out our <a href="https://forum.2009scape.org/">Forums</a>!
</div>
</div></div>
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>
</div>
</div>

View File

@ -1,270 +0,0 @@
---
title: Hall of Fame x1xp
tags: community
layout: guide
---
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Hall of Fame
</h1>
</div>
</div>
</div>
<div class="section">
<div class="article_theme_1">
<div class="article">
<div class="topshadow">
<div class="bottomborder">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottomleft">
<div class="bottomright">
<div class="links"> </div>
<br class="clear"/>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Hall of Fame</span></span>
</div><br/>
<b>Hall of Fame for our x1 experience rate players </b>
<br/>
<br/>
<table class="tableForFame">
<tr class="trForFame" id="x1">
<td class="tdForFame">x1 XP Rate</td>
<td class="tdForFame">Regular Players</td>
<td class="tdForFame">Regular Ironmen</td>
<td class="tdForFame">Hardcore Ironmen</td>
<td class="tdForFame">Ultimate Ironmen</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Attack</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Strength</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Defence</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">HP</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Ranged</td>
<td class="tdForFame">Sully</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Magic</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Prayer</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Slayer</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Construction</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Runecrafting</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Agility</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Herblore</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Crafting</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Hunter</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame">Miles</td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Fletching</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Thieving</td>
<td class="tdForFame">Leah</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Mining</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Smithing</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Fishing</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Cooking</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Woodcutting</td>
<td class="tdForFame">Sully</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Firemaking</td>
<td class="tdForFame">Leah</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Farming</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Summoning</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
</table>
<br/>
<br/>
<br/>
</div>
<br/>
<br/>
<section style="margin-left: 5%;">
<div class="bold">Further Help</div>
Need more help? Come chat with us!
<ul class="further">
<li><a href="https://discord.gg/43YPGND">Discord</a>
</li>
<li>
<a href="https://forum.2009scape.org/">Forums</a>
</li>
</ul>
</section>
<br/>
<br/>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="search">
<div class="searchtop">
<div class="bottombordershad">
<div class="leftshadow">
<div class="rightshadow">
<div class="topleft">
<div class="topright">
<div class="bottomleftshad">
<div class="bottomrightshad">
<div class="searchtext">
<p style="text-align: center;font-size:11px;font-weight:bold; margin-bottom: 0px;">
<img src="/site/img/2009img/main/kbase/redpartyhat.webp" alt="Cute Red Partyhat icon"/>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>

View File

@ -0,0 +1,200 @@
---
title: Hall of Fame x1
tags: community
layout: guide
---
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Hall of Fame</span></span>
</div>
### Hall of Fame for our x1 experience rate players
<table class="tableForFame">
<tr class="trForFame" id="x1">
<td class="tdForFame">x1 XP Rate</td>
<td class="tdForFame">Regular Players</td>
<td class="tdForFame">Regular Ironmen</td>
<td class="tdForFame">Hardcore Ironmen</td>
<td class="tdForFame">Ultimate Ironmen</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Attack</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Strength</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Defence</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">HP</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Ranged</td>
<td class="tdForFame">Sully</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Magic</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Prayer</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Slayer</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Construction</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Runecrafting</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Agility</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Herblore</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Crafting</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Hunter</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame">Miles</td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Fletching</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Thieving</td>
<td class="tdForFame">Leah</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Mining</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Smithing</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Fishing</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Cooking</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Woodcutting</td>
<td class="tdForFame">Sully</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Firemaking</td>
<td class="tdForFame">Leah</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Farming</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Summoning</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
</table>
### Further Help
Need more help? Come chat with us!
<div class="article_theme_1">
<ul class="further">
<li><a href="https://discord.gg/43YPGND">Discord</a></li>
<li><a href="https://forum.2009scape.org/">Forums</a></li>
</ul>
</div>

View File

@ -1,207 +0,0 @@
---
title: Hall of Fame x10
tags: community
layout: guide
---
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Hall of Fame
</h1>
</div>
</div>
</div>
<div class="section">
<div class="article_theme_1">
<div class="article">
<div class="topshadow">
<div class="bottomborder">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottomleft">
<div class="bottomright">
<div class="links"> </div>
<br class="clear"/>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Hall of Fame</span></span>
</div><br/>
<b>Hall of Fame for our x10 experience rate players </b>
<br/>
<br/>
<table class="tableForFame">
<tr class="trForFame" id="x5">
<td class="tdForFame">x10 XP Rate</td>
<td class="tdForFame">Permadeath</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Attack</td>
<td class="tdForFame">No</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Strength</td>
<td class="tdForFame">No</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Defence</td>
<td class="tdForFame">No</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">HP</td>
<td class="tdForFame">No</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Ranged</td>
<td class="tdForFame">No</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Magic</td>
<td class="tdForFame">Mute</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Prayer</td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Slayer</td>
<td class="tdForFame">No</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Construction</td>
<td class="tdForFame">No</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Runecrafting</td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Agility</td>
<td class="tdForFame">Era</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Herblore</td>
<td class="tdForFame">No</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Crafting</td>
<td class="tdForFame">Mute</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Hunter</td>
<td class="tdForFame">Mute</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Fletching</td>
<td class="tdForFame">Mute</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Thieving</td>
<td class="tdForFame">Mute</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Mining</td>
<td class="tdForFame">Mute</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Smithing</td>
<td class="tdForFame">Mute</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Fishing</td>
<td class="tdForFame">No</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Cooking</td>
<td class="tdForFame">Mute</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Woodcutting</td>
<td class="tdForFame">No</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Firemaking</td>
<td class="tdForFame">No</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Farming</td>
<td class="tdForFame">Mute</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Summoning</td>
<td class="tdForFame">No</td>
</tr>
</table>
<br/>
<br/>
<br/>
</div>
<br/>
<br/>
<section style="margin-left: 5%;">
<div class="bold">Further Help</div>
Need more help? Come chat with us!
<ul class="further">
<li><a href="https://discord.gg/43YPGND">Discord</a>
</li>
<li>
<a href="https://forum.2009scape.org/">Forums</a>
</li>
</ul>
</section>
<br/>
<br/>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="search">
<div class="searchtop">
<div class="bottombordershad">
<div class="leftshadow">
<div class="rightshadow">
<div class="topleft">
<div class="topright">
<div class="bottomleftshad">
<div class="bottomrightshad">
<div class="searchtext">
<p style="text-align: center;font-size:11px;font-weight:bold; margin-bottom: 0px;">
<img src="/site/img/2009img/main/kbase/redpartyhat.webp" alt="Cute Red Partyhat icon"/>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>

View File

@ -0,0 +1,121 @@
---
title: Hall of Fame x10
tags: community
layout: guide
---
### Hall of Fame for our x10 experience rate players
<table class="tableForFame">
<tr class="trForFame" id="x5">
<td class="tdForFame">x10 XP Rate</td>
<td class="tdForFame">Permadeath</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Attack</td>
<td class="tdForFame">No</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Strength</td>
<td class="tdForFame">No</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Defence</td>
<td class="tdForFame">No</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">HP</td>
<td class="tdForFame">No</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Ranged</td>
<td class="tdForFame">No</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Magic</td>
<td class="tdForFame">Mute</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Prayer</td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Slayer</td>
<td class="tdForFame">No</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Construction</td>
<td class="tdForFame">No</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Runecrafting</td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Agility</td>
<td class="tdForFame">Era</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Herblore</td>
<td class="tdForFame">No</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Crafting</td>
<td class="tdForFame">Mute</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Hunter</td>
<td class="tdForFame">Mute</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Fletching</td>
<td class="tdForFame">Mute</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Thieving</td>
<td class="tdForFame">Mute</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Mining</td>
<td class="tdForFame">Mute</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Smithing</td>
<td class="tdForFame">Mute</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Fishing</td>
<td class="tdForFame">No</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Cooking</td>
<td class="tdForFame">Mute</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Woodcutting</td>
<td class="tdForFame">No</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Firemaking</td>
<td class="tdForFame">No</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Farming</td>
<td class="tdForFame">Mute</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Summoning</td>
<td class="tdForFame">No</td>
</tr>
</table>
### Further Help
Need more help? Come chat with us!
<div class="article_theme_1">
<ul class="further">
<li><a href="https://discord.gg/43YPGND">Discord</a></li>
<li><a href="https://forum.2009scape.org/">Forums</a></li>
</ul>
</div>

View File

@ -1,270 +0,0 @@
---
title: Hall of Fame x2.5
tags: community
layout: guide
---
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Hall of Fame
</h1>
</div>
</div>
</div>
<div class="section">
<div class="article_theme_1">
<div class="article">
<div class="topshadow">
<div class="bottomborder">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottomleft">
<div class="bottomright">
<div class="links"> </div>
<br class="clear"/>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Hall of Fame</span></span>
</div><br/>
<b>Hall of Fame for our x2.5 experience rate players </b>
<br/>
<br/>
<table class="tableForFame">
<tr class="trForFame" id="x1">
<td class="tdForFame">x2.5 XP Rate</td>
<td class="tdForFame">Regular Players</td>
<td class="tdForFame">Regular Ironmen</td>
<td class="tdForFame">Hardcore Ironmen</td>
<td class="tdForFame">Ultimate Ironmen</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Attack</td>
<td class="tdForFame">Kingduffy</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Strength</td>
<td class="tdForFame">Kingduffy</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Defence</td>
<td class="tdForFame">Kingduffy</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">HP</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Ranged</td>
<td class="tdForFame">Valpuri</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Magic</td>
<td class="tdForFame">Valpuri</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Prayer</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Slayer</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Construction</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Runecrafting</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Agility</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Herblore</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Crafting</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Hunter</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Fletching</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Thieving</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Mining</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Smithing</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Fishing</td>
<td class="tdForFame">TwoAndAHalf</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Cooking</td>
<td class="tdForFame">TwoAndAHalf</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Woodcutting</td>
<td class="tdForFame">Valpuri</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Firemaking</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Farming</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Summoning</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
</table>
<br/>
<br/>
<br/>
</div>
<br/>
<br/>
<section style="margin-left: 5%;">
<div class="bold">Further Help</div>
Need more help? Come chat with us!
<ul class="further">
<li><a href="https://discord.gg/43YPGND">Discord</a>
</li>
<li>
<a href="https://forum.2009scape.org/">Forums</a>
</li>
</ul>
</section>
<br/>
<br/>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="search">
<div class="searchtop">
<div class="bottombordershad">
<div class="leftshadow">
<div class="rightshadow">
<div class="topleft">
<div class="topright">
<div class="bottomleftshad">
<div class="bottomrightshad">
<div class="searchtext">
<p style="text-align: center;font-size:11px;font-weight:bold; margin-bottom: 0px;">
<img src="/site/img/2009img/main/kbase/redpartyhat.webp" alt="Cute Red Partyhat icon"/>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>

View File

@ -0,0 +1,200 @@
---
title: Hall of Fame x2.5
tags: community
layout: guide
---
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Hall of Fame</span></span>
</div>
### Hall of Fame for our x2.5 experience rate players
<table class="tableForFame">
<tr class="trForFame" id="x1">
<td class="tdForFame">x2.5 XP Rate</td>
<td class="tdForFame">Regular Players</td>
<td class="tdForFame">Regular Ironmen</td>
<td class="tdForFame">Hardcore Ironmen</td>
<td class="tdForFame">Ultimate Ironmen</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Attack</td>
<td class="tdForFame">Kingduffy</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Strength</td>
<td class="tdForFame">Kingduffy</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Defence</td>
<td class="tdForFame">Kingduffy</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">HP</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Ranged</td>
<td class="tdForFame">Valpuri</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Magic</td>
<td class="tdForFame">Valpuri</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Prayer</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Slayer</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Construction</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Runecrafting</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Agility</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Herblore</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Crafting</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Hunter</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Fletching</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Thieving</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Mining</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Smithing</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Fishing</td>
<td class="tdForFame">TwoAndAHalf</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Cooking</td>
<td class="tdForFame">TwoAndAHalf</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Woodcutting</td>
<td class="tdForFame">Valpuri</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Firemaking</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Farming</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Summoning</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
</table>
### Further Help
Need more help? Come chat with us!
<div class="article_theme_1">
<ul class="further">
<li><a href="https://discord.gg/43YPGND">Discord</a></li>
<li><a href="https://forum.2009scape.org/">Forums</a></li>
</ul>
</div>

View File

@ -1,270 +0,0 @@
---
title: Hall of Fame x5
tags: community
layout: guide
---
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Hall of Fame
</h1>
</div>
</div>
</div>
<div class="section">
<div class="article_theme_1">
<div class="article">
<div class="topshadow">
<div class="bottomborder">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottomleft">
<div class="bottomright">
<div class="links"> </div>
<br class="clear"/>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Hall of Fame</span></span>
</div><br/>
<b>Hall of Fame for our x5 experience rate players </b>
<br/>
<br/>
<table class="tableForFame">
<tr class="trForFame" id="x5">
<td class="tdForFame">x5 XP Rate</td>
<td class="tdForFame">Regular Players</td>
<td class="tdForFame">Regular Ironmen</td>
<td class="tdForFame">Hardcore Ironmen</td>
<td class="tdForFame">Ultimate Ironmen</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Attack</td>
<td class="tdForFame">Ryannathans</td>
<td class="tdForFame">Tib Mage</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Strength</td>
<td class="tdForFame">Seatta</td>
<td class="tdForFame">Leclerc</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Defence</td>
<td class="tdForFame">Fractals</td>
<td class="tdForFame">Tib Mage</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">HP</td>
<td class="tdForFame">Fractals</td>
<td class="tdForFame">Tib Mage</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Ranged</td>
<td class="tdForFame">Fractals</td>
<td class="tdForFame">Tib mage</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Magic</td>
<td class="tdForFame">Meep</td>
<td class="tdForFame">Tib Mage</td>
<td class="tdForFame"></td>
<td class="tdForFame">Spirit</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Prayer</td>
<td class="tdForFame"></td>
<td class="tdForFame">Leclerc</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Slayer</td>
<td class="tdForFame">Fractals</td>
<td class="tdForFame">Tib Mage</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Construction</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Runecrafting</td>
<td class="tdForFame"></td>
<td class="tdForFame">Leclerc</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Agility</td>
<td class="tdForFame">Meep</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame">Spirit</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Herblore</td>
<td class="tdForFame"></td>
<td class="tdForFame">Leclerc</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Crafting</td>
<td class="tdForFame"></td>
<td class="tdForFame">Leclerc</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Hunter</td>
<td class="tdForFame">Meep</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Fletching</td>
<td class="tdForFame"></td>
<td class="tdForFame">Leclerc</td>
<td class="tdForFame"></td>
<td class="tdForFame">Spirit</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Thieving</td>
<td class="tdForFame">Meep</td>
<td class="tdForFame">Leclerc</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Mining</td>
<td class="tdForFame">Valkyrie</td>
<td class="tdForFame">Leclerc</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Smithing</td>
<td class="tdForFame"></td>
<td class="tdForFame">Leclerc</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Fishing</td>
<td class="tdForFame"></td>
<td class="tdForFame">Downthecrop</td>
<td class="tdForFame">Zelda</td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Cooking</td>
<td class="tdForFame">Meep</td>
<td class="tdForFame">Tib Mage</td>
<td class="tdForFame">Zelda</td>
<td class="tdForFame">Spirit</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Woodcutting</td>
<td class="tdForFame">Coronavirus</td>
<td class="tdForFame">Downthecrop</td>
<td class="tdForFame"></td>
<td class="tdForFame">Spirit</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Firemaking</td>
<td class="tdForFame">Seatta</td>
<td class="tdForFame">Leclerc</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Farming</td>
<td class="tdForFame">Meep</td>
<td class="tdForFame">Leclerc</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Summoning</td>
<td class="tdForFame">Fractals</td>
<td class="tdForFame">Tib Mage</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
</table>
<br/>
<br/>
<br/>
</div>
<br/>
<br/>
<section style="margin-left: 5%;">
<div class="bold">Further Help</div>
Need more help? Come chat with us!
<ul class="further">
<li><a href="https://discord.gg/43YPGND">Discord</a>
</li>
<li>
<a href="https://forum.2009scape.org/">Forums</a>
</li>
</ul>
</section>
<br/>
<br/>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="search">
<div class="searchtop">
<div class="bottombordershad">
<div class="leftshadow">
<div class="rightshadow">
<div class="topleft">
<div class="topright">
<div class="bottomleftshad">
<div class="bottomrightshad">
<div class="searchtext">
<p style="text-align: center;font-size:11px;font-weight:bold; margin-bottom: 0px;">
<img src="/site/img/2009img/main/kbase/redpartyhat.webp" alt="Cute Red Partyhat icon"/>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>

View File

@ -0,0 +1,196 @@
---
title: Hall of Fame x5
tags: community
layout: guide
---
### Hall of Fame for our x5 experience rate players
<table class="tableForFame">
<tr class="trForFame" id="x5">
<td class="tdForFame">x5 XP Rate</td>
<td class="tdForFame">Regular Players</td>
<td class="tdForFame">Regular Ironmen</td>
<td class="tdForFame">Hardcore Ironmen</td>
<td class="tdForFame">Ultimate Ironmen</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Attack</td>
<td class="tdForFame">Ryannathans</td>
<td class="tdForFame">Tib Mage</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Strength</td>
<td class="tdForFame">Seatta</td>
<td class="tdForFame">Leclerc</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Defence</td>
<td class="tdForFame">Fractals</td>
<td class="tdForFame">Tib Mage</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">HP</td>
<td class="tdForFame">Fractals</td>
<td class="tdForFame">Tib Mage</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Ranged</td>
<td class="tdForFame">Fractals</td>
<td class="tdForFame">Tib mage</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Magic</td>
<td class="tdForFame">Meep</td>
<td class="tdForFame">Tib Mage</td>
<td class="tdForFame"></td>
<td class="tdForFame">Spirit</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Prayer</td>
<td class="tdForFame"></td>
<td class="tdForFame">Leclerc</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Slayer</td>
<td class="tdForFame">Fractals</td>
<td class="tdForFame">Tib Mage</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Construction</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Runecrafting</td>
<td class="tdForFame"></td>
<td class="tdForFame">Leclerc</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Agility</td>
<td class="tdForFame">Meep</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame">Spirit</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Herblore</td>
<td class="tdForFame"></td>
<td class="tdForFame">Leclerc</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Crafting</td>
<td class="tdForFame"></td>
<td class="tdForFame">Leclerc</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Hunter</td>
<td class="tdForFame">Meep</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Fletching</td>
<td class="tdForFame"></td>
<td class="tdForFame">Leclerc</td>
<td class="tdForFame"></td>
<td class="tdForFame">Spirit</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Thieving</td>
<td class="tdForFame">Meep</td>
<td class="tdForFame">Leclerc</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Mining</td>
<td class="tdForFame">Valkyrie</td>
<td class="tdForFame">Leclerc</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Smithing</td>
<td class="tdForFame"></td>
<td class="tdForFame">Leclerc</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Fishing</td>
<td class="tdForFame"></td>
<td class="tdForFame">Downthecrop</td>
<td class="tdForFame">Zelda</td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Cooking</td>
<td class="tdForFame">Meep</td>
<td class="tdForFame">Tib Mage</td>
<td class="tdForFame">Zelda</td>
<td class="tdForFame">Spirit</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Woodcutting</td>
<td class="tdForFame">Coronavirus</td>
<td class="tdForFame">Downthecrop</td>
<td class="tdForFame"></td>
<td class="tdForFame">Spirit</td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Firemaking</td>
<td class="tdForFame">Seatta</td>
<td class="tdForFame">Leclerc</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Farming</td>
<td class="tdForFame">Meep</td>
<td class="tdForFame">Leclerc</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
<tr class="trForFame">
<td class="tdForFame">Summoning</td>
<td class="tdForFame">Fractals</td>
<td class="tdForFame">Tib Mage</td>
<td class="tdForFame"></td>
<td class="tdForFame"></td>
</tr>
</table>
### Further Help
Need more help? Come chat with us!
<div class="article_theme_1">
<ul class="further">
<li><a href="https://discord.gg/43YPGND">Discord</a></li>
<li><a href="https://forum.2009scape.org/">Forums</a></li>
</ul>
</div>

View File

@ -1,128 +1,111 @@
---
title: Community Tab
tags: community
layout: guide
layout: community
---
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Community Garden
</h1>
</div>
</div>
</div>
<div class="section">
<div class="article_theme_2">
<div class="firstborder">
<div class="brown_box">
<div class="brown_box" style="margin-bottom: 5px; padding-bottom:1px;">
<div class="itemborder" style="margin-right:4px;">
<div class="headingpic"><a href="./staff.html"><img alt=""
src="../img/main/kbase/category_pages/img_big/manual_gettingstarted.webp"
style="width:70px;height:70px;" /></a></div>
<div class="cattext">
<div class="text">
<div class="title1"><a href="./staff.html">Meet the Staff</a></div>
Learn all about the staff of 2009scape and the different roles they play.
</div>
</div>
</div>
<div class="itemborder">
<div class="headingpic"><a href="./contributors.html"><img alt=""
src="../img/main/kbase/category_pages/img_big/themedworlds.webp"
style="width:70px;height:70px;" /></a></div>
<div class="cattext">
<div class="text">
<div class="title1"><a href="./contributors.html">The Tributes!</a></div>
A page completely dedicated to our contributors! They are just loyal players that give help back!
</div>
</div>
</div>
<div class="itemborder" style="margin-right:4px;">
<div class="headingpic"><a href="./hall_of_fame.html"><img alt=""
src="../img/main/kbase/category_pages/img_big/manual_combat.webp"
style="width:70px;height:70px;" /></a></div>
<div class="cattext">
<div class="text">
<div class="title1"><a href="./hall_of_fame.html">Hall of Fame</a></div>
This page will be changed into two different hall of fames but for now here is the hall of fame for
legacy!
</div>
</div>
</div>
<div class="itemborder">
<div class="headingpic"><a href="./runescapeVR.html"><img alt=""
src="../2009scape-resources/img/community/RsVR/vrRS.webp" style="width:70px;height:70px;" /></a>
</div>
<div class="cattext">
<div class="text">
<div class="title1"><a href="./runescapeVR.html">Runescape VR</a></div>
Check out VR Runescape Maps inside of the Blades and Sorcery Engine!
</div>
</div>
</div>
<div class="itemborder" style="margin-right:4px;">
<div class="headingpic"><a href="../../services/m=funorb/index.html"><img alt="Funorb img"
src="../img/main/kbase/category_pages/img_big/manual_controls.webp"
style="width:70px;height:70px;" /></a></div>
<div class="cattext">
<div class="text">
<div class="title1"><a href="../../services/m=funorb/index.html">Funorb</a></div>
Play classic Flash games on the authentic Funorb website remake!
</div>
</div>
</div>
<div class="itemborder">
<div class="headingpic"><a href="./jagex_launcher_linux.html"><img alt="Jagex launhcer img"
src="../img/main/kbase/category_pages/img_big/manual_miscguides.webp"
style="width:70px;height:70px;" /></a></div>
<div class="cattext">
<div class="text">
<div class="title1"><a href="./jagex_launcher_linux.html">Jagex Launcher on Linux</a></div>
Read about Jagex's 2023 blunder - Ruining Linux support after 21 years
</div>
</div>
</div>
<div class="container" style="clear:both;"></div>
</div>
<div class="container" style="clear:both;"></div>
<div class="brown_box" style="margin-bottom: 5px;">
<div class="inner_brown_box">
<div class="helptext">
<div class="helptitle"><b>Important Information</b></div>
This entire website is getting a massive overhaul and this page will change. If you need any help at
all ask a staff member either on our
<a href="https://discord.gg/43YPGND">Discord</a> or if you do not prefer discord check out our <a
href="https://forum.2009scape.org/">Forums</a>!
</div>
<div class="article_theme_2">
<div class="firstborder">
<div class="brown_box">
<div class="brown_box" style="margin-bottom: 5px; padding-bottom:1px;">
<div class="itemborder" style="margin-right:4px;">
<div class="headingpic"><a href="./staff.html"><img alt=""
src="../img/main/kbase/category_pages/img_big/manual_gettingstarted.webp"
style="width:70px;height:70px;" /></a></div>
<div class="cattext">
<div class="text">
<div class="title1">
<a href="./staff.html">Meet the Staff</a>
</div>
Learn all about the staff of 2009scape and the different roles they play.
</div>
</div>
</div>
<div class="itemborder">
<div class="headingpic">
<a href="./contributors.html">
<img alt="" src="../img/main/kbase/category_pages/img_big/themedworlds.webp" style="width:70px;height:70px;" />
</a>
</div>
<div class="cattext">
<div class="text">
<div class="title1">
<a href="./contributors.html">The Tributes!</a>
</div>
A page completely dedicated to our contributors! They are just loyal players that give help back!
</div>
</div>
</div>
<div class="itemborder" style="margin-right:4px;">
<div class="headingpic">
<a href="./hall_of_fame.html">
<img alt="" src="../img/main/kbase/category_pages/img_big/manual_combat.webp" style="width:70px;height:70px;" />
</a>
</div>
<div class="cattext">
<div class="text">
<div class="title1">
<a href="./hall_of_fame.html">Hall of Fame</a>
</div>
This page will be changed into two different hall of fames but for now here is the hall of fame for legacy!
</div>
</div>
</div>
<div class="itemborder">
<div class="headingpic">
<a href="./runescapeVR.html">
<img alt="" src="../2009scape-resources/img/community/RsVR/vrRS.webp" style="width:70px;height:70px;" />
</a>
</div>
<div class="cattext">
<div class="text">
<div class="title1">
<a href="./runescapeVR.html">Runescape VR</a>
</div>
Check out VR Runescape Maps inside of the Blades and Sorcery Engine!
</div>
</div>
</div>
<div class="itemborder" style="margin-right:4px;">
<div class="headingpic">
<a href="../../services/m=funorb/index.html">
<img alt="Funorb img" src="../img/main/kbase/category_pages/img_big/manual_controls.webp" style="width:70px;height:70px;" />
</a>
</div>
<div class="cattext">
<div class="text">
<div class="title1">
<a href="../../services/m=funorb/index.html">Funorb</a>
</div>
Play classic Flash games on the authentic Funorb website remake!
</div>
</div>
</div>
<div class="itemborder">
<div class="headingpic">
<a href="./jagex_launcher_linux.html">
<img alt="Jagex launhcer img" src="../img/main/kbase/category_pages/img_big/manual_miscguides.webp" style="width:70px;height:70px;" />
</a>
</div>
<div class="cattext">
<div class="text">
<div class="title1">
<a href="./jagex_launcher_linux.html">Jagex Launcher on Linux</a>
</div>
Read about Jagex's 2023 blunder - Ruining Linux support after 21 years
</div>
</div>
</div>
<div class="container" style="clear:both;"></div>
</div>
<div class="container" style="clear:both;"></div>
{% include website-overhaul-notice.html %}
</div>
<br class="clear" />
</div>
</div>

View File

@ -1,211 +0,0 @@
---
title: Jagex Launcher and Linux
tags: community
layout: guide
---
<div id="content">
<div id="rule">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque_medium">
Jagex Launcher and Linux
</h1>
</div>
</div>
<div class="section">
<div class="article_theme_1">
<div class="article">
<div class="topshadow">
<div class="bottomborder">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottomleft">
<div class="bottomright">
<br />
<br />
<br />
<h3 align="center">Jagex Does it Again - The Jagex Launcher on Linux</h3>
Taken from the <a
href="https://help.jagex.com/hc/en-gb/articles/13413514881937-Downloading-the-Jagex-Launcher-on-Linux">latest
Jagex Launcher on Linux</a> FAQ:
<blockquote>
How to install the Jagex Launcher using Linux.
<br />
<br />
<b>The Jagex launcher and Jagex Accounts will not be supported on the Linux OS.</b>
<br />
<br />
If you wish to continue playing on a Linux machine you will have to use a mechanism that
enables Windows applications to operate. There are community projects available that you
can try such as:
<br />
<br />
<a href="https://github.com/TormStorm/jagex-launcher-linux">TormStorm's
jagex-launcher-linux project</a> on GitHub
<br />
This Reddit thread in r/2007scape discusses the process
<br />
A YouTube guide by c00k
</blockquote>
<br />
Right..
<br />
<figure>
<img src="../2009scape-resources/img/community/jagex_launcher_linux/enhancedSecurity.png"
style="border: solid 4px seashell" width="25%" />
<figcaption>In the name of security, users are instructed to go
to a random
Github page and download a workaround for the new, Jagex controlled launcher.
</figcaption>
</figure>
<br />
<br />
<b> A Real FAQ </b>
<ul>
What's the easiest way to use the Jagex launcher on Linux?
<li>Use the unofficial <a href="https://github.com/Adamcake/Bolt">Bolt</a> launcher - it handles everything for you!
</li>
<br>
Can you convert back to a normal account?
<li>No, it's a one-way conversion.
</li>
<br>
Does the Jagex launcher work on Linux?
<li>Yes, but it may break: <a
href="https://github.com/TormStorm/jagex-launcher-linux">github.com/TormStorm/jagex-launcher-linux</a>
</li>
<br>
Does the Jagex Launcher enhance security?
<li>
Yes, but if Jagex's primary motive was security, they would have made passwords
case-sensitive, allowed
bank pins on login, and made it so bank pins can't be disabled in less time than it
takes to reach Customer Support
</li>
<br>
What's the real reason for the launcher?
<li>It likely has to do with them reducing risk by removing power from
the
community, as they're <a
href="https://forum.2009scape.org/viewtopic.php?p=3080-jagex-being-sold-again-2023#p3080">trying
to be sold</a> again.
</li>
<br>
Does the Jagex Launcher stop bots?
<li>
Given bot clients are compatible with the launcher, and <a
href="https://forum.2009scape.org/viewtopic.php?p=3092-jagex-being-sold-again-2023#p3092">overwhelming
evidence</a> that Jagex doesn't care about bots, the answer is no.
</li>
<br>
</ul>
<br />
With the launcher being optional, some people say it's not a big deal. They would be
correct, until you log out - at which point you get a free conversion!
<br />
<br />
<b> Don't Log Out </b>
<br />
<img align="center"
src="../2009scape-resources/img/community/jagex_launcher_linux/dontLogOut.png"
style="border: solid 4px seashell" width="99%" />
<br />
<br />
<br />
<br />
<b>History</b>
<br />
<br />
Despite Andrew Gower running the original Runescape servers on Linux, despite Java being
designed for cross-architecture compatibility, despite 21 years of Runescape being
playable on Linux and *BSDs, Jagex has finally pulled support non-Windows and MacOS
operating systems.
<br />
<br />
<img align="center"
src="../2009scape-resources/img/community/jagex_launcher_linux/gowerLinuxLauncher.png"
style="border: solid 4px seashell" width="99%" />
<br />
<br />
<br />
<br />
<b> Our Opinion </b>
<br />
<br />
While Jagex is hard at work making the game harder to play for new users, downthecrop has
been <a href="https://www.youtube.com/watch?v=R7XzV2OYPiA">expirimenting</a> with bringing
back webclients for Rs2. Crazy what proper motives can do!
<br />
<br />
Jagex has continuously blundered their way through hosting Runescape, and the community
has
saved it each time. While we are disappointed in Jagex's decision, we understand
how profit driven companies work.
The 2009scape team is
grateful for
the community that provides Linux support natively to people who want to play Runescape.
In
particular, we would like to give a shoutout to the following projects:
<ul>
<li>
<a href="https://rsc.vet/">OpenRSC</a> - 2001 & 2003 remake - Native Linux + Flatpak
support
</li>
<li>
<a href="http://2004scape.org/">2004scape</a> - 2004 remake - Native browser support
</li>
<li>
<a href="http://2011scape.com/">2011scape</a> - 2011 remake - Native Linux support
</li>
<li>
<a href="http://darkan.org/">Darkan</a> - 2012 remake - Native Linux + Snap support
</li>
</ul>
<br />
Discuss this on the <a
href="https://forum.2009scape.org/viewtopic.php?p=3309-jagex-launcher-on-linux#p3309">forums</a>
<br />
<br />
<br />
<br />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br class="clear" />
</div>

View File

@ -0,0 +1,91 @@
---
title: Jagex Launcher and Linux
tags: community
layout: guide
---
### Jagex Does it Again - The Jagex Launcher on Linux
Taken from the [latest Jagex Launcher on Linux](https://help.jagex.com/hc/en-gb/articles/13413514881937-Downloading-the-Jagex-Launcher-on-Linux) FAQ:
> How to install the Jagex Launcher using Linux.
> **The Jagex launcher and Jagex Accounts will not be supported on the Linux OS.**
> If you wish to continue playing on a Linux machine you will have to use a mechanism that enables Windows applications to operate. There are community projects available that you can try such as:
> [TormStorm's jagex-launcher-linux project](https://github.com/TormStorm/jagex-launcher-linux) on GitHub
> This Reddit thread in r/2007scape discusses the process
> A YouTube guide by c00k
Right..
{% include image.html
url="/site/2009scape-resources/img/community/jagex_launcher_linux/enhancedSecurity.png"
style="style='border: solid 4px seashell' width='25%'"
description="In the name of security, users are instructed to go to a random Github page and download a workaround for the new, Jagex controlled launcher"
%}
**A Real FAQ**
- What's the easiest way to use the Jagex launcher on Linux?
Use the unofficial <a href="https://github.com/Adamcake/Bolt">Bolt</a> launcher - it handles everything for you!
- Can you convert back to a normal account?
No, it's a one-way conversion.
- Does the Jagex launcher work on Linux?
Yes, but it may break: <a href="https://github.com/TormStorm/jagex-launcher-linux">github.com/TormStorm/jagex-launcher-linux</a>
- Does the Jagex Launcher enhance security?
Yes, but if Jagex's primary motive was security, they would have made passwords case-sensitive, allowed bank pins on login, and made it so bank pins can't be disabled in less time than it takes to reach Customer Support
- What's the real reason for the launcher?
It likely has to do with them reducing risk by removing power from the community, as they're <a href="https://forum.2009scape.org/viewtopic.php? p=3080-jagex-being-sold-again-2023#p3080">trying to be sold</a> again.
- Does the Jagex Launcher stop bots?
Given bot clients are compatible with the launcher, and <a href="https://forum.2009scape.org/viewtopic.php?p=3092-jagex-being-sold-again-2023#p3092">overwhelming evidence</a> that Jagex doesn't care about bots, the answer is no.
With the launcher being optional, some people say it's not a big deal. They would be
correct, until you log out - at which point you get a free conversion!
**Don't Log Out**
{% include image.html
url="/site/2009scape-resources/img/community/jagex_launcher_linux/dontLogOut.png"
style="style='border: solid 4px seashell' width='100%'"
%}
**History**
Despite Andrew Gower running the original Runescape servers on Linux, despite Java being designed for cross-architecture compatibility, despite 21 years of Runescape being playable on Linux and *BSDs, Jagex has finally pulled support for non-Windows and MacOS operating systems.
{% include image.html
url="/site/2009scape-resources/img/community/jagex_launcher_linux/gowerLinuxLauncher.png"
style="style='border: solid 4px seashell' width='100%'"
%}
**Our Opinion**
While Jagex is hard at work making the game harder to play for new users, downthecrop has been <a href="https://www.youtube.com/watch?v=R7XzV2OYPiA">expirimenting</a> with bringing back webclients for Rs2.
Crazy what proper motives can do!
Jagex has continuously blundered their way through hosting Runescape, and the community has saved it each time.
While we are disappointed in Jagex's decision, we understand how profit driven companies work.
The 2009scape team is grateful for the community that provides Linux support natively to people who want to play Runescape.
In particular, we would like to give a shoutout to the following projects:
- [OpenRSC](https://rsc.vet/) - 2001 & 2003 remake - Native Linux + Flatpak support
- [2004scape](http://2004scape.org/) - 2004 remake - Native browser support
- [2011scape](http://2011scape.com/) - 2011 remake - Native Linux support
- [Darkan](http://darkan.org/) - 2012 remake - Native Linux + Snap support
Discuss this on the [forums](https://forum.2009scape.org/viewtopic.php?p=3309-jagex-launcher-on-linux#p3309)

View File

@ -1,249 +0,0 @@
---
title: Runescape VR
tags: community
layout: guide
---
<div id="content">
<div id="rule">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque_medium">
Runescape VR
</h1>
</div>
</div>
<div class="section">
<div class="article_theme_1">
<div class="article">
<div class="topshadow">
<div class="bottomborder">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottomleft">
<div class="bottomright">
<br/>
<br/>
<br/>
<p>
<br/>
<br/>
<b> We are not the developers of this project and do not state any ownership of the project whatsoever. </b>
<br/>
<br/>
A brand new project has come out which will blow the socks off your feet like it has mine! Imagine walking around your favorite Runescape
cities and being able to Interact with the world around you! Now you can with a brand new group of mods for the VR Game Blade and Sorcery.
<br/>
<br/>
It had all started with an artist named Connor who was just trying to dive into projects to work on his 3D modeling. He had released the map for Varrok
free of charge! and then more maps started taking off and more artists began to join in with him. Famous Youtubers like SoupRS had made videos about these
maps and I thought that everyone in the 09 community could appreciate it since these guys have gone out your way to not bring the game to you but bring you
into the game!
<br/>
<br/>
<img align="center" height="350" src="../2009scape-resources/img/community/RsVR/lumbyfullmap.webp" style="border: solid 4px seashell" width="650"/>
<br/>
<br/>
The current project is working to bring all of these maps together as one big map to explore as if you would in the game. But that is still a bit a way and there
are really cool maps that you can hop in and out of using Blade and Sorcery's map system. With the physics of the B&amp;S engine you are able to maneuver around the maps
pretty well and even do osrs-like things like roof-top agility or picking up pots in general stores and trashing the place. Taking a stroll around lumbridge in vr
is surreal that you may never want to leave! If you are interested in the maps I will leave links to the maps below.
<br/>
<br/>
<b> The Beautiful Varrock Map </b>
<br/>
<img align="center" height="350" src="../2009scape-resources/img/community/RsVR/varrock.webp" style="border: solid 4px seashell" width="650"/>
<br/>
<br/>
</p><ul>
<h3> This mod includes </h3>&gt;
<li> Most of the buildings and city walls (with added gates) </li>
<li>Several furnished interiors such as the General Store, The Blue Moon Inn, and the West Bank</li>
<li>Models that are almost exact replica's</li>
<li>Runescape props and items such as Party Hats, General items, as well as runes and a Fire Staff</li>
<li>Full Rooftop Agility Course</li>
<li>Compatible with all mods tested so far</li>
<li>Some extra 'features' (with it being my first map, there's still the occasional small bugs/glitches)</li>
</ul>
You can find the link by clicking on this <a href="https://www.nexusmods.com/bladeandsorcery/mods/1889?tab=files">link</a>.
<br/>
<br/>
<b> The Beautiful Lumbridge Map </b>
<br/>
<img align="center" height="350" src="../2009scape-resources/img/community/RsVR/lumbridge.webp" style="border: solid 4px seashell" width="650"/>
<br/>
<br/>
<h3> This mod includes </h3>
<br/>
<b><i> Disclaimer: Although the map does work on U9.2, the UI in the wave book is bugged. This is a known issue with U9.2. You can either roll back to U9, or click around the book blindly to start a wave. I'll update the map once this issue is resolved. - Thanks </i></b>
<br/>
<br/>
<ul>
<li> Most of the buildings and city walls </li>
<li>Several furnished interiors such as the Lumbridge Castle, Church, General Store, Bob's Axes, Cooking tutor's house, The sheared Ram, Chicken Farm</li>
<li>Models that are almost exact replica's</li>
<li>Includes the Lumbridge Swamp</li>
<li>Includes the woods behind the general store.</li>
</ul>
You can find the link by clicking on this <a href="https://www.nexusmods.com/bladeandsorcery/mods/2484">link</a>.
<br/>
<br/>
<b> The Beautiful Falador Map </b>
<br/>
<img align="center" height="350" src="../2009scape-resources/img/community/RsVR/falador.webp" style="border: solid 4px seashell" width="650"/>
<br/>
<br/>
<h3> This mod includes </h3>
<br/>
<b><i> Disclaimer: Although the map does work on U9.2, the UI in the wave book is bugged. This is a known issue with U9.2. You can either roll back to U9, or click around the book blindly to start a wave. I'll update the map once this issue is resolved. - Thanks </i></b>
<br/>
<br/>
<ul>
<li> 21 accessible buildings (including a three story castle) complete with physic interactable interiors </li>
<li>Weapons and shields from RS2 are also hidden around the map, explore to find them all! (You WILL need to download the <a href="https://www.nexusmods.com/bladeandsorcery/mods/2566">weapon pack</a> for these to work)</li>
<li>Complete-able rooftop agility course!</li>
<li>A Beautiful Park</li>
</ul>
You can find the link by clicking on this <a href="https://www.nexusmods.com/bladeandsorcery/mods/3695">link</a>.
<br/>
<br/>
After these mods were released Connor and his team moved on to work with getting closer to the world map we had discusssed earlier. Concepts of this are being
programmed/made towards the full map so far!
<br/>
<br/>
<img align="center" height="350" src="../2009scape-resources/img/community/RsVR/poorvarrock.webp" style="border: solid 4px seashell" width="650"/>
<br/>
<br/>
Also one of his assistant artist as well, started working on a map for barbarian village. While there are no photos of what the map will look like completely there
is a snow filled version of this map that they had started
<br/>
<br/>
<img align="center" height="350" src="../2009scape-resources/img/community/RsVR/barb.webp" style="border: solid 4px seashell" width="650"/>
<br/>
<br/>
<h3>Current Project</h3>
<img align="center" height="350" src="../2009scape-resources/img/community/RsVR/draynor.webp" style="border: solid 4px seashell" width="650"/>
<img align="center" height="350" src="../2009scape-resources/img/community/RsVR/port-sarim.webp" style="border: solid 4px seashell" width="650"/>
<img align="center" height="350" src="../2009scape-resources/img/community/RsVR/cooking.gif" style="border: solid 4px seashell" width="650"/>
<br/>
<br/>
These pictures will change time to time as the project updates and I ( Summer ) have time to keep you guys updated on it. Currently they are working on a few
different things like Draynor & Port Sarim ( model-wise ) and skills ( code-wise )
<br>
<br>
We have made it to the end of this long thread but I am so glad I was able to share this amazing project with you. If you're a modeler, I believe you can join their
discord and offer to help with any of the projects or just jump in and tell them that you're grateful this exists.
<br/>
You can find the link to their discord clicking the icon <a href="https://discord.gg/wDHCStbD"><img height="20" src="../2009scape-resources/img/icons/brand-discord.svg" width="20"/></a>!
<br/>
<br/>
<h4>Meet their Team!</h4>
Lead Artist/Project Founder - Connor <br/>
Lead Developer - Halolouie <br/>
Assistant Arist - Geewiz
Assistant Artist - Lycius <br/>
Assistant Artist - VREvangelist <br/>
Assistant Artist - MintyFries <br/>
Assistant Artist - Robberchief <br/>
<br/>
<br/>
<br/>
<br/>
<br/>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>

View File

@ -0,0 +1,143 @@
---
title: Runescape VR
tags: community
layout: guide
---
**We are not the developers of this project and do not state any ownership of the project whatsoever.**
A brand new project has come out which will blow the socks off your feet like it has mine!
Imagine walking around your favorite Runescape \cities and being able to Interact with the world around you!
Now you can with a brand new group of mods for the VR Game Blade and Sorcery.
It had all started with an artist named Connor who was just trying to dive into projects to work on his 3D modeling.
He had released the map for Varrok free of charge!
Then more maps started taking off and more artists began to join in with him.
Famous Youtubers like SoupRS had made videos about these maps and I thought that everyone in the 09 community could appreciate it since these guys have gone out your way to not bring the game to you but bring you into the game!
{% include image.html
url="/site/2009scape-resources/img/community/RsVR/lumbyfullmap.webp"
style="style='border: solid 4px seashell' width='650' height='350'"
%}
The current project is working to bring all of these maps together as one big map to explore as if you would in the game.
But that is still a bit a way and there are really cool maps that you can hop in and out of using Blade and Sorcery's map system.
With the physics of the B&S engine you are able to maneuver around the maps pretty well and even do osrs-like things like roof-top agility or picking up pots in general stores and trashing the place.
Taking a stroll around lumbridge in vr is surreal that you may never want to leave! If you are interested in the maps I will leave links to the maps below.
**The Beautiful Varrock Map**
{% include image.html
url="/site/2009scape-resources/img/community/RsVR/varrock.webp"
style="style='border: solid 4px seashell' width='100%'"
%}
### This mod includes
- Most of the buildings and city walls (with added gates)
- Several furnished interiors such as the General Store, The Blue Moon Inn, and the West Bank
- Models that are almost exact replica's
- Runescape props and items such as Party Hats, General items, as well as runes and a Fire Staff
- Full Rooftop Agility Course
- Compatible with all mods tested so far
- Some extra 'features' (with it being my first map, there's still the occasional small bugs/glitches)
You can find the link by clicking on this [link](https://www.nexusmods.com/bladeandsorcery/mods/1889?tab=files).
**The Beautiful Lumbridge Map**
{% include image.html
url="/site/2009scape-resources/img/community/RsVR/lumbridge.webp"
style="style='border: solid 4px seashell' width='100%'"
%}
### This mod includes
***Disclaimer: Although the map does work on U9.2, the UI in the wave book is bugged.
This is a known issue with U9.2.
You can either roll back to U9, or click around the book blindly to start a wave.
I'll update the map once this issue is resolved. - Thanks***
- Most of the buildings and city walls
- Several furnished interiors such as the Lumbridge Castle, Church, General Store, Bob's Axes, Cooking tutor's house, The sheared Ram, Chicken Farm
- Models that are almost exact replica's
- Includes the Lumbridge Swamp
- Includes the woods behind the general store
You can find the link by clicking on this [link](https://www.nexusmods.com/bladeandsorcery/mods/2484).
**The Beautiful Falador Map**
{% include image.html
url="/site/2009scape-resources/img/community/RsVR/falador.webp"
style="style='border: solid 4px seashell' width='100%'"
%}
### This mod includes
***Disclaimer: Although the map does work on U9.2, the UI in the wave book is bugged.
This is a known issue with U9.2.
You can either roll back to U9, or click around the book blindly to start a wave.
I'll update the map once this issue is resolved. - Thanks***
- 21 accessible buildings (including a three story castle) complete with physic interactable interiors
- Weapons and shields from RS2 are also hidden around the map, explore to find them all! (You WILL need to download the [weapon pack](https://www.nexusmods.com/bladeandsorcery/mods/2566) for these to work)
- Complete-able rooftop agility course!
- A Beautiful Park
You can find the link by clicking on this [link](https://www.nexusmods.com/bladeandsorcery/mods/3695).
After these mods were released Connor and his team moved on to work with getting closer to the world map we had discusssed earlier.
Concepts of this are being programmed/made towards the full map so far!
{% include image.html
url="/site/2009scape-resources/img/community/RsVR/poorvarrock.webp"
style="style='border: solid 4px seashell' width='100%'"
%}
Also one of his assistant artist as well, started working on a map for barbarian village.
While there are no photos of what the map will look like completely there is a snow filled version of this map that they had started
{% include image.html
url="/site/2009scape-resources/img/community/RsVR/barb.webp"
style="style='border: solid 4px seashell' width='100%'"
%}
### Current Project
{% include image.html
url="/site/2009scape-resources/img/community/RsVR/draynor.webp"
style="style='border: solid 4px seashell' width='100%' height='350'"
%}
{% include image.html
url="/site/2009scape-resources/img/community/RsVR/port-sarim.webp"
style="style='border: solid 4px seashell' width='100%' height='350'"
%}
{% include image.html
url="/site/2009scape-resources/img/community/RsVR/cooking.gif"
style="style='border: solid 4px seashell' width='100%' height='350'"
%}
These pictures will change time to time as the project updates and I ( Summer ) have time to keep you guys updated on it. Currently they are working on a few
different things like Draynor & Port Sarim ( model-wise ) and skills ( code-wise )
We have made it to the end of this long thread but I am so glad I was able to share this amazing project with you.
If you're a modeler, I believe you can join their Discord and offer to help with any of the projects or just jump in and tell them that you're grateful this exists.
You can find the link to their Discord clicking the icon <a href="https://discord.gg/wDHCStbD"><img height="20" src="/site/2009scape-resources/img/icons/brand-discord.svg" width="20"/></a>!
#### Meet their Team!
Lead Artist/Project Founder - Connor
Lead Developer - Halolouie
Assistant Arist - Geewiz
Assistant Artist - Lycius
Assistant Artist - VREvangelist
Assistant Artist - MintyFries
Assistant Artist - Robberchief

View File

@ -1,310 +0,0 @@
---
title: The Staff Team
tags: community
layout: guide
---
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Our Staff Team
</h1>
</div>
</div>
</div>
<div class="section">
<div class="article_theme_1">
<div class="article">
<div class="topshadow">
<div class="bottomborder">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottomleft">
<div class="bottomright">
<div class="links"> </div>
<br class="clear" />
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Staff</span></span>
</div><br />
<div class="links">
<a href="#ceikry">Ceikry</a> |
<a href="#ryan">Ryan</a> |
<a href="#woah">Woahscam</a> |
<a href="#downthecrop">Downthecrop</a> |
<a href="#pazaz">Pazaz</a> |
<a href="#leclerc">Leclerc</a> |
<a href="#sparrow">Sparrow</a> |
<a href="#dan">Dan</a> |
<a href="#bracket">Bracket</a> |
<a href="#kermit">Kermit</a> |
<a href="#vddcore">vddCore</a>
</div>
<br />
<br />
<h3>The Admins</h3>
<br>
Key members of 2009scape. Either have been around the longest or they have gained a per
say for how much they have put into the Project.
<br>
<br>
<hr style=" color: #ded4ba; background-color: #ded4ba; height: 1px; border: none; " />
<p id="ceikry">
<img height="100" src="../2009scape-resources/img/game_guide/staff_images/ceikry.webp"
style="border:black 1px solid; border-radius: 50%; " width="100" /> <b>Ceikry</b>
<br />
<br>
&nbsp; Ceikry is the lead developer and Admin of 2009scape. He has been around since late
2019 and has put well over 3000 hours into this project over the span of 2 years.
At one point this was a full 8-12 hour day job until he took a break and came back in early
2022 after a month cool down. He is no longer sysadmin for his own mental
health but still respected as the top. He has put the most work into the project.
<br />
<br />
</p>
<p id="ryan"><img height="100"
src="../2009scape-resources/img/game_guide/staff_images/ryan.webp"
style="border:black 1px solid; border-radius: 50%; " width="100" /> <b>Ryan</b>
<br />
<br>
&nbsp; Ryan has been with the community for a while. You may know him as the guy linked to
the joke
about Barbarian Assault. Despite all the jokes
people may or may not have with him he still holds a position to be respected. He is acting
Community manager and sysadmin as of January of 2022.
If you have any concerns with player files he would be the one to go to.
<br />
<br />
</p>
<p id="woah"><img height="100"
src="../2009scape-resources/img/game_guide/staff_images/woah.webp"
style="border:black 1px solid; border-radius: 50%; " width="100" /> <b>Woahscam</b>
<br />
<br>
&nbsp; Up until April of 2022, Woah has been the host of 2009scape behind the scenes. He was
running the magic behind his home server until he could no longer host.
One of the most respected members and high ranking players as of 2022 and continues to work
behind the scenes. He is a client developer and the official cache editor.
If you ever see him please pay your thanks for the hosting he has provided over the years.
We love you woah!
<br />
<br />
</p>
<br />
<br />
<h3>Core Developers</h3>
<br>
Non-Admin developers with significant ownership or contributions to the codebase. See the <a
href="./contributors.html">Tributes</a> page for the list of all developers.
<br>
<br>
<hr style=" color: #ded4ba; background-color: #ded4ba; height: 1px; border: none; " />
<p id="downthecrop"><img height="100"
src="../2009scape-resources/img/game_guide/staff_images/downthecrop.webp"
style="border:black 1px solid; border-radius: 50%; " width="100" /> <b>Downthecrop</b>
<br />
<br>
&nbsp; Downthecrop is a Youtuber/Twitch streamer that fell upon this project one day while
leaving
a closed source 06 server. He was able to edit the stats and quest stages
of his sp 09 character and started a series from there ( channel is downthecrop2 ). He then
decided since he knew some programming that he would take a crack at fixing bugs
he ran into. Later realizing that we have a promise to give save files he jumped over to
live. He has contributed to both the Server and Website ( Drop table tool and Automation )
and latest making a mobile client that can be found on the home page. Make sure to tell him
hi he's super nice!
<br />
<br />
</p>
<p id="pazaz"><img height="100"
src="../2009scape-resources/img/game_guide/staff_images/pazaz.webp"
style="border:black 1px solid; border-radius: 50%; " width="100" /> <b>Pazaz</b>
<br />
<br>
&nbsp; Pazaz is a client engineer who provided the RT4 client currently used by 2009scape.
He is
also the founder of 2004scape, and to this day runs Windows 98 on bare metal hardware.
<br />
<br />
</p>
<br />
<br />
<h3>Moderators</h3>
<br>
To ensure the community stays welcoming to all, and to ensure users needing support get it in
time.
<br>
<br>
<hr style=" color: #ded4ba; background-color: #ded4ba; height: 1px; border: none; " />
<p id="leclerc"><img height="100"
src="../2009scape-resources/img/game_guide/staff_images/leclerc.webp"
style="border:black 1px solid; border-radius: 50%; " width="100" /> <b>Leclerc</b>
<br />
<br>
&nbsp; Leclerc is the discord & moderator of 2009scape. He came over from OpenRSC to play
some good
ol RS2. He is super friendly and is willing to go the extra mile to help you out.
If you need any help ingame like advice or what is what he is the one to go talk to.
<br />
<br />
</p>
<br />
<br />
<h3>Retired Developers</h3>
<br>
Retired staff who held key positions and left on good terms
<br>
<br>
<hr style=" color: #ded4ba; background-color: #ded4ba; height: 1px; border: none; " />
<p id="sparrow"><img height="100"
src="../2009scape-resources/img/game_guide/staff_images/sparrow.webp" width="100" />
<b>Sparrow</b>
<br />
<br>
&nbsp; He is an ex developer that slowly moved out of the role when we separated from
06rebotted's
discord into our own. He has done some work but mainly with
the discord bots. If you would like to say hi he wouldn't mind.
<br />
<br />
</p>
<p id="dan">
<img height="100" src="../2009scape-resources/img/game_guide/staff_images/dan.webp"
style="border:black 1px solid; border-radius: 50%;" width="100" /> <b>Dan</b>
<br />
<br>
&nbsp; Dan was given Developer role for the massive amount of client updates. He has his own
project going OpenNXT, but mainly works on his minecraft server that he does
for a living.
<br />
<br />
</p>
<p id="bracket"><img height="100"
src="../2009scape-resources/img/game_guide/staff_images/bracket.webp"
style="border:black 1px solid; border-radius: 50%; " width="100" /> <b>Bracket</b>
<br />
<br>
&nbsp; Red Bracket is the founder of 2009scape. He is officially retired and the
community is led by the group of admins underneath. Unlike Jagex with Andrew Gower, Bracket
is always welcome in the community and isn't casted out. He did his part
and now he has chosen to work on his own projects moving forward.
<br />
<br />
</p>
<p id="kermit"><img height="100"
src="../2009scape-resources/img/game_guide/staff_images/kermit.webp"
style="border:black 1px solid; border-radius: 50%; " width="100" /> <b>Kermit</b>
<br />
<br>
&nbsp; Kermit is the Event Planner for 2009scape. As of April 2022, he became the new
volunteer
host which alone is an amazing thing to contribute. But he's not known for his
hoppin parties or hosting. He is known for his bots. The Pest control bots was the first big
project that Kermit worked on under the guidance of Ceikry. After the 200 hour
Pest Control project he began work on <a href="../game_guide/adventurebots.html"
target="_blank" rel="noopener noreferrer">Adventure bots</a>. He also made the fishing
bots
found at the Fishing Guild. Make sure you say hi from time to time! he is super friendly.
<br />
<br />
</p>
<p id="vddcore"><img height="100"
src="../2009scape-resources/img/game_guide/staff_images/vddCore.webp"
style="border:black 1px solid; border-radius: 50%; " width="100" /> <b>vddCore</b>
<br />
<br>
&nbsp; vddCore is the original Saradomin Launcher developer, and served as a Community
Manager from
2021-2022. She also hosted the deprecated 2009scape Matrix bridge and spends her free time
reverse engineering and writing on her blog.
<br />
<br />
</p>
<br />
<br />
<hr style=" color: #ded4ba; background-color: #ded4ba; height: 1px; border: none; " />
<br />
<br />
Keep in mind that our staff team are all volunteer and are not paid for their customer
service.
<br />
<br />
Rule #2 of our server is to not disrespect any staff member. While it's not severe for instant
ban it is bannable if continued over and over.
<br />
<br />
We're here to build an amazing server and help anyone with any questions they may have of our
server. Do not ping a developer unless you are unable to login
<br />
<br />
Thanks -
<br />
<br />
Staff Team
</div>
<br />
<br />
<tr>
</tr>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="search">
<div class="searchtop">
<div class="bottombordershad">
<div class="leftshadow">
<div class="rightshadow">
<div class="topleft">
<div class="topright">
<div class="bottomleftshad">
<div class="bottomrightshad">
<div class="searchtext">
<p style="text-align: center;font-size:11px;font-weight:bold; margin-bottom: 0px;">
<img src="/site/img/2009img/main/kbase/redpartyhat.webp" alt="Cute Red Partyhat icon" />
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>

216
site/community/staff.md Normal file
View File

@ -0,0 +1,216 @@
---
title: The Staff Team
tags: community
layout: guide
---
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Staff</span></span>
</div>
<div class="links">
<a href="#ceikry">Ceikry</a> |
<a href="#ryan">Ryan</a> |
<a href="#woah">Woahscam</a> |
<a href="#downthecrop">Downthecrop</a> |
<a href="#pazaz">Pazaz</a> |
<a href="#leclerc">Leclerc</a> |
<a href="#sparrow">Sparrow</a> |
<a href="#dan">Dan</a> |
<a href="#bracket">Bracket</a> |
<a href="#kermit">Kermit</a> |
<a href="#vddcore">vddCore</a>
</div>
---
### The Admins
Key members of 2009scape.
Either have been around the longest or they have gained a per say for how much they have put into the project.
<a id="ceikry"></a>
{% include image.html
url="/site/2009scape-resources/img/game_guide/staff_images/ceikry.webp"
style="style='border:black 1px solid; border-radius: 50%;' width='100'"
%}
**Ceikry**
&nbsp; Ceikry is the lead developer and Admin of 2009scape.
He has been around since late 2019 and has put well over 3000 hours into this project over the span of 2 years.
At one point this was a full 8-12 hour day job until he took a break and came back in early 2022 after a month cool down.
He is no longer sysadmin for his own mental health but still respected as the top.
He has put the most work into the project.
<a id="ryan"></a>
{% include image.html
url="/site/2009scape-resources/img/game_guide/staff_images/ryan.webp"
style="style='border:black 1px solid; border-radius: 50%;' width='100'"
%}
**Ryan**
&nbsp; Ryan has been with the community for a while. You may know him as the guy linked to the joke about Barbarian Assault.
Despite all the jokes people may or may not have with him he still holds a position to be respected.
He is acting Community manager and sysadmin as of January of 2022.
If you have any concerns with player files he would be the one to go to.
<a id="woah"></a>
{% include image.html
url="/site/2009scape-resources/img/game_guide/staff_images/woah.webp"
style="style='border:black 1px solid; border-radius: 50%;' width='100'"
%}
**woah**
&nbsp; Up until April of 2022, Woah has been the host of 2009scape behind the scenes.
He was running the magic behind his home server until he could no longer host.
One of the most respected members and high ranking players as of 2022 and continues to work behind the scenes.
He is a client developer and the official cache editor.
If you ever see him please pay your thanks for the hosting he has provided over the years.
We love you woah!
---
### Core Developersee
Non-Admin developers with significant ownership or contributions to the codebase.
See the [Tributes](/site/community/contributors) page for the list of all developers.
<a id="downthecrop"></a>
{% include image.html
url="/site/2009scape-resources/img/game_guide/staff_images/downthecrop.webp"
style="style='border:black 1px solid; border-radius: 50%;' width='100'"
%}
**downthecrop**
&nbsp; Downthecrop is a Youtuber/Twitch streamer that fell upon this project one day while leaving a closed source 06 server.
He was able to edit the stats and quest stages of his sp 09 character and started a series from there (channel is downthecrop2).
He then decided since he knew some programming that he would take a crack at fixing bugs he ran into.
Later realizing that we have a promise to give save files he jumped over to live.
He has contributed to both the Server and Website (drop table tool and automation) and latest making a mobile client that can be found on the home page.
Make sure to tell him hi, he's super nice!
<a id="pazaz"></a>
{% include image.html
url="/site/2009scape-resources/img/game_guide/staff_images/pazaz.webp"
style="style='border:black 1px solid; border-radius: 50%;' width='100'"
%}
&nbsp; Pazaz is a client engineer who provided the RT4 client currently used by 2009scape.
He is also the founder of 2004scape, and to this day runs Windows 98 on bare metal hardware.
---
### Moderators
To ensure the community stays welcoming to all, and to ensure users needing support get it in time.
<a id="leclerc"></a>
{% include image.html
url="/site/2009scape-resources/img/game_guide/staff_images/leclerc.webp"
style="style='border:black 1px solid; border-radius: 50%;' width='100'"
%}
**Leclerc**
&nbsp; Leclerc is the discord & moderator of 2009scape.
He came over from OpenRSC to play some good 'ol RS2.
He is super friendly and is willing to go the extra mile to help you out.
If you need any help ingame like advice or what is what he is the one to go talk to.
---
### Retired Developers
Retired staff who held key positions and left on good terms
<a id="sparrow"></a>
{% include image.html
url="/site/2009scape-resources/img/game_guide/staff_images/sparrow.webp"
style="style='border:black 1px solid; border-radius: 50%;' width='100'"
%}
**Sparrow**
&nbsp; He is an ex developer that slowly moved out of the role when we separated from 06rebotted's Discord into our own.
He has done some work but mainly with the Discord bots.
If you would like to say hi he wouldn't mind.
<a id="dan"></a>
{% include image.html
url="/site/2009scape-resources/img/game_guide/staff_images/dan.webp"
style="style='border:black 1px solid; border-radius: 50%;' width='100'"
%}
**Dan**
&nbsp; Dan was given Developer role for the massive amount of client updates.
He has his own project OpenNXT, but mainly works on his Minecraft server that he does for a living.
<a id="bracket"></a>
{% include image.html
url="/site/2009scape-resources/img/game_guide/staff_images/bracket.webp"
style="style='border:black 1px solid; border-radius: 50%;' width='100'"
%}
**Bracket**
&nbsp; Red Bracket is the founder of 2009scape.
He is officially retired and the community is led by the group of admins underneath.
Unlike Jagex with Andrew Gower, Bracket is always welcome in the community and isn't casted out.
He did his part and now he has chosen to work on his own projects moving forward.
<a id="kermit"></a>
{% include image.html
url="/site/2009scape-resources/img/game_guide/staff_images/kermit.webp"
style="style='border:black 1px solid; border-radius: 50%;' width='100'"
%}
**Kermit**
&nbsp; Kermit is the Event Planner for 2009scape.
As of April 2022, he became the new volunteer host which alone is an amazing thing to contribute.
But he's not known for his hoppin parties or hosting.
He is known for his bots.
The Pest control bots was the first big project that Kermit worked on under the guidance of Ceikry.
After the 200 hour Pest Control project he began work on [Adventure bots](/site/game_guide/adventurebots.html).
He also made the fishing bots found at the Fishing Guild.
Make sure you say hi from time to time, he is super friendly!
<a id="vddcore"></a>
{% include image.html
url="/site/2009scape-resources/img/game_guide/staff_images/vddCore.webp"
style="style='border:black 1px solid; border-radius: 50%;' width='100'"
%}
**vddCore**
&nbsp; vddCore is the original Saradomin Launcher developer, and served as a Community Manager from 2021-2022.
She also hosted the deprecated 2009scape Matrix bridge and spends her free time reverse engineering and writing on her blog.
---
Keep in mind that our staff team are all volunteer and are not paid for their customer service.
Rule #2 of our server is to not disrespect any staff member.
While it's not severe for instant ban it is bannable if continued over and over.
We're here to build an amazing server and help anyone with any questions they may have of our server.
Do not ping a developer unless you are unable to login.
Thanks -
Staff Team

View File

@ -1,6 +1,3 @@
/* Trail */
.lbold {
@ -13,19 +10,19 @@
/* Article */
.bottomborder {
background: transparent url(../img/main/kbase/artbottom.webp) repeat-x scroll left bottom;
background: transparent url(/site/img/main/kbase/artbottom.webp) repeat-x scroll left bottom;
}
.bottomright{
height: 1%;
overflow: visible;
background: transparent url(../img/main/kbase/artroundbr.webp) no-repeat scroll right bottom;
background: transparent url(/site/img/main/kbase/artroundbr.webp) no-repeat scroll right bottom;
padding: 0pt 40px 10px 40px;
text-align: left;
}
.bottomleft{
background: transparent url(../img/main/kbase/artroundbl.webp) no-repeat scroll left bottom;
background: transparent url(/site/img/main/kbase/artroundbl.webp) no-repeat scroll left bottom;
}
.listtext{
@ -55,10 +52,8 @@
width: 100%;
}
.article_theme_2 .searchbutton{
background:transparent url(../img/main/kbase/search_button_brown.webp) no-repeat scroll left top;
background:transparent url(/site/img/main/kbase/search_button_brown.webp) no-repeat scroll left top;
border:medium none;
cursor:pointer;
height:31px;
@ -67,7 +62,7 @@
}
.article_theme_1 .searchbutton{
background:transparent url(../img/main/kbase/search_button_sun.webp) no-repeat scroll left top;
background:transparent url(/site/img/main/kbase/search_button_sun.webp) no-repeat scroll left top;
border:medium none;
cursor:pointer;
height:31px;
@ -82,11 +77,11 @@
.searchtop {
height: 1%;
background: url(../img/main/kbase/searchtop.webp) repeat-x scroll left top;
background: url(/site/img/main/kbase/searchtop.webp) repeat-x scroll left top;
}
.ctbot {
background: transparent url(../img/main/kbase/artroundbottom.webp) repeat-x scroll left bottom;
background: transparent url(/site/img/main/kbase/artroundbottom.webp) repeat-x scroll left bottom;
height: 5px;
}
@ -110,11 +105,11 @@ table.bottomsearch {
}
.topleft{
background: transparent url(../img/main/kbase/searchtopleft.webp) no-repeat scroll left top;
background: transparent url(/site/img/main/kbase/searchtopleft.webp) no-repeat scroll left top;
}
.topright{
background: transparent url(../img/main/kbase/searchtopright.webp) no-repeat scroll right top;
background: transparent url(/site/img/main/kbase/searchtopright.webp) no-repeat scroll right top;
}
/* xSearch Bar */
@ -183,43 +178,43 @@ table.bottomsearch {
}
.topbord {
background: url(../img/main/kbase/imgtopbord.webp) repeat-x scroll left top;
background: url(/site/img/main/kbase/imgtopbord.webp) repeat-x scroll left top;
height: auto;
font-size: 0;
}
.bottombord {
background: transparent url(../img/main/kbase/imgbottombord.webp) repeat-x scroll left bottom;
background: transparent url(/site/img/main/kbase/imgbottombord.webp) repeat-x scroll left bottom;
height: auto;
}
.leftbord {
background: url(../img/main/kbase/imgleftbord.webp) repeat-y scroll left center;
background: url(/site/img/main/kbase/imgleftbord.webp) repeat-y scroll left center;
height: auto;
}
.rightbord {
background: url(../img/main/kbase/imgrightbord.webp) repeat-y scroll right center;
background: url(/site/img/main/kbase/imgrightbord.webp) repeat-y scroll right center;
height: auto;
}
.toplcorn {
background: transparent url(../img/main/kbase/imgtoplcorn.webp) no-repeat scroll left top;
background: transparent url(/site/img/main/kbase/imgtoplcorn.webp) no-repeat scroll left top;
height: auto;
}
.toprcorn {
background: transparent url(../img/main/kbase/imgtoprcorn.webp) no-repeat scroll right top;
background: transparent url(/site/img/main/kbase/imgtoprcorn.webp) no-repeat scroll right top;
height: auto;
}
.bottomlcorn{
background: transparent url(../img/main/kbase/imgbottomlcorn.webp) no-repeat scroll left bottom;
background: transparent url(/site/img/main/kbase/imgbottomlcorn.webp) no-repeat scroll left bottom;
height: auto;
}
.bottomrcorn{
background: transparent url(../img/main/kbase/imgbottomrcorn.webp) no-repeat scroll right bottom;
background: transparent url(/site/img/main/kbase/imgbottomrcorn.webp) no-repeat scroll right bottom;
padding: 0px;
}
@ -265,7 +260,7 @@ table.bottomlinks {
}
.cattext {
background-image: url(../img/main/kbase/categorybackground.webp);
background-image: url(/site/img/main/kbase/categorybackground.webp);
height: 70px;
width: 277px;
vertical-align:top;
@ -368,7 +363,7 @@ table.bottomlinks {
}
.subcattext {
background-image: url(../img/main/kbase/subcatbackground.webp);
background-image: url(/site/img/main/kbase/subcatbackground.webp);
height: 57px;
width: 192px;;
vertical-align:top;

View File

@ -1,8 +1,3 @@
#newsitemmenu {
padding-top: 30px;
}
@ -42,7 +37,7 @@
}
.row_a {
background: url(../img/main/layout/subarticle_header_bg.webp) repeat-x;
background: url(/site/img/main/layout/subarticle_header_bg.webp) repeat-x;
color: #645c43;
}
@ -65,7 +60,6 @@
.pagepad {
padding: 32px 40px 60px;
color: #675F39;
}
#newslist td {
@ -108,7 +102,7 @@
}
.adframe {
background-image:url(../img/advert/advert_news.webp);
background-image:url(/site/img/advert/advert_news.webp);
background-position:center;
background-repeat:no-repeat;
float:right;

View File

@ -1,87 +0,0 @@
---
title: About Page
tags: game_guide
layout: guide
---
<div id="content">
<div id="rule">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque_medium">
About 2009scape
</h1>
</div>
</div>
<div class="section">
<div class="article_theme_1">
<div class="article">
<div class="topshadow">
<div class="bottomborder">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottomleft">
<div class="bottomright">
<br/>
<br/>
<br/>
<section style="font-size: 13px;">
<!-- Introduction of the about sections -->
<p style="margin-left: 3%;"> Every website should have an about section and while this is pretty straight forward of an idea of what we are about we will go into
detail about what are future goals are and our past that got us to this point.
</p>
<!-- What is 2009scape? -->
<h3> What is 2009scape?</h3>
<p> 2009scape is an unofficial remake of the 2009 era of RS that is usually forgotten. We are aiming towards a full remake of 100% completion which let people relive
the RS2HD days once again. A non profit group that is trying something different in the open source community. In the past we have dealt with people both trying
to sell the source or exploit bugs in the code for gains in the game. The last mass ban of these exploiters took over 100 million out of the economy. However,
with this happening our core is open source while our content is closed source.
</p>
<!-- History of 2009scape -->
<h3> History of 2009scape </h3>
<p>
The 2009Scape you see today has gone through a magnitude of changes. Originally starting its life as Arios498, this server saw a lot of people playing it daily,
unfortunately, it was for profit and closed source. It was later upgraded to Arios530, targeting the build 530 of runescape with content in and around
January 1st, 2009. Development came to a halt when a developer of the closed source project released the source code. The original developers of this server went
on to create Kratos 530 back in 2015.
This project was started out of love for the 530 revision. A small group of developers spent hundreds of hours improving on the existing source that was left to the
curb. Over the past year, this project has seen many developers coming and going, fixing bugs that they find either through their own server, or bugs that they find
in the live game that is currently hosted.
</p>
<!-- Current 2009scape -->
<h3> 2009scape as of 2021 </h3>
<p>
As of June 2021, we have decided to split the two games entirely between Legacy and Preservation. Legacy is the base we had started on and was at one point known as
World 2. The Legacy world 1 was deleted on request of the World 1 players for the making of the Preservation server. The Preservation server was at one point the v2.009
that was going to replace both worlds but we had decided to keep the legacy code base open source and just make on Preservation world that stayed true to the era of 2009
no matter how rediculous Jagex's decision were like free trade limits and no wilderness. This is like the name sounds to Preserve the era as a historical server based on the
578 revision December 22, 2009. Legacy will more than likely get updated to the 531 revision for Soul wars but will not be be upgrading to 578. As of August 2021, Legacy is
the only server that is being hosted and is currently being worked on by our developers and contributors of the community.
Stop by and say hi! and make sure to read our getting started page for Legacy found <a href="play.html">here</a>.
</p>
</section>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>

View File

@ -0,0 +1,38 @@
---
title: About 2009scape
tags: game_guide
layout: guide
---
Every website should have an about section and while this is pretty straight forward of an idea of what we are about we will go into detail about what are future goals are and our past that got us to this point.
### What is 2009scape?
2009scape is an unofficial remake of the 2009 era of RS that is usually forgotten.
We are aiming towards a full remake of 100% completion which let people relive the RS2HD days once again.
A non profit group that is trying something different in the open source community.
In the past we have dealt with people both trying to sell the source or exploit bugs in the code for gains in the game.
The last mass ban of these exploiters took over 100 million out of the economy. However, with this happening our core is open source while our content is closed source.
### History of 2009scape
The 2009Scape you see today has gone through a magnitude of changes.
Originally starting its life as Arios498, this server saw a lot of people playing it daily, unfortunately, it was for profit and closed source.
It was later upgraded to Arios530, targeting the build 530 of runescape with content in and around January 1st, 2009.
Development came to a halt when a developer of the closed source project released the source code.
The original developers of this server went on to create Kratos 530 back in 2015.
This project was started out of love for the 530 revision.
A small group of developers spent hundreds of hours improving on the existing source that was left to the curb.
Over the past year, this project has seen many developers coming and going, fixing bugs that they find either through their own server, or bugs that they find in the live game that is currently hosted.
### 2009scape as of 2021
As of June 2021, we have decided to split the two games entirely between Legacy and Preservation.
Legacy is the base we had started on and was at one point known as World 2.
The Legacy world 1 was deleted on request of the World 1 players for the making of the Preservation server.
The Preservation server was at one point the v2.009 that was going to replace both worlds but we had decided to keep the legacy code base open source and just make on Preservation world that stayed true to the era of 2009 no matter how rediculous Jagex's decision were like free trade limits and no wilderness.
This is like the name sounds to Preserve the era as a historical server based on the 578 revision December 22, 2009.
Legacy will more than likely get updated to the 531 revision for Soul wars but will not be be upgrading to 578.
As of August 2021, Legacy is the only server that is being hosted and is currently being worked on by our developers and contributors of the community.
Stop by and say hi! and make sure to read our getting started page for Legacy found [here](/site/game_guide/play.html).

View File

@ -1,116 +0,0 @@
---
title: 2009Scape - Adventure bots
tags: game_guide
layout: guide
---
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Adventure Bots
</h1>
</div>
</div>
</div>
<div class="section">
<div class="article_theme_1">
<div class="article">
<div class="topshadow">
<div class="bottomborder">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottomleft">
<div class="bottomright">
<div class="links"> </div>
<br class="clear"/>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Adventure Bots</span></span>
</div><br/>
<p>
One thing that we remember most in Runescape probably above all are the pesky bots that ran around.
Everytime you tried to chop trees one would be there to steal it. While they were quite annoying they
did provide a lot of raw material to the ge that you might have believed players had collected but the
bulk of it was thanks to bots. Botting did make the game feel a lot less lonely due to collecting all
all the loot but never speaking to with you or they out right just out ranked you in the leaderboards.
</p>
<p>
Luckily, in 2009scape, you do not have this problem. The developers have created these amazing bots called
adventure bots. They are server sided bots that go out on <b>Adventures</b> as their name suggests. What is
really cool is they sell items they collect on their adventures to the grand exchange. Being a remake rsps
we will always have a lower playerbase and with this collection you will be able to play the game without the
feeling of constant ironman mode feeling.
</p>
<p>
Another feature of these amazing beings is they TALK unlike the RS player bots the server sided bots have a crap ton
of dialogue they go through to add to the immersion. They will also talk directly to the player and their dialogue
shows up in the chat to add also to the immersion.
<br/>
<br/>
<img height="150" src="../2009scape-resources/img/game_guide/bots-talking.webp" width="400"/>
<br/>
<br/>
During Holiday seasons the bots change their dialogue to that holiday. So during Christmas they sing christmas songs,
they count down to christmas, and in the future possibly throw snow balls at the players or each other. They continue
to expand in dialogue and abilities over time and I'd love to add more to this page when the time has come.
</p>
</div>
<div style="margin-left: 6%;">
<tr>
<td colspan="2">
<div class="bold">Further Help</div>
Need more help? Come chat with us!
<ul class="further">
<li><a href="https://discord.gg/43YPGND">Discord</a>
</li>
<li>
<a href="https://forum.2009scape.org/">Forums</a>
</li>
</ul>
<br/>
<br/>
</td>
</tr>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="search">
<div class="searchtop">
<div class="bottombordershad">
<div class="leftshadow">
<div class="rightshadow">
<div class="topleft">
<div class="topright">
<div class="bottomleftshad">
<div class="bottomrightshad">
<div class="searchtext">
<p style="text-align: center;font-size:11px;font-weight:bold; margin-bottom: 0px;">
<img src="/site/img/2009img/main/kbase/redpartyhat.webp" alt="Cute Red Partyhat icon"/>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>

View File

@ -0,0 +1,28 @@
---
title: 2009Scape - Adventure bots
tags: game_guide
layout: guide
---
One thing that we remember most in Runescape probably above all are the pesky bots that ran around.
Everytime you tried to chop trees one would be there to steal it.
While they were quite annoying they did provide a lot of raw material to the ge that you might have believed players had collected but the bulk of it was thanks to bots.
Botting did make the game feel a lot less lonely due to collecting all the loot but never speaking to with you or they out right just out ranked you in the leaderboards.
Luckily, in 2009scape, you do not have this problem.
The developers have created these amazing bots called adventure bots.
They are server sided bots that go out on **Adventures** as their name suggests.
What is really cool is they sell items they collect on their adventures to the grand exchange.
Being a remake RSPS we will always have a lower playerbase and with this collection you will be able to play the game without the feeling of constant ironman mode feeling.
Another feature of these amazing beings is they TALK, unlike the RS player bots.
The server sided bots have a crap ton of dialogue they go through to add to the immersion.
They will also talk directly to the player and their dialogue shows up in the chat to add also to the immersion.
![](/site/2009scape-resources/img/game_guide/bots-talking.webp){:height="150" width="400"}
During Holiday seasons the bots change their dialogue to that holiday.
So during Christmas they sing christmas songs, they count down to christmas, and in the future possibly throw snow balls at the players or each other.
They continue to expand in dialogue and abilities over time and I'd love to add more to this page when the time has come.
{% include further-help.html %}

View File

@ -1,140 +0,0 @@
---
title: Client Plugins
tags: game_guide
layout: guide
---
<div id="content">
<div id="rule">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque_medium">
Client Plugins
</h1>
</div>
</div>
<div class="section">
<div class="article_theme_1">
<div class="article">
<div class="topshadow">
<div class="bottomborder">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottomleft">
<div class="bottomright">
<br/>
<br/>
<br/>
<p>
</p><div class="headings">
<span class="headertitleleft"><span class="headertitleright">Introduction</span></span>
</div>
<br>
In 2023, 2009scape adapted to the Experimental Client as the main client. This client can be access by either cloning it from Github or directly through the
Saradomin Launcher. Unlike the client before it, this client is an authentic client. In order to gain access to things that were originally part of the old client,
you will need to install plugins. We went with a plugin system, since they allow us to make inauthentic changes to the client and keep those inauthentic changes optional.
<br><br>
</p><div class="headings">
<span class="headertitleleft"><span class="headertitleright">Plugins</span></span>
</div>
<h3><u>Player QoL </u></h3>
<p style="font-weight: bold; font-size: 12px;">⚔️ BasicInputQoL</p>
<p>Allows the user to use custom features like shift-drop, zoom in/out, and scroll wheel camera movement. <br>
Check out the <a href="./controls.html">Controls</a> page to learn the controls.
</p>
<p style="font-weight: bold; font-size: 12px;">⚔️ Craftify</p>
<p> Adds a block-display above bots/players with their usernames. </p>
<p style="font-weight: bold; font-size: 12px;">⚔️ RememberMyLogin</p>
<p>Is a password manager that remembers your username/passcode of last account logged in.</p>
<p style="font-weight: bold; font-size: 12px;">⚔️ LoginTimer</p>
<p>Displays the session time played, system time, or no time over the \"Report Abuse\" button</p>
<p style="font-weight: bold; font-size: 12px;">⚔️ XpDropPlugin</p>
<p> Shows you the xp gained of the current skill you are working on. </p>
<p style="font-weight: bold; font-size: 12px;">⚔️ SlayerTracker</p>
<p>Shows your current slayer task and counts down as you do the task.</p>
<h3><u>Debugging</u></h3>
<p style="font-weight: bold; font-size: 12px;">⚔️ InterfaceDebugPlugin</p>
<p>Aids in identifying interface components/varps/model IDs.</p>
<p style="font-weight: bold; font-size: 12px;">⚔️ OverheadDebugPlugin</p>
<p>Draws helpful overhead debug information.</p>
<p style="font-weight: bold; font-size: 12px;">⚔️ VarpLogPlugin</p>
<p>Adds a simple log of varp changes drawn directly to the screen.</p>
<p style="font-weight: bold; font-size: 12px;">⚔️ MiniMenuQol</p>
<p>Provides debug and some basic QOL for the MiniMenu</p>
<p style="font-weight: bold; font-size: 12px;">⚔️ IfView</p>
<p> A debug utility for visualizing the component numbers for open interfaces.</p>
<br>
</p><div class="headings">
<span class="headertitleleft"><span class="headertitleright">Live Server Installtion</span></span>
</div>
Step 1: Launch your Saradomin launcher. You will see menu that looks like this:
<img src="../2009scape-resources/img/game_guide/client-configs/plugins.png" width="300" height="300">
<br>
<br>
It shows the plugins you have installed and the ones available to install. Once you have a few plugins
installed, your screen should look like this:
<br>
<br>
<img src="../2009scape-resources/img/game_guide/client-configs/installedPlugins.png" width="300" height="300">
<br>
<br>
</p><div class="headings">
<span class="headertitleleft"><span class="headertitleright">Singleplayer Installation</span></span>
</div>
I believe the goal is to hook it up the same way the live server does, but for now, check out this repo for installation: <a href="https://gitlab.com/2009scape/tools/client-plugins">Guide</a>
<br/>
<br/>
<br/>
<br/>
<br/>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>

View File

@ -0,0 +1,89 @@
---
title: Client Plugins
tags: game_guide
layout: guide
---
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Introduction</span></span>
</div>
In 2023, 2009scape adapted to the Experimental Client as the main client.
This client can be access by either cloning it from Github or directly through the Saradomin Launcher.
Unlike the client before it, this client is an authentic client.
In order to gain access to things that were originally part of the old client, you will need to install plugins.
We went with a plugin system, since they allow us to make inauthentic changes to the client and keep those inauthentic changes optional.
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Plugins</span></span>
</div>
### Player QoL
⚔️ **BasicInputQoL**
Allows the user to use custom features like shift-drop, zoom in/out, and scroll wheel camera movement.
Check out the [controls](./controls.html) page to learn the controls.
**⚔️ Craftify**
Adds a block-display above bots/players with their usernames.
**⚔️ RememberMyLogin**
Is a password manager that remembers your username/passcode of last account logged in.
**⚔️ LoginTimer**
Displays the session time played, system time, or no time over the \"Report Abuse\" button.
**⚔️ XpDropPlugin**
Shows you the xp gained of the current skill you are working on.
**⚔️ SlayerTracker**
Shows your current slayer task and counts down as you do the task.
### Debugging
**⚔️ InterfaceDebugPlugin**
Aids in identifying interface components/varps/model IDs.
**⚔️ OverheadDebugPlugin**
Draws helpful overhead debug information.
**⚔️ VarpLogPlugin**
Adds a simple log of varp changes drawn directly to the screen.
**⚔️ MiniMenuQol**
Provides debug and some basic QOL for the MiniMenu
**⚔️ IfView**
A debug utility for visualizing the component numbers for open interfaces.
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Live Server Installtion</span></span>
</div>
Step 1: Launch your Saradomin launcher. You will see menu that looks like this:
![](/site/2009scape-resources/img/game_guide/client-configs/plugins.png){:width="300" height="300"}
It shows the plugins you have installed and the ones available to install.
Once you have a few plugins installed, your screen should look like this:
![](/site/2009scape-resources/img/game_guide/client-configs/installedPlugins.png){:width="300" height="300"}
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Singleplayer Installation</span></span>
</div>
I believe the goal is to hook it up the same way the live server does, but for now, check out this repo for installation: [Guide](https://gitlab.com/2009scape/tools/client-plugins).

View File

@ -1,81 +0,0 @@
---
title: Controls
tags: game_guide
layout: guide
---
<div id="content">
<div id="rule">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque_medium">
Controls
</h1>
</div>
</div>
<div class="section">
<div class="article_theme_1">
<div class="article">
<div class="topshadow">
<div class="bottomborder">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottomleft">
<div class="bottomright">
<br/>
<br/>
<br/>
<p>
</p><div class="headings">
<span class="headertitleleft"><span class="headertitleright">Introduction</span></span>
</div>
<br>
In 2023, unlike the old days before, you will need to get client plugins to do things we once could do without. In your launcher, you will
see options to install plugins. The plugin that you are going to want for the majority of these will be "BasicInputQoL". To learn more about the
Client Plugins, click <a href="./client-plugins.html">here</a>.
<br><br>
<p style="font-weight: bold; font-size: 12px;">⚔️ Zooming In & Out</p>
<p>To zoom in and out, you must hold the shift key and then use the mousewheel.</p>
<p style="font-weight: bold; font-size: 12px;">⚔️ Shift-Drop</p>
<p> For dropping items, make sure you hold the shift key and then click on the item. </p>
<p style="font-weight: bold; font-size: 12px;">⚔️ Camera Rotation</p>
<p>To rotate your camera, just use the arrow keys or hold down the scroll button and move your mouse in the direction you'd like the camera to focus.</p>
<p style="font-weight: bold; font-size: 12px;">⚔️ Bank depositing</p>
<p> You can access the different options by clicking on the pouch. </p>
<br/>
<img height="400" src="../2009scape-resources/img/game_guide/controls/deposit-to.webp" style="margin-left: 10%; border:solid 2px rgb(34, 31, 29);" width="500"/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>

View File

@ -0,0 +1,32 @@
---
title: Controls
tags: game_guide
layout: guide
---
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Introduction</span></span>
</div>
In 2023, unlike the old days before, you will need to get client plugins to do things we once could do without.
In your launcher, you will see options to install plugins.
The plugin that you are going to want for the majority of these will be "BasicInputQoL".
To learn more about the Client Plugins, click [here](./client-plugins.html).
**⚔️ Zooming In & Out**
To zoom in and out, you must hold the shift key and then use the mousewheel.
**⚔️ Shift-Drop**
For dropping items, make sure you hold the shift key and then click on the item.
**⚔️ Camera Rotation**
To rotate your camera, just use the arrow keys or hold down the scroll button and move your mouse in the direction you'd like the camera to focus.
**⚔️ Bank depositing**
You can access the different options by clicking on the pouch.
![](/site/2009scape-resources/img/game_guide/controls/deposit-to.webp){:width="500" height="400"}

View File

@ -1,168 +0,0 @@
---
title: Credits
tags: game_guide
layout: guide
---
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Credits
</h1>
</div>
</div>
</div>
<div class="section">
<div class="article_theme_1">
<div class="article">
<div class="topshadow">
<div class="bottomborder">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottomleft">
<div class="bottomright">
<div class="links"> </div>
<br class="clear"/>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Credits</span></span>
</div><br/>
<p>
Our Credit system is our reward system for contributing towards the project in various ways. You must not confuse it with a
donation system that another server may have. It's our way of saying thank you for your contributions and an incentive to continue by
turning them into a currency to buy the holiday rares that everyone loves.
<img src="../2009scape-resources/img/game_guide/menu.webp" height="300" width="500" style="margin-left: 13%; margin-top: 1%;">
</p>
<b><u>Testing Content</u></b>
<p>
With our new test server, we are able to test content on a server to make sure bugs do not enter the realm of the live server. We
can but do not want to do this alone and would love the help! But don't worry, there is something in it for you. Credits! Keep
in mind that credits will only be awarded to people who thoroughly test the content and provide detailed reports on them. You must
claim credits for your testing efforts on <a href="https://forum.2009scape.org/viewtopic.php?t=192-credits-claim">this forum thread</a>.
<br>
<br>
If you test smaller things like bug fixes there is a 2 credit reward. <br>
If you test full quests or minigames you will be rewarded 5 credits. <br>
If you find a bug in the content you are testing that hasn't already been found you will earn
an extra credit. <br>
<br> Super Easy! Get to testing!
</p>
<b><u> JSON Contributions </u></b>
<p>
If you are wanting to contribute the smaller easy but yet super imporant stuff look no further than the Json side. What can you
contribute through Json you may ask? There are examines, npc stats, npc drops, item drops, and even item spawns you can fill out.
Check out our Thanos Tool in order to get started. It's a fill-in-the-blank tool that does just that. Make sure that the Information
is authentic to the 2009 era.
<br>
<br>
Click on the <a href="https://gitlab.com/2009scape/tools/rs09-thanos-tool">Thanos Tool</a> to be redirected to the Gitlab page.
</p>
<b><u> Quest Dialogue </u></b>
<p>
The 2008/2009 era of RS was a long while ago; however, some youtubers will have quite a bit of video guides in which you are to pull dialogue from.
You can use OSRS as a last alternative if not found elsewhere for secondary options. I must advise against using it as your first choice as OSRS has
quite a bit of undocumented changes. We know that writing dialogue is tedious and for this the reward is 10 credits per dialogue file written.
If you are unsure where to start, check out the #dev channel on Discord. If you are a Matrix user, you can check with the <a href="https://matrix.to/#/#_discordpuppet__857696864777928754:matrix.vddcore.eu">Dev Channel</a>.
</p>
<b><u> Hall of Fame </u></b>
<p> 2009scape is a free to play game allowing players to take their time leveling their player's stats. What is the fun of multiplayer if there isn't a little
bit of competition? Hall of fame or HoF for short, is a contest to see who will reach the first to a 99 in a skill. There is no reason to panic, there is a HoF for
every xp rate and ironman status. In order to claim a HoF spot, you must post inside of <a href="https://forum.2009scape.org/viewtopic.php?t=192-credits-claim">this forum thread</a>.
<b>The first to claim the 99 in the following categories is the one who receives the credits and fame.</b>
<br>
<br>
<ul>
<li><b>x1 xp rate</b>: 200 credits</li>
<li><b>x2.5 xp rate</b>: 100 credits</li>
<li><b>x5 xp rate</b>: 40 credits</li>
<li><b>x10 xp rate</b>: 20 credits ( For Permadeath Ironmen only )</li>
</ul>
</p>
<b><u> Events </u></b>
<p>
To keep Community events alive we spark it up with some credits for attending. If you attend the event and participate you get a total of 2 points even
if you lose! Kermit, our event manager, gets to give out more credits to the winners of an official event. Once a week a player is able to make an
unofficial event and get 5 credits for hosting their own. It must be approved in order to get credits.
</p>
<b><u>Voting</u></b>
<p>
Voting is no longer a valid method for obtaining credits since July 2022. To quote the admin of 2009scape server from 2009scape Discord announcement:
<br>
<br>
<i>
"We as a collective team came to the conclusion of disabling voting altogether. It hardly pulls in new users and is just a tedious system when not kept up with.
[...] Rares hold a lot of value for contributing and we really need more testers for 2009scape. The test server is a click away and all you have to do is test
new content and write a report on what you've found during your testing and you get 5 credits. We have new content to test all the time, so there's an incentive
for both devs and players to make more MRs and test them to get them pushed."
</i>
<br>
<br>
Having said that, it's worth remembering that testing and data contributions are not only the best ways to earn credits,
they are much needed by the 2009scape project to bring it closer to the authentic archive of the golden era of Runescape.
<br>
</p>
</div>
<div style="margin-left: 6%;">
<tr>
<td colspan="2">
<div class="bold">Further Help</div>
Need more help? Come chat with us!
<ul class="further">
<li><a href="https://discord.gg/43YPGND">Discord</a>
</li>
<li>
<a href="https://forum.2009scape.org/">Forums</a>
</li>
</ul>
<br/>
<br/>
</td>
</tr>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="search">
<div class="searchtop">
<div class="bottombordershad">
<div class="leftshadow">
<div class="rightshadow">
<div class="topleft">
<div class="topright">
<div class="bottomleftshad">
<div class="bottomrightshad">
<div class="searchtext">
<p style="text-align: center;font-size:11px;font-weight:bold; margin-bottom: 0px;">
<img src="/site/img/2009img/main/kbase/redpartyhat.webp" alt="Cute Red Partyhat icon"/>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>

View File

@ -0,0 +1,89 @@
---
title: Credits
tags: game_guide
layout: guide
---
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Credits</span></span>
</div>
Our Credit system is our reward system for contributing towards the project in various ways.
You must not confuse it with a donation system that another server may have.
It's our way of saying thank you for your contributions and an incentive to continue by turning them into a currency to buy the holiday rares that everyone loves.
![](/site/2009scape-resources/img/game_guide/menu.webp){:width="500" height="300"}
### Testing Content
With our new test server, we are able to test content on a server to make sure bugs do not enter the realm of the live server.
We can but do not want to do this alone and would love the help! But don't worry, there is something in it for you.
Credits!
Keep in mind that credits will only be awarded to people who thoroughly test the content and provide detailed reports on them.
You must claim credits for your testing efforts on [this forum thread](https://forum.2009scape.org/viewtopic.php?t=192-credits-claim).
If you test smaller things like bug fixes there is a 2 credit reward.
If you test full quests or minigames you will be rewarded 5 credits.
If you find a bug in the content you are testing that hasn't already been found you will earn an extra credit.
Super Easy! Get to testing!
### JSON Contributions
If you are wanting to contribute the smaller easy but yet super imporant stuff look no further than the JSON side.
What can you contribute through JSON you may ask?
There are examines, npc stats, npc drops, item drops, and even item spawns you can fill out.
Check out our Thanos Tool in order to get started.
It's a fill-in-the-blank tool that does just that.
Make sure that the Information is authentic to the 2009 era.
Click on the [Thanos Tool(https://gitlab.com/2009scape/tools/rs09-thanos-tool) to be redirected to the Gitlab page.
### Quest Dialogue
The 2008/2009 era of RS was a long while ago; however, some youtubers will have quite a bit of video guides in which you are to pull dialogue from.
You can use OSRS as a last alternative if not found elsewhere for secondary options.
I must advise against using it as your first choice as OSRS has quite a bit of undocumented changes.
We know that writing dialogue is tedious and for this the reward is 10 credits per dialogue file written.
If you are unsure where to start, check out the #dev channel on Discord.
If you are a Matrix user, you can check with the [Dev Channel](https://matrix.to/#/#_discordpuppet__857696864777928754:matrix.vddcore.eu).
### Hall of Fame
2009scape is a free to play game allowing players to take their time leveling their player's stats.
What is the fun of multiplayer if there isn't a little bit of competition?
Hall of fame or HoF for short, is a contest to see who will reach the first to a 99 in a skill.
There is no reason to panic, there is a HoF for every xp rate and ironman status.
In order to claim a HoF spot, you must post inside of [this forum thread](https://forum.2009scape.org/viewtopic.php?t=192-credits-claim).
**The first to claim the 99 in the following categories is the one who receives the credits and fame.**
- **x1 xp rate**: 200 credits
- **x2.5 xp rate**: 100 credits
- **5 xp rate**: 40 credits
- **x10 xp rate**: 20 credits ( For Permadeath Ironmen only )
### Events
To keep Community events alive we spark it up with some credits for attending.
If you attend the event and participate you get a total of 2 points even if you lose!
Kermit, our event manager, gets to give out more credits to the winners of an official event.
Once a week a player is able to make an unofficial event and get 5 credits for hosting their own.
It must be approved in order to get credits.
### Voting
Voting is no longer a valid method for obtaining credits since July 2022.
To quote the admin of 2009scape server from 2009scape Discord announcement:
> "We as a collective team came to the conclusion of disabling voting altogether.
> It hardly pulls in new users and is just a tedious system when not kept up with.
> [...] Rares hold a lot of value for contributing and we really need more testers for 2009scape.
> The test server is a click away and all you have to do is test new content and write a report on what you've found during your testing and you get 5 credits.
> We have new content to test all the time, so there's an incentive for both devs and players to make more MRs and test them to get them pushed."
Having said that, it's worth remembering that testing and data contributions are not only the best ways to earn credits, they are much needed by the 2009scape project to bring it closer to the authentic archive of the golden era of Runescape.
{% include further-help.html %}

View File

@ -1,55 +0,0 @@
---
title: Play Now - Multiplayer
tags: game_guide
layout: guide
---
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Play Now - Multiplayer
</h1>
</div>
</div>
</div>
<div class="section">
<div class="article_theme_1">
<div class="article">
<div class="topshadow">
<div class="bottomborder">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottomleft">
<div class="bottomright">
<br/>
<a name="Download"></a><br class="clear"/>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright" id="download">This Page Has Moved!</span></span>
</div>
<br />
<div style="width: 100%; margin: 0% auto; display: flex; justify-content: center">
<a href="./play.html" id="playbutton" style="background: none;">
<img src="../../site/2009scape-resources/img/buttons/btn-play.webp"
alt="Play 2009Scape" width="480" height="151"/>
<span class="shim"></span>
</a>
</div>
<br />
<br />
<div style="text-align: center;">
Click <a href="./play.html"> Here </a> to go to the new Downloads Page
</div>
</div>
</div>
<br class="clear"/>
</div>

View File

@ -1,95 +1,163 @@
---
title: Game Guide
tags: game_guide
layout: guide
layout: community
---
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Game Guide
</h1>
</div>
</div>
</div>
<div class="section">
<div class="article_theme_2">
<div class="firstborder">
<div class="brown_box">
<div class="brown_box" style="margin-bottom: 5px; padding-bottom:1px;">
<div class="itemborder" style="margin-right:4px;">
<div class="headingpic"><a href="./play.html"><img alt="" src="../img/main/kbase/category_pages/img_big/manual_gettingstarted.webp" style="width:70px;height:70px;"/></a></div>
<div class="cattext"><div class="text"><div class="title1"><a href="./play.html">How do I get started?</a></div>
Find out how to get started on the road to 2009scape mastery.</div>
</div>
</div>
<div class="itemborder">
<div class="headingpic"><a href="./controls.html"><img alt="" src="../img/main/kbase/category_pages/img_big/controls_movement.webp" style="width:70px;height:70px;"/></a></div>
<div class="cattext"><div class="text"><div class="title1"><a href="./controls.html">Our Controls</a></div>
Our 2009scape exclusive controls</div>
</div>
</div>
<div class="itemborder" style="margin-right:4px;">
<div class="headingpic"><a href="./skill_cape_perks.html"><img alt="" src="../img/main/kbase/category_pages/img_big/manual_quests.webp" style="width:70px;height:70px;"/></a></div>
<div class="cattext"><div class="text"><div class="title1"><a href="./skill_cape_perks.html">Our Skill Cape Perks</a></div>
Check out our exclusive 2009scape skill cape perks.</div>
</div>
</div>
<div class="itemborder">
<div class="headingpic"><a href="./the_commands.html"><img alt="" src="../img/main/kbase/category_pages/img_big/manual_minigames.webp" style="width:70px;height:70px;"/></a></div>
<div class="cattext"><div class="text"><div class="title1"><a href="./the_commands.html">In-game Commands</a></div>
Check out our custom brewed commands.</div>
</div>
</div>
<div class="itemborder" style="margin-right:4px;">
<div class="headingpic"><a href="./credits.html"><img alt="" src="../img/main/kbase/category_pages/img_big/customersupport_billing.webp" style="width:70px;height:70px;"/></a></div>
<div class="cattext"><div class="text"><div class="title1"><a href="./credits.html">The Credit System</a></div>
Check out our custom credit system ( not mtx )</div>
</div>
</div>
<div class="itemborder">
<div class="headingpic"><a href="./singleplayer.html"><img alt="" src="../img/main/kbase/category_pages/img_big/combat_armour_types.webp" style="width:70px;height:70px;"/></a></div>
<div class="cattext"><div class="text"><div class="title1"><a href="./singleplayer.html">SinglePlayer</a></div>
If you have to play offline and can not play our online. Check out our Singleplayer mode!</div>
</div>
</div>
<div class="itemborder" style="margin-right:4px;">
<div class="headingpic"><a href="./adventurebots.html"><img alt="" src="../img/main/kbase/category_pages/img_big/mg_tzhaarfightcave.webp" style="width:70px;height:70px;"/></a></div>
<div class="cattext"><div class="text"><div class="title1"><a href="./adventurebots.html">Adventure Bots</a></div>
Learn more about our famous Adventure bots here.</div>
</div>
</div>
<div class="itemborder">
<div class="headingpic"><a href="./zanik.html"><img alt="" src="../img/main/kbase/category_pages/img_big/manual_combat.webp" style="width:70px;height:70px;"/></a></div>
<div class="cattext"><div class="text"><div class="title1"><a href="./zanik.html">Meet Zanik</a></div>
Learn more about our famous discord bot.</div>
</div>
</div>
<div class="itemborder" style="margin-right:4px;">
<div class="headingpic"><a href="./client-plugins.html"><img alt="" src="../img/main/kbase/category_pages/img_big/customersupport_other.webp" style="width:70px;height:70px;"/></a></div>
<div class="cattext"><div class="text"><div class="title1"><a href="./client-plugins.html">Client Plugins</a></div>
Learn more about the Client Plugins you can install.</div>
<div class="firstborder">
<div class="brown_box">
<div class="brown_box" style="margin-bottom: 5px; padding-bottom:1px;">
<div class="itemborder" style="margin-right:4px;">
<div class="headingpic">
<a href="./play.html">
<img alt="" src="../img/main/kbase/category_pages/img_big/manual_gettingstarted.webp" style="width:70px;height:70px;"/>
</a>
</div>
<div class="cattext">
<div class="text">
<div class="title1">
<a href="./play.html">How do I get started?</a>
</div>
Find out how to get started on the road to 2009scape mastery.
</div>
</div>
</div>
<div class="itemborder">
<div class="headingpic">
<a href="./controls.html">
<img alt="" src="../img/main/kbase/category_pages/img_big/controls_movement.webp" style="width:70px;height:70px;"/>
</a>
</div>
<div class="cattext">
<div class="text">
<div class="title1">
<a href="./controls.html">Our Controls</a>
</div>
Our 2009scape exclusive controls
</div>
</div>
</div>
<div class="itemborder" style="margin-right:4px;">
<div class="headingpic">
<a href="./skill_cape_perks.html">
<img alt="" src="../img/main/kbase/category_pages/img_big/manual_quests.webp" style="width:70px;height:70px;"/>
</a>
</div>
<div class="cattext">
<div class="text">
<div class="title1">
<a href="./skill_cape_perks.html">Our Skill Cape Perks</a>
</div>
Check out our exclusive 2009scape skill cape perks.
</div>
</div>
</div>
<div class="itemborder">
<div class="headingpic">
<a href="./the_commands.html">
<img alt="" src="../img/main/kbase/category_pages/img_big/manual_minigames.webp" style="width:70px;height:70px;"/>
</a>
</div>
<div class="cattext">
<div class="text">
<div class="title1">
<a href="./the_commands.html">In-game Commands</a>
</div>
Check out our custom brewed commands.
</div>
</div>
</div>
<div class="itemborder" style="margin-right:4px;">
<div class="headingpic">
<a href="./credits.html">
<img alt="" src="../img/main/kbase/category_pages/img_big/customersupport_billing.webp" style="width:70px;height:70px;"/>
</a>
</div>
<div class="cattext">
<div class="text">
<div class="title1">
<a href="./credits.html">The Credit System</a>
</div>
Check out our custom credit system (not mtx)
</div>
</div>
</div>
<div class="itemborder">
<div class="headingpic">
<a href="./singleplayer.html">
<img alt="" src="../img/main/kbase/category_pages/img_big/combat_armour_types.webp" style="width:70px;height:70px;"/>
</a>
</div>
<div class="cattext">
<div class="text">
<div class="title1">
<a href="./singleplayer.html">SinglePlayer</a>
</div>
If you have to play offline and can not play our online. Check out our Singleplayer mode!
</div>
</div>
</div>
<div class="itemborder" style="margin-right:4px;">
<div class="headingpic">
<a href="./adventurebots.html">
<img alt="" src="../img/main/kbase/category_pages/img_big/mg_tzhaarfightcave.webp" style="width:70px;height:70px;"/>
</a>
</div>
<div class="cattext">
<div class="text">
<div class="title1">
<a href="./adventurebots.html">Adventure Bots</a>
</div>
Learn more about our famous Adventure bots here.
</div>
</div>
</div>
<div class="itemborder">
<div class="headingpic">
<a href="./zanik.html">
<img alt="" src="../img/main/kbase/category_pages/img_big/manual_combat.webp" style="width:70px;height:70px;"/>
</a>
</div>
<div class="cattext">
<div class="text">
<div class="title1">
<a href="./zanik.html">Meet Zanik</a>
</div>
Learn more about our famous Discord bot.
</div>
</div>
</div>
<div class="itemborder" style="margin-right:4px;">
<div class="headingpic">
<a href="./client-plugins.html">
<img alt="" src="../img/main/kbase/category_pages/img_big/customersupport_other.webp" style="width:70px;height:70px;"/>
</a>
</div>
<div class="cattext">
<div class="text">
<div class="title1">
<a href="./client-plugins.html">Client Plugins</a>
</div>
Learn more about the Client Plugins you can install.
</div>
</div>
</div>
<div class="container" style="clear:both;">
</div>
</div>
<div class="container" style="clear:both;"></div>
<div class="brown_box" style="margin-bottom: 5px;">
<div class="inner_brown_box">
<div class="helptext">
<div class="helptitle">
<b>Important Information</b>
</div>
This entire website is getting a massive overhaul and this page will change.
If you need any help at all ask a staff member either on our <a href="https://discord.gg/43YPGND">Discord</a> or if you do not prefer Discord check out our <a href="https://forum.2009scape.org/">Forums</a>!
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container" style="clear:both;"></div>
</div>
<div class="container" style="clear:both;"></div>
<div class="brown_box" style="margin-bottom: 5px;"><div class="inner_brown_box">
<div class="helptext">
<div class="helptitle"><b>Important Information</b></div>
This entire website is getting a massive overhaul and this page will change. If you need any help at all ask a staff member either on our
<a href="https://discord.gg/43YPGND">Discord</a> or if you do not prefer discord check out our <a href="https://forum.2009scape.org/">Forums</a>!
</div>
</div></div>
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>
</div>

View File

@ -3,31 +3,20 @@ title: Play Now - Multiplayer
tags: game_guide
layout: guide
---
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Play Now - Multiplayer
</h1>
<div class="links">
<a href="#download">Download</a> |
<a href="#unofficial">Unofficial</a> |
<a href="#About">About</a> |
<a href="#tutorial_island">Tutorial Island</a> |
<a href="#starter_items">Starter Items</a> |
<a href="#money_making">Money Making</a> |
<a href="#fast_travel">Fast Traveling</a> |
<a href="#extra">Extra</a>
</div>
</div>
</div>
<div class="section">
<div class="article_theme_1">
<div class="article">
<div class="topshadow">
<div class="bottomborder">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottomleft">
<div class="bottomright">
<div class="links"><a href="#download">Download</a> | <a href="#unofficial">Unofficial</a> | <a href="#About">About</a> | <a href="#tutorial_island">Tutorial Island</a> | <a href="#starter_items">Starter Items</a> | <a href="#money_making">Money Making</a> | <a href="#fast_travel">Fast Traveling</a> | <a href="#extra">Extra</a></div>
<br/>
<a name="Download"></a><br class="clear"/>
<a name="Download"></a>
<br class="clear"/>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright" id="download">Download</span></span>
</div>
@ -36,24 +25,22 @@ Play Now - Multiplayer
<div style="display: flex; flex-direction: row; justify-content: center; align-content: space-around; align-items: center;">
<a href="https://flathub.org/apps/details/org._2009scape.Launcher">
<div style="flex: 1 1 0%; border-style: double; border-color: #ccc49e; border-radius: 0.5rem; padding: 2.5rem; margin: 0.3rem">
<svg data-icon="linux" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
<path fill="currentColor" d="M196.1 123.6c-.2-1.4 1.9-2.3 3.2-2.9 1.7-.7 3.9-1 5.5-.1.4.2.8.7.6 1.1-.4 1.2-2.4 1-3.5 1.6-1 .5-1.8 1.7-3 1.7-1 .1-2.7-.4-2.8-1.4zm24.7-.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm214.7 310.2c-.5 8.2-6.5 13.8-13.9 18.3-14.9 9-37.3 15.8-50.9 32.2l-2.6-2.2 2.6 2.2c-14.2 16.9-31.7 26.6-48.3 27.9-16.5 1.3-32-6.3-40.3-23v-.1c-1.1-2.1-1.9-4.4-2.5-6.7-21.5 1.2-40.2-5.3-55.1-4.1-22 1.2-35.8 6.5-48.3 6.6-4.8 10.6-14.3 17.6-25.9 20.2-16 3.7-36.1 0-55.9-10.4l1.6-3-1.6 3c-18.5-9.8-42-8.9-59.3-12.5-8.7-1.8-16.3-5-20.1-12.3-3.7-7.3-3-17.3 2.2-31.7 1.7-5.1.4-12.7-.8-20.8-.6-3.9-1.2-7.9-1.2-11.8 0-4.3.7-8.5 2.8-12.4 4.5-8.5 11.8-12.1 18.5-14.5 6.7-2.4 12.8-4 17-8.3 5.2-5.5 10.1-14.4 16.6-20.2-2.6-17.2.2-35.4 6.2-53.3 12.6-37.9 39.2-74.2 58.1-96.7 16.1-22.9 20.8-41.3 22.5-64.7C158 103.4 132.4-.2 234.8 0c80.9.1 76.3 85.4 75.8 131.3-.3 30.1 16.3 50.5 33.4 72 15.2 18 35.1 44.3 46.5 74.4 9.3 24.6 12.9 51.8 3.7 79.1 1.4.5 2.8 1.2 4.1 2 1.4.8 2.7 1.8 4 2.9 6.6 5.6 8.7 14.3 10.5 22.4 1.9 8.1 3.6 15.7 7.2 19.7 11.1 12.4 15.9 21.5 15.5 29.7zM220.8 109.1c3.6.9 8.9 2.4 13 4.4-2.1-12.2 4.5-23.5 11.8-23 8.9.3 13.9 15.5 9.1 27.3-.8 1.9-2.8 3.4-3.9 4.6 6.7 2.3 11 4.1 12.6 4.9 7.9-9.5 10.8-26.2 4.3-40.4-9.8-21.4-34.2-21.8-44 .4-3.2 7.2-3.9 14.9-2.9 21.8zm-46.2 18.8c7.8-5.7 6.9-4.7 5.9-5.5-8-6.9-6.6-27.4 1.8-28.1 6.3-.5 10.8 10.7 9.6 19.6 3.1-2.1 6.7-3.6 10.2-4.6 1.7-19.3-9-33.5-19.1-33.5-18.9 0-24 37.5-8.4 52.1zm-9.4 20.9c1.5 4.9 6.1 10.5 14.7 15.3 7.8 4.6 12 11.5 20 15 2.6 1.1 5.7 1.9 9.6 2.1 18.4 1.1 27.1-11.3 38.2-14.9 11.7-3.7 20.1-11 22.7-18.1 3.2-8.5-2.1-14.7-10.5-18.2-11.3-4.9-16.3-5.2-22.6-9.3-10.3-6.6-18.8-8.9-25.9-8.9-14.4 0-23.2 9.8-27.9 14.2-.5.5-7.9 5.9-14.1 10.5-4.2 3.3-5.6 7.4-4.2 12.3zm-33.5 252.8L112.1 366c-6.8-9.2-13.8-14.8-21.9-16-7.7-1.2-12.6 1.4-17.7 6.9-4.8 5.1-8.8 12.3-14.3 18-7.8 6.5-9.3 6.2-19.6 9.9-6.3 2.2-11.3 4.6-14.8 11.3-2.7 5-2.1 12.2-.9 20 1.2 7.9 3 16.3.6 23.9v.2c-5 13.7-5 21.7-2.6 26.4 7.9 15.4 46.6 6.1 76.5 21.9 31.4 16.4 72.6 17.1 75.3-18 2.1-20.5-31.5-49-41-68.9zm153.9 35.8c3.2-11 6.3-21.3 6.8-29 .8-15.2 1.6-28.7 4.4-39.9 3.1-12.6 9.3-23.1 21.4-27.3 2.3-21.1 18.7-21.1 38.3-12.5 18.9 8.5 26 16 22.8 26.1 1 0 2-.1 4.2 0 5.2-16.9-14.3-28-30.7-34.8 2.9-12 2.4-24.1-.4-35.7-6-25.3-22.6-47.8-35.2-59-2.3-.1-2.1 1.9 2.6 6.5 11.6 10.7 37.1 49.2 23.3 84.9-3.9-1-7.6-1.5-10.9-1.4-5.3-29.1-17.5-53.2-23.6-64.6-11.5-21.4-29.5-65.3-37.2-95.7-4.5 6.4-12.4 11.9-22.3 15-4.7 1.5-9.7 5.5-15.9 9-13.9 8-30 8.8-42.4-1.2-4.5-3.6-8-7.6-12.6-10.3-1.6-.9-5.1-3.3-6.2-4.1-2 37.8-27.3 85.3-39.3 112.7-8.3 19.7-13.2 40.8-13.8 61.5-21.8-29.1-5.9-66.3 2.6-82.4 9.5-17.6 11-22.5 8.7-20.8-8.6 14-22 36.3-27.2 59.2-2.7 11.9-3.2 24 .3 35.2 3.5 11.2 11.1 21.5 24.6 29.9 0 0 24.8 14.3 38.3 32.5 7.4 10 9.7 18.7 7.4 24.9-2.5 6.7-9.6 8.9-16.7 8.9 4.8 6 10.3 13 14.4 19.6 37.6 25.7 82.2 15.7 114.3-7.2zM415 408.5c-10-11.3-7.2-33.1-17.1-41.6-6.9-6-13.6-5.4-22.6-5.1-7.7 8.8-25.8 19.6-38.4 16.3-11.5-2.9-18-16.3-18.8-29.5-.3.2-.7.3-1 .5-7.1 3.9-11.1 10.8-13.7 21.1-2.5 10.2-3.4 23.5-4.2 38.7-.7 11.8-6.2 26.4-9.9 40.6-3.5 13.2-5.8 25.2-1.1 36.3 7.2 14.5 19.5 20.4 33.7 19.3 14.2-1.1 30.4-9.8 43.6-25.5 22-26.6 62.3-29.7 63.2-46.5.3-5.1-3.1-13-13.7-24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4 3.9-3.4 5.9-6.3 3.1-6.6-2.8-.3-2.6 2.6-6 5.1-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2-10.4 0-18.7-4.8-24.9-9.7-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z">
</path>
</svg><br><div style="width: 50px; display: flex; justify-content: center">Linux</div></div>
<img src="/assets/images/linux.svg" />
<br>
<div style="width: 50px; display: flex; justify-content: center">Linux</div>
</div>
</a>
<a href="https://gitlab.com/2009scape/Saradomin-Launcher/-/jobs/artifacts/master/raw/Saradomin/2009scape-launcher-sc.exe?job=pack_windows_sc">
<div style="flex: 1 1 0%; border-style: double; border-color: #ccc49e; border-radius: 0.5rem; padding: 2.5rem; margin: 0.3rem">
<svg data-icon="windows" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
<path fill="currentColor" d="M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z">
</path>
</svg><div style="width: 60px; display: flex; justify-content: center">Windows</div></div>
<img src="/assets/images/windows.svg" />
<div style="width: 60px; display: flex; justify-content: center">Windows</div>
</div>
</a>
<a href="https://gitlab.com/2009scape/Saradomin-Launcher/-/jobs/artifacts/master/download?job=pack_macos_sc">
<div style="flex: 1 1 0%; border-style: double; border-color: #ccc49e; border-radius: 0.5rem; padding: 2.5rem; margin: 0.3rem">
<svg data-icon="apple" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
<path fill="currentColor" d="M247.2 137.6c-6.2 1.9-15.3 3.5-27.9 4.6 1.1-56.7 29.9-96.6 88-110.1 9.3 41.6-26.1 94.1-60.1 105.5zm121.3 72.7c6.4-9.4 16.6-19.9 30.6-31.7-22.3-27.6-48.1-44.3-85.1-44.3-35.4 0-65.2 18.2-87 18.2-18.5 0-51.9-16.1-84.5-16.1-69.6 0-106.5 68.1-106.5 139C36 354.2 95.7 480 156.2 480c23.8 0 45.2-18 73.5-18 29.3 0 52.8 17.2 80.3 17.2 46 0 88.6-77.5 102-119.7-46.8-14.3-84.4-90.2-43.5-149.2z">
</path>
</svg><div style="width: 50px; display: flex; justify-content: center">MacOS</div></div>
<img src="/assets/images/macos.svg" />
<div style="width: 50px; display: flex; justify-content: center">MacOS</div>
</div>
</a>
</div>
@ -82,33 +69,30 @@ Play Now - Multiplayer
<a href="https://github.com/2009scape/2009Scape-mobile/releases">
<div
style="flex: 1 1 0%; border-style: double; border-color: #ccc49e; border-radius: 0.5rem; padding: 2.2rem; margin: 0.3rem">
<svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 576 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path fill="currentColor"
d="M420.55,301.93a24,24,0,1,1,24-24,24,24,0,0,1-24,24m-265.1,0a24,24,0,1,1,24-24,24,24,0,0,1-24,24m273.7-144.48,47.94-83a10,10,0,1,0-17.27-10h0l-48.54,84.07a301.25,301.25,0,0,0-246.56,0L116.18,64.45a10,10,0,1,0-17.27,10h0l47.94,83C64.53,202.22,8.24,285.55,0,384H576c-8.24-98.45-64.54-181.78-146.85-226.55" />
</svg>
<img src="/assets/images/android.svg" />
<div style="width: 40px; display: flex; justify-content: center">Android</div>
</div>
</a>
</div>
<div>
<p>Unofficial clients may require additional configuration. Please see the links on their pages, or get
support on the <a href="forum.2009scape.org">forums</a>.
<p>
Unofficial clients may require additional configuration.
Please see the links on their pages, or get support on the <a href="forum.2009scape.org">forums</a>.
</p>
</div>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright" id="About">About</span></span>
<span class="headertitleleft"><span class="headertitleright" id="About">About</span></span>
</div>
<br/>
<p>Welcome to 2009scape, where your memories of Runescape come to life. Unlike Oldschool Runescape, we keep true to the Gower brothers' vision of the game.</p>
<p>
We are a constant work in progress. The goal is content completion up until January 2009 (revision 530), with an expansion to December 2009 (revision 578) planned.
We encourage you to discuss any suspected bugs you find on the <a href="https://forum.2009scape.org/">forum.</a>
This project is working towards 100% completion and is currently a work in progress, you can read more on our <a href="./about2009scape.html">about page.</a>
Whilst we strive for authenticity, we have made a few quality-of-life (QoL) improvements along the way. We do not accept donations, or any form of financial contribution.
If you wish to contribute you can help maintain the wiki, <a href="https://forum.2009scape.org/viewtopic.php?t=35-2009scape-test-process" target="_blank">become a tester</a>, <a href="https://gitlab.com/2009scape/2009scape/-/issues" target="_blank">fix issues</a>, write new content or help us maintain our drop tables, item config, etc.
We are a constant work in progress. The goal is content completion up until January 2009 (revision 530), with an expansion to December 2009 (revision 578) planned.
We encourage you to discuss any suspected bugs you find on the <a href="https://forum.2009scape.org/">forum.</a>
This project is working towards 100% completion and is currently a work in progress, you can read more on our <a href="./about2009scape.html">about page.</a>
Whilst we strive for authenticity, we have made a few quality-of-life (QoL) improvements along the way. We do not accept donations, or any form of financial contribution.
If you wish to contribute you can help maintain the wiki, <a href="https://forum.2009scape.org/viewtopic.php?t=35-2009scape-test-process" target="_blank">become a tester</a>, <a href="https://gitlab.com/2009scape/2009scape/-/issues" target="_blank">fix issues</a>, write new content or help us maintain our drop tables, item config, etc.
</p>
<p>2009scape consists of three main components:</p>
<ul>
@ -118,93 +102,108 @@ If you wish to contribute you can help maintain the wiki, <a href="https://forum
</ul>
<p><b>You may request your live server save file at any time.</b></p>
<p>If you have any questions that are not answered here please ask on the forums.</p>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Tutorial Island</span></span>
<span class="headertitleleft"><span class="headertitleright">Tutorial Island</span></span>
</div>
<br/>
<p>As of April 2022, the famous tutorial island has been added to 2009scape. Once you have created your account, you will spawn at the start of tutorial island.
You can skip the tutorial by talking to Skippie. I know many of you have completed tutorial island so many times that you can't fathom the thought of doing it again.
But, I promise that you will not regret experiencing the island with those beautiful HD graphics! Do keep in mind that the default experience is x5, so if you're a skiller you will
want to skip the tutorial.
<p>
As of April 2022, the famous tutorial island has been added to 2009scape.
Once you have created your account, you will spawn at the start of tutorial island.
You can skip the tutorial by talking to Skippie.
I know many of you have completed tutorial island so many times that you can't fathom the thought of doing it again.
But, I promise that you will not regret experiencing the island with those beautiful HD graphics!
Do keep in mind that the default experience is x5, so if you're a skiller you will want to skip the tutorial.
</p>
<br>
<br>
<b>You will be given the option to set your XP rate and game mode at the end of the tutorial by speaking to the wizard.</b>
<br/><br/>
<p><b> Changing xp rates </b></p>
<br/>
<br/>
<p><b>Changing xp rates</b></p>
<ul>
<li> 1x Rate (authentic)</li>
<li> 2.5x Rate</li>
<li> 5x Rate (the default)</li>
<li> 10x Rate (exclusively for permadeath ironmen)</li>
<br>
<li>1x Rate (authentic)</li>
<li>2.5x Rate</li>
<li>5x Rate (the default)</li>
<li>10x Rate (exclusively for permadeath ironmen)</li>
</ul>
<p><b> Changing Ironman Modes </b></p>
<p><b>Changing Ironman Modes</b></p>
<p>As some of us have not played in over a decade. I will go into detail on each mode. </p>
<ul>
<li>Ironman Mode</li>
<p> This account mode is the basic of the three account types. Ironmen are unable to trade any other player so they are completely self-sufficient. They also can not use lootshare
<li>Ironman Mode</li>
<p> This account mode is the basic of the three account types. Ironmen are unable to trade any other player so they are completely self-sufficient. They also can not use lootshare
whatsoever which means they are still stuck collecting everything on their own. </p>
<li>Hardcore/Permadeath Ironman</li>
<p>Follows the restrictions of regular ironman mode, but the account will be reset upon death.</p>
<li>Ultimate Ironman</li>
<p>Like regular ironman mode, the only other difference is ultimate ironmen can not bank items. They can, however, note and unnote items by using them on bank booths.</p>
<li>Hardcore/Permadeath Ironman</li>
<p>Follows the restrictions of regular ironman mode, but the account will be reset upon death.</p>
<li>Ultimate Ironman</li>
<p>Like regular ironman mode, the only other difference is ultimate ironmen can not bank items. They can, however, note and unnote items by using them on bank booths.</p>
</ul>
<br/>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright" id="starter_items">Starter Items</span></span>
</div>
<br>
<b>Bronze Axe</b> - The bronze axe can be found in the chicken coup across the bridge of Lumbridge across from the cows. It is
sticking in a tree stump for you to grab. <br>
<b>Bronze Pickaxe</b> - The bronze pickaxe can be found by going up the ladder in the gate house in Lumbridge castle. It is located on the
third floor. <br>
<b>Tinderbox</b> - The tinderbox can be found in the Draynor Manor on the third floor near the professor you speak to during the
Ernest the chicken quest. ( can also be bought from the general store for a few coins ) <br>
<b>Fish Net</b> - The fish net can be found near the fishing tutor in Lumbridge swamp all over the ground. <br>
<b>Knife</b> - A knife can be found on top of the crate in the Lumbridge Castle kitchen basement or behind Bob's Axe Shop. <br>
<b>Iron Dagger</b> - While the bronze dagger is usually the staple of the tutorial island weapons, an iron one is even better. You can find an iron dagger in the Goblin house
across the bridge in Lumbridge.
<br>
<br>
<br>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright" id="money_making">Early Money</span></span>
</div>
<br/>
<div class="imgright">
<div class="topbord">
<div class="bottombord">
<div class="leftbord">
<div class="rightbord">
<div class="toplcorn">
<div class="toprcorn">
<div class="bottomlcorn">
<div class="bottomrcorn">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<p> In Runescape there were plenty of different ways to make money and I know it's a tad difficult hopping into the time machine and coming back to this era forgetting how in the worlds people made money.
Not to worry we have you covered with some basic money making methods that may later have full guides but for now a little glimpse into what 2009scape has to offer.
<br>
<br>
<b>Tip: The Bandit Camp's General store buys items for high alch value if you are unable to find players to trade or do not have the magic level</b>
<br>
<br>
</p>
<ul>
<p><b> Jobs </b> </p>
<img align="right" alt="Talk to Woodcutting Tutor" src="../2009scape-resources/img/game_guide/daily.webp" style="margin-left: 1%;"/>
<p align="left"> The job system is a unique system that Jagex created to get players to learn the ropes. The job system is pretty simple; you speak with a tutor,
and then you ask for a job. They give you a task to complete which features the beginning of the assigned skill. You are able to cancel a job by asking the tutor
for a new task.
<br>
<b>Bronze Axe</b> - The bronze axe can be found in the chicken coup across the bridge of Lumbridge across from the cows. It is
sticking in a tree stump for you to grab. <br>
<b>Bronze Pickaxe</b> - The bronze pickaxe can be found by going up the ladder in the gate house in Lumbridge castle. It is located on the
third floor. <br>
<b>Tinderbox</b> - The tinderbox can be found in the Draynor Manor on the third floor near the professor you speak to during the
Ernest the chicken quest. ( can also be bought from the general store for a few coins ) <br>
<b>Fish Net</b> - The fish net can be found near the fishing tutor in Lumbridge swamp all over the ground. <br>
<b>Knife</b> - A knife can be found on top of the crate in the Lumbridge Castle kitchen basement or behind Bob's Axe Shop. <br>
<b>Iron Dagger</b> - While the bronze dagger is usually the staple of the tutorial island weapons, an iron one is even better. You can find an iron dagger in the Goblin house
across the bridge in Lumbridge.
<br>
<br>
<br>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright" id="money_making">Early Money</span></span>
</div>
<br/>
<div class="imgright">
<div class="topbord">
<div class="bottombord">
<div class="leftbord">
<div class="rightbord">
<div class="toplcorn">
<div class="toprcorn">
<div class="bottomlcorn">
<div class="bottomrcorn">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<p>
In Runescape there were plenty of different ways to make money and I know it's a tad difficult hopping into the time machine and coming back to this era forgetting how in the worlds people made money.
Not to worry we have you covered with some basic money making methods that may later have full guides but for now a little glimpse into what 2009scape has to offer.
<br>
<br>
<b>Tip: The Bandit Camp's General store buys items for high alch value if you are unable to find players to trade or do not have the magic level</b>
<br>
<br>
</p>
<p><b>Jobs</b></p>
<img align="right" alt="Talk to Woodcutting Tutor" src="/site/2009scape-resources/img/game_guide/daily.webp" style="margin-left: 1%;"/>
<p align="left">
The job system is a unique system that Jagex created to get players to learn the ropes.
The job system is pretty simple; you speak with a tutor, and then you ask for a job.
They give you a task to complete which features the beginning of the assigned skill.
You are able to cancel a job by asking the tutor for a new task.
<br>
<br>
You can find a list of NPCs that give jobs:
@ -218,244 +217,232 @@ whatsoever which means they are still stuck collecting everything on their own.
⚔️ Mining Tutor <br>
⚔️ Prayer Tutor <br>
⚔️ Smelting Tutor <br>
</p>
<br/>
<p> <b> Pyramid Plunder </b></p>
<p> This sneaky thieving mini game can end up getting you a pretty penny when first starting. As it only requires 30 thieving to get started!
There are plenty of rewards to get form the mini game one being pharaoh's sceptre.
</p><table style="text-align: center;">
<tbody>
<tr class="row_a">
<td style="text-align: center; width: 100px; border-style: none;"> <br/> <b>Type</b> <br/><br/></td>
<td style="text-align: center; width: 100px; border-style: none;"> <br/> <b>Material</b> <br/><br/></td>
<td style="text-align: center; width: 200px; border-style: none;"> <br/> <b>Gold</b> <br/><br/></td>
</tr>
<tr class="row_b">
<td>Comb</td>
<td>Ivory</td>
<td>50gp</td>
</tr>
<tr class="row_a">
<td>Comb</td>
<td>Pottery</td>
<td>N/A</td>
</tr>
<tr class="row_b">
<td>Comb</td>
<td>Stone</td>
<td>N/A</td>
</tr>
<tr class="row_a">
<td>Comb</td>
<td>Gold</td>
<td>N/A</td>
</tr>
<tr class="row_b">
<td>Seal</td>
<td>Ivory</td>
<td>N/A</td>
</tr>
<tr class="row_a">
<td>Seal</td>
<td>Pottery</td>
<td>N/A</td>
</tr>
<tr class="row_b">
<td>Seal</td>
<td>Stone</td>
<td>150gp</td>
</tr>
<tr class="row_a">
<td>Seal</td>
<td>Gold</td>
<td>750gp</td>
</tr>
<tr class="row_b">
<td>Scarab</td>
<td>Ivory</td>
<td>N/A</td>
</tr>
<tr class="row_a">
<td>Scarab</td>
<td>Pottery</td>
<td>75gp</td>
</tr>
<tr class="row_b">
<td>Scarab</td>
<td>Stone</td>
<td>175gp</td>
</tr>
<tr class="row_a">
<td>Scarab</td>
<td>Gold</td>
<td>1k</td>
</tr>
<tr class="row_b">
<td>Statuette</td>
<td>Ivory</td>
<td>N/A</td>
</tr>
<tr class="row_a">
<td>Statuette</td>
<td>Pottery</td>
<td>100gp</td>
</tr>
<tr class="row_b">
<td>Statuette</td>
<td>Stone</td>
<td>200gp</td>
</tr>
<tr class="row_a">
<td>Statuette</td>
<td>Gold</td>
<td>1,250gp</td>
</tr>
</tbody>
<p><b>Pyramid Plunder</b></p>
<p>
This sneaky thieving mini game can end up getting you a pretty penny when first starting.
As it only requires 30 thieving to get started!
There are plenty of rewards to get form the mini game one being pharaoh's sceptre.
</p>
<table style="text-align: center;">
<tbody>
<tr class="row_a">
<td style="text-align: center; width: 100px; border-style: none;"> <br/> <b>Type</b> <br/><br/></td>
<td style="text-align: center; width: 100px; border-style: none;"> <br/> <b>Material</b> <br/><br/></td>
<td style="text-align: center; width: 200px; border-style: none;"> <br/> <b>Gold</b> <br/><br/></td>
</tr>
<tr class="row_b">
<td>Comb</td>
<td>Ivory</td>
<td>50gp</td>
</tr>
<tr class="row_a">
<td>Comb</td>
<td>Pottery</td>
<td>N/A</td>
</tr>
<tr class="row_b">
<td>Comb</td>
<td>Stone</td>
<td>N/A</td>
</tr>
<tr class="row_a">
<td>Comb</td>
<td>Gold</td>
<td>N/A</td>
</tr>
<tr class="row_b">
<td>Seal</td>
<td>Ivory</td>
<td>N/A</td>
</tr>
<tr class="row_a">
<td>Seal</td>
<td>Pottery</td>
<td>N/A</td>
</tr>
<tr class="row_b">
<td>Seal</td>
<td>Stone</td>
<td>150gp</td>
</tr>
<tr class="row_a">
<td>Seal</td>
<td>Gold</td>
<td>750gp</td>
</tr>
<tr class="row_b">
<td>Scarab</td>
<td>Ivory</td>
<td>N/A</td>
</tr>
<tr class="row_a">
<td>Scarab</td>
<td>Pottery</td>
<td>75gp</td>
</tr>
<tr class="row_b">
<td>Scarab</td>
<td>Stone</td>
<td>175gp</td>
</tr>
<tr class="row_a">
<td>Scarab</td>
<td>Gold</td>
<td>1k</td>
</tr>
<tr class="row_b">
<td>Statuette</td>
<td>Ivory</td>
<td>N/A</td>
</tr>
<tr class="row_a">
<td>Statuette</td>
<td>Pottery</td>
<td>100gp</td>
</tr>
<tr class="row_b">
<td>Statuette</td>
<td>Stone</td>
<td>200gp</td>
</tr>
<tr class="row_a">
<td>Statuette</td>
<td>Gold</td>
<td>1,250gp</td>
</tr>
</tbody>
</table>
<br/>
<br/>
<p> <b> Agility Pyramid </b></p>
<p> You will need a way to make sure you don't die of the desert heat and a minimum of 30 agility to get started.
The pyramid is straight-forward and when you bring Simon the pyramid top he will give you 10k each.
<br/>
<br/>
<b> Make sure you bring waterskins</b>
<br/>
<p><b>Agility Pyramid</b></p>
<p>
You will need a way to make sure you don't die of the desert heat and a minimum of 30 agility to get started.
The pyramid is straight-forward and when you bring Simon the pyramid top he will give you 10k each.
<br/>
<br/>
<b>Make sure you bring waterskins</b>
<br/>
</p>
<p> <b> Stronghold of Security </b></p>
<p> Make your way over to the stronghold of security underneath the Barbarian village. Make your way through the mazes answering the player safety questions.
Once you have made it through the maze there is a free 10k and some colorful/fighting boots.
<p><b>Stronghold of Security</b></p>
<p>
Make your way over to the stronghold of security underneath the Barbarian village.
Make your way through the mazes answering the player safety questions.
Once you have made it through the maze there is a free 10k and some colorful/fighting boots.
</p>
<br/>
<a name="fast_travel"></a><br class="clear"/>
<a name="fast_travel"></a>
<br class="clear"/>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Fast Traveling</span></span>
<span class="headertitleleft"><span class="headertitleright">Fast Traveling</span></span>
</div>
<br/>
<p><b> Gnome Gliders </b></p>
<p> One of the biggest obstacles of Runescape in 2009, was attempting to go over the white wolf mountain or you could
walk all the way to edgeville pull the wilderness lever, pull it again and end up in Ardy. Tree gnome stronghold is not
implemented in the game yet so we consider the glider free game for those who want to use it. You have several locations
you can teleport to right away.
<p><b>Gnome Gliders</b></p>
<p>
One of the biggest obstacles of Runescape in 2009, was attempting to go over the white wolf mountain or you could walk all the way to edgeville pull the wilderness lever, pull it again and end up in Ardy.
Tree gnome stronghold is not implemented in the game yet so we consider the glider free game for those who want to use it.
You have several locations you can teleport to right away.
</p>
<br/>
<img src="/site/2009scape-resources/img/game_guide/glider_transport.webp" alt="Glider transport interface"/>
<br/>
<p><img src="../2009scape-resources/img/game_guide/glider_transport.webp" alt="Glider transport interface"/></p>
<p><b>Spirit Trees</b></p>
<p>Just like the Gnome Gliders, you may travel from any spirit tree directly to any other Spirit Tree in the game, but first, you must complete the Tree Gnome Village Quest to gain access.</p>
<img src="/site/2009scape-resources/img/game_guide/tree_transport.webp" alt="Spirit tree options interface"/>
<br/>
<p><b>Canoes</b></p>
<p>The travel method a lot of people forget about are the canoes!<br/></p>
<br/>
<p><b> Spirit Trees </b></p>
<p> Just like the Gnome Gliders, you may travel from any spirit tree directly to any other Spirit Tree in the game, but first, you must complete the Tree Gnome Village Quest to gain access.
</p>
<p><img src="../2009scape-resources/img/game_guide/tree_transport.webp" alt="Spirit tree options interface"/></p>
<br/>
<p><b> Canoes </b></p>
<p> The travel method a lot of people forget about are the canoes! <br/></p>
<br/>
<p><img src="../2009scape-resources/img/game_guide/canoe_system.webp" alt="Lumbridge canoe station"/></p>
<p><b> Fairy Rings </b></p>
<p> I won't be going into super detail of where the fairy rings teleport you to, but I will say that
in 2009scape due to Fairy tale quest not being added, the fairy rings are locked behind only the lost city quest.
</p>
<img src="/site/2009scape-resources/img/game_guide/canoe_system.webp" alt="Lumbridge canoe station"/>
<p><b>Fairy Rings</b></p>
<p>I won't be going into super detail of where the fairy rings teleport you to, but I will say that in 2009scape due to Fairy tale quest not being added, the fairy rings are locked behind only the lost city quest.</p>
<br/>
<a name="extra"></a><br class="clear"/>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Extra</span></span>
<span class="headertitleleft"><span class="headertitleright">Extra</span></span>
</div>
<p><b> Quests </b> </p>
<p><img src="../2009scape-resources/img/game_guide/quest_example.webp" alt="Example quest All Fired Up journal open"/></p>
<p> One major thing that most people on the server forget when starting the server is that quests exist in the game.
While most rsps do not really have quests this is a remake of the year 2009 so the plan is to add all the quests eventually
in the game. As pointed out earlier on this page is that when a quest is not implemented you can use some of the travel methods
without needing to complete the quest. You can find all the quests inside the website under quest help.
The quest cape works as well. Once a new quest is added you will no longer be able to wear the cape until that quest is completed.
<p><b>Quests</b> </p>
<img src="/site/2009scape-resources/img/game_guide/quest_example.webp" alt="Example quest All Fired Up journal open"/>
<p>
One major thing that most people on the server forget when starting the server is that quests exist in the game.
While most RSPS do not really have quests this is a remake of the year 2009 so the plan is to add all the quests eventually in the game.
As pointed out earlier on this page is that when a quest is not implemented you can use some of the travel methods without needing to complete the quest.
You can find all the quests inside the website under quest help.
The quest cape works as well.
Once a new quest is added you will no longer be able to wear the cape until that quest is completed.
</p>
<br/>
<p> <b> Diaries </b></p>
<p><img src="../2009scape-resources/img/game_guide/diary_menu.webp" alt="Achievement diary panel"/></p>
<p> Recently we had an update that added the Diaries to the game! There is now certain content locked
behind these achievements. With methods of fast traveling completing the Lumbridge/Draynor diaries can land you an explorer
ring which teleports you to the farming patches! There are plenty of other perks of completing the diaries! So click the little
green star in your quests tab to check them out!
<p><b>Diaries</b></p>
<img src="/site/2009scape-resources/img/game_guide/diary_menu.webp" alt="Achievement diary panel"/>
<p>
Recently we had an update that added the Diaries to the game!
There is now certain content locked behind these achievements.
With methods of fast traveling completing the Lumbridge/Draynor diaries can land you an explorer ring which teleports you to the farming patches!
There are plenty of other perks of completing the diaries!
So click the little green star in your quests tab to check them out!
</p>
<br/>
<p> <b> Dailies </b></p>
<p><img src="../2009scape-resources/img/game_guide/daily_example.webp" alt="Example daily task"/></p>
<p> With a new system for Dailies being added the dailyscape grind has come to 09. Do not worry, this will not consume your entire gameplay experience
since there is plenty of stuff to do inside of the game. Just to name a few dailies there are shooting stars, penguin hide n seek, and
things like battlestaves being in stock. There will be guides soon on our local <a href="https://cdn.2009scape.org/wiki/doku.php?id=start">Wiki</a>.
<p><b>Dailies</b></p>
<img src="/site/2009scape-resources/img/game_guide/daily_example.webp" alt="Example daily task"/>
<p>
With a new system for Dailies being added the dailyscape grind has come to 09.
Do not worry, this will not consume your entire gameplay experience since there is plenty of stuff to do inside of the game.
Just to name a few dailies there are shooting stars, penguin hide n seek, and things like battlestaves being in stock.
There will be guides soon on our local <a href="https://cdn.2009scape.org/wiki/doku.php?id=start">Wiki</a>.
</p>
<br/>
<p> <b> Slayer Rerolls </b></p>
<p><img src="../2009scape-resources/img/game_guide/re_roll.webp" alt="Slayer master offering task reroll"/></p>
<p> Being a Community we are always voting in Quality of life updates that help players releive a partial bit of the tedious unnecessary grind of their
game play experience. In 2009scape, we have allowed as long as you are within the dialogue to reroll the slayer task. If you click out
the game has noted that you had accepted the slayer task.
<p><b>Slayer Rerolls</b></p>
<img src="/site/2009scape-resources/img/game_guide/re_roll.webp" alt="Slayer master offering task reroll"/>
<p>
Being a community we are always voting in Quality of life updates that help players releive a partial bit of the tedious unnecessary grind of their game play experience.
In 2009scape, we have allowed as long as you are within the dialogue to reroll the slayer task.
If you click out the game has noted that you had accepted the slayer task.
</p>
<br/>
<br/>
<p>Let us know on the forums if you have any suggestions for this guide and make sure you check out our wiki for quest guides and more.
</p>
<p>Let us know on the forums if you have any suggestions for this guide and make sure you check out our wiki for quest guides and more.</p>
<br/>
<div class="backtotop"><a href="#top">Back to the top</a></div>
<br/>
<center><img alt="" src="../img/main/kbase/hr.webp"/></center>
<center><img alt="" src="/site/img/main/kbase/hr.webp"/></center>
<table class="bottomlinks">
<tr>
</tr>
<tr>
<td class="bot"><p></p><div class="bold">More articles in
<a href="./manual.html">Game Guide</a>
</div>
<ul class="bold">
<li> <b>How do I get started?</b></li>
<li> <a href="about2009scape.html">About Page</a></li>
<li><a href="./controls.html">Controls</a></li>
<li><a href="./credits.html">Credit System</a></li>
<li><a href="./the_commands.html">The Commands</a></li>
<li><a href="./skill_cape_perks.html">Skill Cape Perks</a></li>
</ul>
</td>
</tr>
<tr>
<td colspan="2">
</td>
</tr>
<tr>
</tr>
<tr>
<td class="bot"><p></p>
<div class="bold">More articles in <a href="./manual.html">Game Guide</a></div>
<ul class="bold">
<li><b>How do I get started?</b></li>
<li><a href="./about2009scape.html">About Page</a></li>
<li><a href="./controls.html">Controls</a></li>
<li><a href="./credits.html">Credit System</a></li>
<li><a href="./the_commands.html">The Commands</a></li>
<li><a href="./skill_cape_perks.html">Skill Cape Perks</a></li>
</ul>
</td>
</tr>
<tr>
<td colspan="2">
</td>
</tr>
</table>
</ul></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="search">
<div class="searchtop">
<div class="bottombordershad">
<div class="leftshadow">
<div class="rightshadow">
<div class="topleft">
<div class="topright">
<div class="bottomleftshad">
<div class="bottomrightshad">
<div class="searchtext">
<p style="text-align: center;font-size:11px;font-weight:bold; margin-bottom: 0px;"><img src="/site/img/2009img/main/kbase/redpartyhat.webp" alt="Cute Red Partyhat icon"/></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>

View File

@ -1,197 +0,0 @@
---
title: Singleplayer
tags: game_guide
layout: guide
---
<div id="content">
<div id="rule">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque_medium">
Singleplayer
</h1>
</div>
</div>
<div class="section">
<div class="article_theme_1">
<div class="article">
<div class="topshadow">
<div class="bottomborder">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottomleft">
<div class="bottomright">
<br />
<br />
<br />
<br />
<br />
<h3>Our Multiplayer Promise</h3>
<!-- I discuss the bits of our promise here. -->
<p>2009scape operates a live server so that players can come together as a community and
enjoy the game with eachother. Should there be any scenario in which we are forced to shut
down the live server, we <b>promise</b> that all player saves will be released to the
public alongside a fresh
build of singleplayer.
<br />
<br />
We here on the 2009scape staff firmly believe that each player's
save is
their own individual property, and we will gladly provide anyone's save at their request.
Even banned players can ask for their save, and we will happily provide (but we will not
import singleplayer saves to the official multiplayer server)
</p>
<br>
<br>
<h3>Singleplayer Guide</h3>
<ol>
<li>Download the <a href="./play.html">Saradomin Launcher</a></li>
<li>Click the Singleplayer tab</li>
<li>Click "Download Singleplayer" on the right-hand side</li>
<li>After Singleplayer finishes downloading, the "Start Singleplayer" button will be
available. Click "Start Singleplayer"</li>
<li>Be patient! You're loading the whole world of RuneScape. It takes time!</li>
<li>When everything is loaded, a client will appear. No need to register for Singleplayer
- Simply enter whatever login credentials you want!</li>
</ol>
<br />
<h3>Notes</h3>
<ul>
<li>First launch will take a bit longer because the database will have to be properly
configured.</li>
<li>If you change internal server configuration and things suddenly start to be wonky -
that's on you. The release is meant to be enjoyed as-is and any modifications to the
server configuration files are your own.</li>
<li><b>Make sure that you create back ups of your player save to avoid any issues with
your save. As a singleplayer member you are responsible for your player backups.</b>
</li>
</ul>
<br />
<br />
<b> Frequently Asked Questions </b>
<br />
<hr style=" color: #ded4ba; background-color: #ded4ba; height: 1px; border: none; " />
<br />
<img align="left" src="../2009scape-resources/img/icons/misc-faq.webp"
style="margin: 5px 25px 0px 0px;" />
<h3 style="color:#675F39; font-size: 12px;"> Is there a way to make a friend join the
Singleplayer version? </h3>
<p>
Yes, but it's difficult and
there's no guide for it. If you want to play with friends or family, we encourage the live
server - The other players don't bite! Here's an example <a
href="https://forum.2009scape.org/viewtopic.php?t=77-singleplayer-connecting-over-lan">forum
post
</a> of a user getting singleplayer with friends working.
</p>
<br />
<hr style=" color: #ded4ba; background-color: #ded4ba; height: 1px; border: none; " />
<img align="left" src="../2009scape-resources/img/icons/misc-faq.webp"
style="margin: 5px 25px 0px 0px;" />
<h3 style="color:#675F39; font-size: 12px;"> Why do I see other players? </h3>
<p> There are playerbots that run around to keep the world populated. They can be disabled
by toggling "<code>Fake Players</code>"
</p>
<br />
<hr style=" color: #ded4ba; background-color: #ded4ba; height: 1px; border: none; " />
<img align="left" src="../2009scape-resources/img/icons/misc-faq.webp"
style="margin: 5px 25px 0px 0px;" />
<h3 style="color:#675F39; font-size: 12px;"> Why do you keep pushing multiplayer so much?
</h3>
<p> Because we want to play with you!
</p>
<br />
<hr style=" color: #ded4ba; background-color: #ded4ba; height: 1px; border: none; " />
<img align="left" src="../2009scape-resources/img/icons/misc-faq.webp"
style="margin: 5px 25px 0px 0px;" />
<h3 style="color:#675F39; font-size: 12px;"> Is there a point of the GE? </h3>
<p> Yes, server sided bots such a adventure bots still collect resources and sell to your
ge.
</p>
<br />
<hr style=" color: #ded4ba; background-color: #ded4ba; height: 1px; border: none; " />
<img align="left" src="../2009scape-resources/img/icons/misc-faq.webp"
style="margin: 5px 25px 0px 0px;" />
<h3 style="color:#675F39; font-size: 12px;"> Can I still play minigames? </h3>
<p> Of course, majority of the minigames do not require other players to play in the first
place. We do have special pest control bots,
that will play pest control with you on the easy and intermediate boats. With that said,
you can get your very own set of void armour!
</p>
<br />
<hr style=" color: #ded4ba; background-color: #ded4ba; height: 1px; border: none; " />
<img align="left" src="../2009scape-resources/img/icons/misc-faq.webp"
style="margin: 5px 25px 0px 0px;" />
<h3 style="color:#675F39; font-size: 12px;"> How do I get the PvP and wilderness bots in
Server/plugin/ai to work? </h3>
<p> No, but don't worry, the revenants are more than enough of a threat for your wildy.</p>
<br />
</p>
<hr style=" color: #ded4ba; background-color: #ded4ba; height: 1px; border: none; " />
<img align="left" src="../2009scape-resources/img/icons/misc-faq.webp"
style="margin: 5px 25px 0px 0px;" />
<h3 style="color:#675F39; font-size: 12px;">Can I cheat?</h3>
<p> Enable the "<code>Cheats</code>" option and run <code>::commands</code> to see the list
of commands you can use.
</p>
<br />
</p>
<hr style=" color: #ded4ba; background-color: #ded4ba; height: 1px; border: none; " />
<img align="left" src="../2009scape-resources/img/icons/misc-faq.webp"
style="margin: 5px 25px 0px 0px;" />
<h3 style="color:#675F39; font-size: 12px;">How can I modify NPC spawns/Item
stats/Shops/etc?</h3>
<p> Any modification is possible via the code (see: <a
href="https://gitlab.com/2009scape/2009scape">Setting up the development
environment</a>), however some stuff can be modified in the
<code>2009scape/singleplayer/game/data/configs</code> folder. Important note: This is
not officially supported.
</p>
<br />
<br />
Missing an answer? Ask on the <a
href="https://forum.2009scape.org/viewforum.php?f=8-support">forums</a>
<br />
<br />
<br />
<br />
<br />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br class="clear" />
</div>

View File

@ -0,0 +1,102 @@
---
title: Singleplayer
tags: game_guide
layout: guide
---
### Our Multiplayer Promise
2009scape operates a live server so that players can come together as a community and enjoy the game with eachother.
Should there be any scenario in which we are forced to shut down the live server, we **promise** that all player saves will be released to the public alongside a fresh build of singleplayer.
We here on the 2009scape staff firmly believe that each player's save is their own individual property, and we will gladly provide anyone's save at their request.
Even banned players can ask for their save, and we will happily provide (but we will not import singleplayer saves to the official multiplayer server).
### Singleplayer Guide
1. Download the [Saradomin Launcher](./play.html)
2. Click the Singleplayer tab<
3. Click "Download Singleplayer" on the right-hand side
4. After Singleplayer finishes downloading, the "Start Singleplayer" button will be available. Click "Start Singleplayer"
5. Be patient! You're loading the whole world of RuneScape. It takes time!
6. When everything is loaded, a client will appear. No need to register for Singleplayer
- Simply enter whatever login credentials you want!
### Notes
- First launch will take a bit longer because the database will have to be properly configured.
- If you change internal server configuration and things suddenly start to be wonky - that's on you. The release is meant to be enjoyed as-is and any modifications to the server configuration files are your own.
- **Make sure that you create back ups of your player save to avoid any issues with your save. As a singleplayer member you are responsible for your player backups.**
**Frequently Asked Questions**
---
<img align="left" src="/site/2009scape-resources/img/icons/misc-faq.webp" style="margin: 5px 25px 0px 0px;" />
<h3 style="color:#675F39; font-size: 12px;">Is there a way to make a friend join the Singleplayer version?</h3>
Yes, but it's difficult and there's no guide for it.
If you want to play with friends or family, we encourage the live server - The other players don't bite!
Here's an example [forum post](https://forum.2009scape.org/viewtopic.php?t=77-singleplayer-connecting-over-lan) of a user getting singleplayer with friends working.
<br />
---
<img align="left" src="/site/2009scape-resources/img/icons/misc-faq.webp" style="margin: 5px 25px 0px 0px;" />
<h3 style="color:#675F39; font-size: 12px;">Why do I see other players?</h3>
There are playerbots that run around to keep the world populated.
They can be disabled by toggling "`Fake Players`"
<br />
---
<img align="left" src="/site/2009scape-resources/img/icons/misc-faq.webp" style="margin: 5px 25px 0px 0px;" />
<h3 style="color:#675F39; font-size: 12px;">Why do you keep pushing multiplayer so much?</h3>
Because we want to play with you!
<br />
---
<img align="left" src="/site/2009scape-resources/img/icons/misc-faq.webp" style="margin: 5px 25px 0px 0px;" />
<h3 style="color:#675F39; font-size: 12px;">Is there a point of the GE?</h3>
Yes, server sided bots such a adventure bots still collect resources and sell to your ge.
<br />
---
<img align="left" src="/site/2009scape-resources/img/icons/misc-faq.webp" style="margin: 5px 25px 0px 0px;" />
<h3 style="color:#675F39; font-size: 12px;">Can I still play minigames?</h3>
Of course, majority of the minigames do not require other players to play in the first place.
We do have special Pest Control bots, that will play Pest Control with you on the easy and intermediate boats.
With that said, you can get your very own set of void armour!
<br />
---
<img align="left" src="/site/2009scape-resources/img/icons/misc-faq.webp" style="margin: 5px 25px 0px 0px;" />
<h3 style="color:#675F39; font-size: 12px;">How do I get the PvP and wilderness bots in Server/plugin/ai to work?</h3>
You can't. But don't worry, the revenants are more than enough of a threat for your wildy.
<br />
---
<img align="left" src="/site/2009scape-resources/img/icons/misc-faq.webp" style="margin: 5px 25px 0px 0px;" />
<h3 style="color:#675F39; font-size: 12px;">Can I cheat?</h3>
Enable the "`Cheats`" option and run `::commands` to see the list of commands you can use.
<br />
---
<img align="left" src="/site/2009scape-resources/img/icons/misc-faq.webp" style="margin: 5px 25px 0px 0px;" />
<h3 style="color:#675F39; font-size: 12px;">How can I modify NPC spawns/Item stats/Shops/etc?</h3>
Any modification is possible via the code (see: [Setting up the development environment](https://gitlab.com/2009scape/2009scape)), however some stuff can be modified in the `2009scape/singleplayer/game/data/configs` folder.
Important note: This is not officially supported.
Missing an answer? Ask on the [forums](https://forum.2009scape.org/viewforum.php?f=8-support).

View File

@ -3,202 +3,133 @@ title: Skill cape perks
tags: game_guide
layout: guide
---
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Skill Cape Perks
</h1>
</div>
</div>
</div>
<div class="section">
<div class="article_theme_1">
<div class="article">
<div class="topshadow">
<div class="bottomborder">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottomleft">
<div class="bottomright">
<div class="links"> </div>
<br class="clear"/>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Exclusive to Legacy only</span></span>
</div><br/>
<span class="headertitleleft"><span class="headertitleright">Exclusive to Legacy only</span></span>
</div>
<br/>
<table>
<tr>
<td>Attack Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/attackcape.webp" width="50"/></td>
<td>Your mastery of weapons allows you to almost always land a hit. When your attack level is taken into account to determine hit chance, 6 levels are added to it automatically, making your effective attack level 105. Stacks with potions and other effects.</td>
</tr>
<tr>
<td>Defence Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/defencecape.webp" width="50"/></td>
<td>Your mastery of the defencive arts makes you an expert with shields. Shields have 20% higher defence bonuses while wearing the cape.</td>
</tr>
<tr>
<td>Strength Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/strengthcape.webp" width="50"/></td>
<td>The weapons made for you are really made for you. Weapons with strength requirements (halberds, granite maul, tzhaar-ket-om, torag's hammers and dharok's axe) have 20% higher strength bonuses while wearing the cape. </td>
</tr>
<tr>
<td>Hitpoints Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/hpskillcape.webp" width="50"/></td>
<td>Your constitution and willpower are so great that your max hitpoints increase to 110 while wearing the hitpoints skillcape.</td>
</tr>
<tr>
<td>Ranged Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/rangedcape.webp" width="50"/></td>
<td>You are finely attuned to the arsenal of ranged weaponry. Ranged weaponry (excluding thrown weapons) have higher accuracy.</td>
</tr>
<tr>
<td>Magic Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/magiccape.webp" width="50"/></td>
<td>You have an in-depth knowledge of all the different books of magic. This perk allows you to swap your spellbook twice per day.</td>
</tr>
<tr>
<td>Prayer Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/prayercape.webp" width="50"/></td>
<td>Due to your close affinity with the divine, each tick where prayer points would be drained while using a prayer you have a 10% chance to not lose prayer points that tick.</td>
</tr>
<tr>
<td>Slayer Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/slayercape.webp" width="50"/></td>
<td>Your experience with slayer equipment has allowed you to use the Slayer Helm on your Slayer Cape to combine the two, granting your Slayer Cape the abilities of the Slayer Helm. Unfortunately, this process also reduces the stats of the Helm's power.'</td>
</tr>
<tr>
<td>Summoning Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/summoningcape.webp" width="50"/></td>
<td>Not Implemented yet.</td>
</tr>
<tr>
<td>Runecrafting Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/runecraftingcape.webp" width="50"/></td>
<td>Your knowledge of the Runecrafting abyss and the altars makes you an expert at manipulating spacetime to arrive at an altar of choice. Can operate the cape to teleport to a runecrafting altar of your choice 3 times a day.</td>
</tr>
<tr>
<td>Construction Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/constructioncape.webp" width="50"/></td>
<td>Not Implemented yet.</td>
</tr>
<tr>
<td>Agility Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/agilitycape.webp" width="50"/></td>
<td>With your body in peak physical condition, while wearing your cape your run energy drains 25% slower.</td>
</tr>
<tr>
<td>Herblore Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/herblorecape.webp" width="50"/></td>
<td>When making potions, you have a 15% chance to make a 4-dose rather than a 3-dose due to your ability to make the most of your ingredients.</td>
</tr>
<tr>
<td>Crafting Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/craftingcape.webp" width="50"/></td>
<td>Not Implemented yet.</td>
</tr>
<tr>
<td>Thieving Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/theivingcape.webp" width="50"/></td>
<td>Your expertise with pickpocketing makes you much harder to detect. 25% lower chance to fail a pickpocket.</td>
</tr>
<tr>
<td>Fletching Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/fletchingcape.webp" width="50"/></td>
<td>Not Implemented yet.</td>
</tr>
<tr>
<td>Hunter Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/huntercape.webp" width="50"/></td>
<td>Not Implemented yet.</td>
</tr>
<tr>
<td>Mining Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/miningcape.webp" width="50"/></td>
<td>Your mastery of mining has brought you a great familiarity with the grain of rocks. It becomes slightly faster to mine any ore.</td>
</tr>
<tr>
<td>Smithing Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/smithingcape.webp" width="50"/></td>
<td>Due to your absolute mastery with working metal, smithing no longer requires a hammer. Unlimited uses.</td>
</tr>
<tr>
<td>Fishing Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/fishingcape.webp" width="50"/></td>
<td>Your skill with the harpoon makes you really great at timing your throws. 5% chance to catch two fish at once when harpoon fishing. Does not award additional xp for the second fish.</td>
</tr>
<tr>
<td>Cooking Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/cookingcape.webp" width="50"/></td>
<td>You've mastered the culinary arts and have gotten wise enough to speed up your cooking, but you've gotten a bit careless - with a flame too high, you'll burn food slightly more often.</td>
</tr>
<tr>
<td>Firemaking Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/firemakingcape.webp" width="50"/></td>
<td>The firemaking skillcape constantly emits a warm glow, making it function as a light source.</td>
</tr>
<tr>
<td>Woodcutting Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/woodcuttingcape.webp" width="50"/></td>
<td>You almost have a sixth sense when it comes to finding birds' nests. Nests are automatically collected into your inventory if you have space when dropped from a tree while woodcutting.</td>
</tr>
<tr>
<td>Farming Cape</td>
<td><img height="80" src="../2009scape-resources/img/game_guide/skill_capes/farmingcape.webp" width="50"/></td>
<td>Your farming cape seems to get a lot of seeds stuck to it. Operate once per day to claim 10 completely random seeds.</td>
</tr>
<tr>
<td>Attack Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/attackcape.webp" width="50"/></td>
<td>Your mastery of weapons allows you to almost always land a hit. When your attack level is taken into account to determine hit chance, 6 levels are added to it automatically, making your effective attack level 105. Stacks with potions and other effects.</td>
</tr>
<tr>
<td>Defence Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/defencecape.webp" width="50"/></td>
<td>Your mastery of the defencive arts makes you an expert with shields. Shields have 20% higher defence bonuses while wearing the cape.</td>
</tr>
<tr>
<td>Strength Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/strengthcape.webp" width="50"/></td>
<td>The weapons made for you are really made for you. Weapons with strength requirements (halberds, granite maul, tzhaar-ket-om, torag's hammers and dharok's axe) have 20% higher strength bonuses while wearing the cape. </td>
</tr>
<tr>
<td>Hitpoints Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/hpskillcape.webp" width="50"/></td>
<td>Your constitution and willpower are so great that your max hitpoints increase to 110 while wearing the hitpoints skillcape.</td>
</tr>
<tr>
<td>Ranged Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/rangedcape.webp" width="50"/></td>
<td>You are finely attuned to the arsenal of ranged weaponry. Ranged weaponry (excluding thrown weapons) have higher accuracy.</td>
</tr>
<tr>
<td>Magic Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/magiccape.webp" width="50"/></td>
<td>You have an in-depth knowledge of all the different books of magic. This perk allows you to swap your spellbook twice per day.</td>
</tr>
<tr>
<td>Prayer Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/prayercape.webp" width="50"/></td>
<td>Due to your close affinity with the divine, each tick where prayer points would be drained while using a prayer you have a 10% chance to not lose prayer points that tick.</td>
</tr>
<tr>
<td>Slayer Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/slayercape.webp" width="50"/></td>
<td>Your experience with slayer equipment has allowed you to use the Slayer Helm on your Slayer Cape to combine the two, granting your Slayer Cape the abilities of the Slayer Helm. Unfortunately, this process also reduces the stats of the Helm's power.'</td>
</tr>
<tr>
<td>Summoning Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/summoningcape.webp" width="50"/></td>
<td>Not Implemented yet.</td>
</tr>
<tr>
<td>Runecrafting Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/runecraftingcape.webp" width="50"/></td>
<td>Your knowledge of the Runecrafting abyss and the altars makes you an expert at manipulating spacetime to arrive at an altar of choice. Can operate the cape to teleport to a runecrafting altar of your choice 3 times a day.</td>
</tr>
<tr>
<td>Construction Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/constructioncape.webp" width="50"/></td>
<td>Not Implemented yet.</td>
</tr>
<tr>
<td>Agility Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/agilitycape.webp" width="50"/></td>
<td>With your body in peak physical condition, while wearing your cape your run energy drains 25% slower.</td>
</tr>
<tr>
<td>Herblore Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/herblorecape.webp" width="50"/></td>
<td>When making potions, you have a 15% chance to make a 4-dose rather than a 3-dose due to your ability to make the most of your ingredients.</td>
</tr>
<tr>
<td>Crafting Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/craftingcape.webp" width="50"/></td>
<td>Not Implemented yet.</td>
</tr>
<tr>
<td>Thieving Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/theivingcape.webp" width="50"/></td>
<td>Your expertise with pickpocketing makes you much harder to detect. 25% lower chance to fail a pickpocket.</td>
</tr>
<tr>
<td>Fletching Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/fletchingcape.webp" width="50"/></td>
<td>Not Implemented yet.</td>
</tr>
<tr>
<td>Hunter Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/huntercape.webp" width="50"/></td>
<td>Not Implemented yet.</td>
</tr>
<tr>
<td>Mining Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/miningcape.webp" width="50"/></td>
<td>Your mastery of mining has brought you a great familiarity with the grain of rocks. It becomes slightly faster to mine any ore.</td>
</tr>
<tr>
<td>Smithing Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/smithingcape.webp" width="50"/></td>
<td>Due to your absolute mastery with working metal, smithing no longer requires a hammer. Unlimited uses.</td>
</tr>
<tr>
<td>Fishing Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/fishingcape.webp" width="50"/></td>
<td>Your skill with the harpoon makes you really great at timing your throws. 5% chance to catch two fish at once when harpoon fishing. Does not award additional xp for the second fish.</td>
</tr>
<tr>
<td>Cooking Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/cookingcape.webp" width="50"/></td>
<td>You've mastered the culinary arts and have gotten wise enough to speed up your cooking, but you've gotten a bit careless - with a flame too high, you'll burn food slightly more often.</td>
</tr>
<tr>
<td>Firemaking Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/firemakingcape.webp" width="50"/></td>
<td>The firemaking skillcape constantly emits a warm glow, making it function as a light source.</td>
</tr>
<tr>
<td>Woodcutting Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/woodcuttingcape.webp" width="50"/></td>
<td>You almost have a sixth sense when it comes to finding birds' nests. Nests are automatically collected into your inventory if you have space when dropped from a tree while woodcutting.</td>
</tr>
<tr>
<td>Farming Cape</td>
<td><img height="80" src="/site/2009scape-resources/img/game_guide/skill_capes/farmingcape.webp" width="50"/></td>
<td>Your farming cape seems to get a lot of seeds stuck to it. Operate once per day to claim 10 completely random seeds.</td>
</tr>
</table>
<tr>
<td colspan="2">
<div class="bold">Further Help</div>
Need more help? Come chat with us!
<ul class="further">
<li><a href="https://discord.gg/43YPGND">Discord</a>
</li>
<li>
<a href="https://forum.2009scape.org/">Forums</a>
</li>
</ul>
</td>
</tr>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="search">
<div class="searchtop">
<div class="bottombordershad">
<div class="leftshadow">
<div class="rightshadow">
<div class="topleft">
<div class="topright">
<div class="bottomleftshad">
<div class="bottomrightshad">
<div class="searchtext">
<p style="text-align: center;font-size:11px;font-weight:bold; margin-bottom: 0px;">
<img src="/site/img/2009img/main/kbase/redpartyhat.webp" alt="Cute Red Partyhat icon"/>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>
{% include further-help.html %}

View File

@ -1,219 +0,0 @@
---
title: Commands
tags: game_guide
layout: guide
---
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Commands
</h1>
</div>
</div>
</div>
<div class="section">
<div class="article_theme_1">
<div class="article">
<div class="topshadow">
<div class="bottomborder">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottomleft">
<div class="bottomright">
<div class="links"> </div>
<br class="clear"/>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Commands</span></span>
</div><br/>
<br/>
<br/>
<br/>
<br/>
<h3> Players </h3>
<div id="commandss" style="font-size: 14px;">
<ul>
<li> ::highscores - launches the highscores for the world you are logged into</li>
<li> ::discord - launches a link to for the invite to our discord.</li>
<li> ::resetpassword - resets your password </li>
<li> ::stats - shows cool stats!</li>
<li> ::quests - display currently implemented quests.</li>
<li> ::playsong - Plays a specific song</li>
<li> ::shop - Opens the credit shop </li>
<li> ::ge buying - Opens up the section of what players are buying on the ge.</li>
<li> ::ge selling - Opens up the section of what players are selling on the ge.</li>
<li> ::ge search - Allows you to search for an item that possibly could be being sold or bought on the ge.</li>
<li> ::ge bots - Opens up the section of what bots are selling on the ge.</li>
<li> ::ge botsearch - Allows you to search for an item that a bot could be possibly selling on the ge.</li>
<li> ::reply - similar to tab where you can respond right away to someone. </li>
<li> ::loc - prints the player's location </li>
<li>::togglexp - toggles the xp drop interface on or off.</li>
<li>::xpconfig - used for configuring the xp drop interface
<ul>
<li>::xpconfig track recent/total - choose whether to track most recent or total xp </li>
<li>::xpconfig mode increment/instant - whether the total xp updates incrementally (when the xp drops reach it) or instantly (when the xp is gained) only applies to when total xp is being tracked</li>
</ul>
</li>
<li>::toggleslayer - While you have a task you can toggle the slayer counter! </li>
<li>::debug - enable debug info</li>
<li>::fpson - shows the fps overlay (overwrites the xp drop interface until client is restarted)</li>
</ul>
<h3> Moderators </h3>
<b>Can use Player Commands too</b>
<ul>
<li> ::pnpc - Transforms player in an npc </li>
<li> ::jail - Jails a player in Varrock's Jail cell.</li>
<li> ::players - Shows what players are online </li>
<li> ::kick - Kicks a player.</li>
<li> ::mute - Mutes a player.</li>
</ul>
<h3> Admins </h3>
<b>Can use Moderator &amp; Player Commands too</b>
<ul>
<b>Animation Commands </b>
<br>
<br>
<ul>
<li> ::anim - Forces the player to play an animation. </li>
<li> ::loopanim - Forces the player to loop an animation. ::loopanim i.d amount </li>
<li> ::ranim - Forces the player to render an animation </li>
<li> ::ranimreset - Resets player's render animation to default. </li>
<li> ::npcareaanim - Forces animation + messages on all npcs in a radius of 10. </li>
</ul>
<br>
<br>
<b>Spawn Commands</b>
<br>
<br>
<ul>
<li> ::npc - Spawns an npc with given i.d </li>
<li> ::item - spawns an item with given i.d </li>
<li> ::object - spawns object with given i.d at player's location. </li>
</ul>
<br>
<br>
<b>Teleport Commands </b>
<br>
<br>
<ul>
<li> ::to - teleports you to a specific place. EX: ::to varrock </li>
<li> ::tele - teleports you to a location. EX ::tele x y z </li>
<li> ::teleto - teleports you to a player </li>
<li> ::teletome - teleports a player to you </li>
<li> ::home - teleports you to lumbridge </li>
<li> ::tostar - teleports you to shooting star </li>
</ul>
<br>
<br>
<b>Developer Commands</b>
<br>
<br>
<ul>
<li> ::farmkit - gives the items you'll need for farming.</li>
<li> ::spellbook - swaps your spellbook between normal, ancient and lunar.</li>
<li> ::killme - kills your player</li>
<li> ::1hit - Kills any monsters with 1 hit.</li>
<li> ::god - gives you overly boosted stats.</li>
<li> ::max - gives max stats.</li>
<li> ::bank - opens your bank</li>
<li> ::finishtask - Finishe's a player's slayer task.</li>
<li> ::rolltrawlerloot - gets random fishing trawler loot sent to your bank.</li>
<li> ::allmusic - Unlocks all music.</li>
<li> ::allquest - Unlocks all quests.</li>
<li> ::setslayerpoints : Sets the player's slayer points.</li>
<li> ::submit - Creates a new shooting star</li>
<li> ::resetsprite - Resets the timer in which the sprite stays waiting.</li>
<li> ::setlevel - sets a skill to a specific level</li>
<li> ::update - updates the server </li>
<li> ::cancelupdate - cancels the update before the timner counts all the way down.</li>
<li> ::announce - creates an announcement in chat </li>
</ul>
<br>
<br>
<b>Moderation Commands for Admins</b>
<br>
<br>
<ul>
<li>::empty - empties a player's inventory</li>
<li>::emptybank - removes everything from your bank </li>
<li>::setpasswordother - sets another player's password for them.</li>
<li>::removeitem - removes an item from a player's inventory. ::removeitem user_name item_id item_amount</li>
<li>::ban - bans a user for a set amount of time. ex: ::ban 500.</li>
</ul>
<br>
<br>
<b>Fun Commands</b>
<ul>
<li>::mrboneswildride - Plays a funny animation off a player in a minecart repeating "I want to get off Mr. Bones Wild Ride" over and over again.</li>
<li>::invis - makes you invisible to other players.</li>
<li>::potato - gives a rotten potato</li>
</ul>
</ul>
<br>
<br>
<h3>Singleplayer Exclusive Commands</h3>
(<b style="font-size: 12px;">Scripts must be set to true in your default.config</b>)
<ul>
<li> ::scripts - gives a list of botting scripts you can use.</li>
<li> ::stopscript - stops the script you are running.</li>
</ul>
</div>
<tr>
<td colspan="2">
<div class="bold">Further Help</div>
Need more help? Come chat with us!
<ul class="further">
<li><a href="https://discord.gg/43YPGND">Discord</a>
</li>
<li>
<a href="https://forum.2009scape.org/">Forums</a>
</li>
</ul>
</td>
</tr>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="search">
<div class="searchtop">
<div class="bottombordershad">
<div class="leftshadow">
<div class="rightshadow">
<div class="topleft">
<div class="topright">
<div class="bottomleftshad">
<div class="bottomrightshad">
<div class="searchtext">
<p style="text-align: center;font-size:11px;font-weight:bold; margin-bottom: 0px;">
<img src="/site/img/2009img/main/kbase/redpartyhat.webp" alt="Cute Red Partyhat icon"/>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>

View File

@ -0,0 +1,136 @@
---
title: Commands
tags: game_guide
layout: guide
---
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Commands</span></span>
</div>
### Players
- ::highscores - launches the highscores for the world you are logged into
- ::discord - launches a link to for the invite to our discord
- ::resetpassword - resets your password
- ::stats - shows cool stats
- ::quests - display currently implemented quests
- ::playsong - Plays a specific song
- ::shop - Opens the credit shop
- ::ge buying - Opens up the section of what players are buying on the ge.
- ::ge selling - Opens up the section of what players are selling on the ge.
- ::ge search - Allows you to search for an item that possibly could be being sold or bought on the ge.
- ::ge bots - Opens up the section of what bots are selling on the ge.
- ::ge botsearch - Allows you to search for an item that a bot could be possibly selling on the ge.
- ::reply - similar to tab where you can respond right away to someone.
- ::loc - prints the player's location
- ::togglexp - toggles the xp drop interface on or off.
- ::xpconfig - used for configuring the xp drop interface
- ::xpconfig track recent/total - choose whether to track most recent or total xp
- ::xpconfig mode increment/instant - whether the total xp updates incrementally (when the xp drops reach it) or instantly (when the xp is gained) only applies to when total xp is being tracked
- ::toggleslayer - While you have a task you can toggle the slayer counter!
- ::debug - enable debug info
- ::fpson - shows the fps overlay (overwrites the xp drop interface until client is restarted)
### Moderators
**Can use Player Commands too**
- ::pnpc - Transforms player in an npc
- ::jail - Jails a player in Varrock's Jail cell
- ::players - Shows what players are online
- ::kick - Kicks a player
- ::mute - Mutes a player
### Admins
**Can use Moderator & Player Commands too**
<ul>
<b>Animation Commands </b>
<br>
<br>
<ul>
<li> ::anim - Forces the player to play an animation. </li>
<li> ::loopanim - Forces the player to loop an animation. ::loopanim i.d amount </li>
<li> ::ranim - Forces the player to render an animation </li>
<li> ::ranimreset - Resets player's render animation to default. </li>
<li> ::npcareaanim - Forces animation + messages on all npcs in a radius of 10. </li>
</ul>
<br>
<br>
<b>Spawn Commands</b>
<br>
<br>
<ul>
<li> ::npc - Spawns an npc with given i.d </li>
<li> ::item - spawns an item with given i.d </li>
<li> ::object - spawns object with given i.d at player's location. </li>
</ul>
<br>
<br>
<b>Teleport Commands </b>
<br>
<br>
<ul>
<li> ::to - teleports you to a specific place. EX: ::to varrock </li>
<li> ::tele - teleports you to a location. EX ::tele x y z </li>
<li> ::teleto - teleports you to a player </li>
<li> ::teletome - teleports a player to you </li>
<li> ::home - teleports you to lumbridge </li>
<li> ::tostar - teleports you to shooting star </li>
</ul>
<br>
<br>
<b>Developer Commands</b>
<br>
<br>
<ul>
<li> ::farmkit - gives the items you'll need for farming.</li>
<li> ::spellbook - swaps your spellbook between normal, ancient and lunar.</li>
<li> ::killme - kills your player</li>
<li> ::1hit - Kills any monsters with 1 hit.</li>
<li> ::god - gives you overly boosted stats.</li>
<li> ::max - gives max stats.</li>
<li> ::bank - opens your bank</li>
<li> ::finishtask - Finishe's a player's slayer task.</li>
<li> ::rolltrawlerloot - gets random fishing trawler loot sent to your bank.</li>
<li> ::allmusic - Unlocks all music.</li>
<li> ::allquest - Unlocks all quests.</li>
<li> ::setslayerpoints : Sets the player's slayer points.</li>
<li> ::submit - Creates a new shooting star</li>
<li> ::resetsprite - Resets the timer in which the sprite stays waiting.</li>
<li> ::setlevel - sets a skill to a specific level</li>
<li> ::update - updates the server </li>
<li> ::cancelupdate - cancels the update before the timner counts all the way down.</li>
<li> ::announce - creates an announcement in chat </li>
</ul>
<br>
<br>
<b>Moderation Commands for Admins</b>
<br>
<br>
<ul>
<li>::empty - empties a player's inventory</li>
<li>::emptybank - removes everything from your bank </li>
<li>::setpasswordother - sets another player's password for them.</li>
<li>::removeitem - removes an item from a player's inventory. ::removeitem user_name item_id item_amount</li>
<li>::ban - bans a user for a set amount of time. ex: ::ban 500.</li>
</ul>
<br>
<br>
<b>Fun Commands</b>
<ul>
<li>::mrboneswildride - Plays a funny animation off a player in a minecart repeating "I want to get off Mr. Bones Wild Ride" over and over again.</li>
<li>::invis - makes you invisible to other players.</li>
<li>::potato - gives a rotten potato</li>
</ul>
</ul>
### Singleplayer Exclusive Commands
(**Scripts must be set to true in your default.config**)
- ::scripts - gives a list of botting scripts you can use.</li>
- ::stopscript - stops the script you are running.</li>
{% include further-help.html %}

View File

@ -1,142 +0,0 @@
---
title: The two worlds
tags: game_guide
layout: guide
---
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Our Two Worlds
</h1>
</div>
</div>
</div>
<div class="section">
<div class="article_theme_1">
<div class="article">
<div class="topshadow">
<div class="bottomborder">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottomleft">
<div class="bottomright">
<br/><a name="Introduction"></a><br class="clear"/>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">History</span></span>
</div> <br/>
<br/>
<p> When you pull up the launcher you notice that there are two play buttons. One for World 1 and one for World 2.
We've had our fair share of people come in either wanting completely authentic content or some inauthentic content.
For awhile with the votes on inauthentic stuff being added to 2009scape were pretty much 100% wanted. However,
in early January of 2021 we did a poll to see if players would like perks to be added to the skill capes. This was the
first poll where we started to see a lot of people not wanting this but a lot of people did want it. So the divide for
what was added was starting to become noticeable. The main thing about 2009scape was to recreate the version of the game
as it was in 2009.
</p>
<p> We ended up doing a poll to see if people wanted to have two separate worlds where players on World 1 would have all authentic
content with super minor QoL updates and a World 2 with the ability to add custom stuff to the server as long as it kept the 2009
charm of the game. As you can see it was polled and voted in to have two separate worlds.
<img height="300" src="../2009scape-resources/img/game_guide/theDifferentWorlds.webp" style="margin-left: 13%; margin-top: 5%;" width="500"/>
<br/>
<br/>
</p>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Present</span></span>
</div> <br/>
<p>
As of right now World 1 and World 2 aren't very different but do have a few differences.
</p><table class="tableForWorlds">
<tr class="trForWorlds">
<td class="tdForWorlds"> <b>Skill Cape Perks</b> </td>
<td class="tdForWorlds"> Skill Cape perks are special abilities that were added to the skill capes. Each ability was voted in on our discord and
a few more are still to come and be voted on! If you would like to see what the perks are click <a href="./skill_cape_perks.html">here!</a>
</td>
</tr>
<tr class="trForWorlds">
<td class="tdForWorlds"> <b>Slayer rerolls</b> </td>
<td class="tdForWorlds"> On World 2, you are able to request to reroll the slayer task without the need of slayer points.</td>
</tr>
<tr class="trForWorlds">
<td class="tdForWorlds"> <b>Different Experience Rates</b> </td>
<td class="tdForWorlds"> As stated in the getting started guide that World 2 does have four different experience rates : x2.5, x5, x10 and x20!</td>
</tr>
<tr class="trForWorlds">
<td class="tdForWorlds"> <b>Community Events</b> </td>
<td class="tdForWorlds"> On World 1, things stay pretty much the same. The rewards for playing on World 1 do win you more credits; however, World 2 allows
for more admin interaction with different spawnable events! This does include holiday events this is strictly for community events hosted by our community manager : Kermit
</td>
</tr>
</table>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Future</span></span>
</div> <br/>
<p> The future looks bright for both worlds. Do keep in mind that one world is not better than the other and we care for both worlds.
We plan on keeping the updates coming with just a hint of extra updates for the World 2. Keep informed of updates on our discord!
</p>
<div class="backtotop"><a href="#top">Back to the top</a></div>
<center>
<img alt="" src="../img/main/kbase/hr.webp"/>
</center>
<table class="bottomlinks">
<tr>
</tr>
<tr>
<td class="bot"><p></p><div class="bold">More articles in
<a href="./manual.html">Game Guide</a>
</div>
<ul class="bold">
<li>
<a href="play.html">How do I get started?</a>
</li>
<li>
<b>The Two Worlds</b>
</li>
</ul>
</td>
</tr>
<tr>
<td colspan="2">
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="search">
<div class="searchtop">
<div class="bottombordershad">
<div class="leftshadow">
<div class="rightshadow">
<div class="topleft">
<div class="topright">
<div class="bottomleftshad">
<div class="bottomrightshad">
<div class="searchtext">
<p style="text-align: center;font-size:11px;font-weight:bold; margin-bottom: 0px;"><img src="/site/img/2009img/main/kbase/redpartyhat.webp" alt="Cute Red Partyhat icon"/></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br class="clear"/>
</div>

View File

@ -0,0 +1,71 @@
---
title: The two worlds
tags: game_guide
layout: guide
---
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">History</span></span>
</div>
When you pull up the launcher you notice that there are two play buttons.
One for World 1 and one for World 2.
We've had our fair share of people come in either wanting completely authentic content or some inauthentic content.
For awhile with the votes on inauthentic stuff being added to 2009scape were pretty much 100% wanted.
However, in early January of 2021 we did a poll to see if players would like perks to be added to the skill capes.
This was the first poll where we started to see a lot of people not wanting this but a lot of people did want it.
So the divide for what was added was starting to become noticeable.
The main thing about 2009scape was to recreate the version of the game as it was in 2009.
We ended up doing a poll to see if people wanted to have two separate worlds where players on World 1 would have all authentic content with super minor QoL updates and a World 2 with the ability to add custom stuff to the server as long as it kept the 2009 charm of the game.
As you can see it was polled and voted in to have two separate worlds.
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Present</span></span>
</div>
As of right now World 1 and World 2 aren't very different but do have a few differences.
<table class="tableForWorlds">
<tr class="trForWorlds">
<td class="tdForWorlds"><b>Skill Cape Perks</b></td>
<td class="tdForWorlds">
Skill Cape perks are special abilities that were added to the skill capes.
Each ability was voted in on our discord and a few more are still to come and be voted on! If you would like to see what the perks are click <a href="./skill_cape_perks.html">here!</a>
</td>
</tr>
<tr class="trForWorlds">
<td class="tdForWorlds"><b>Slayer rerolls</b></td>
<td class="tdForWorlds">On World 2, you are able to request to reroll the slayer task without the need of slayer points.</td>
</tr>
<tr class="trForWorlds">
<td class="tdForWorlds"><b>Different Experience Rates</b> </td>
<td class="tdForWorlds">As stated in the getting started guide that World 2 does have four different experience rates : x2.5, x5, x10 and x20!</td>
</tr>
<tr class="trForWorlds">
<td class="tdForWorlds"><b>Community Events</b> </td>
<td class="tdForWorlds">
On World 1, things stay pretty much the same.
The rewards for playing on World 1 do win you more credits; however, World 2 allows for more admin interaction with different spawnable events! This does include holiday events this is strictly for community events hosted by our community manager : Kermit
</td>
</tr>
</table>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Future</span></span>
</div>
The future looks bright for both worlds.
Do keep in mind that one world is not better than the other and we care for both worlds.
We plan on keeping the updates coming with just a hint of extra updates for the World 2. Keep informed of updates on our discord!
<center>
<img alt="" src="/site/img/main/kbase/hr.webp"/>
</center>
### Further Help
More articles in [Game Guide](./manual.html)
- [How do I get started?](./play.html)
- The Two Worlds

View File

@ -1,92 +0,0 @@
---
title: Ur-Tag
tags: game_guide
layout: guide
---
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Ur-Tag
</h1>
</div>
</div>
</div>
<div class="section">
<div class="article_theme_1">
<div class="article">
<div class="topshadow">
<div class="bottomborder">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottomleft">
<div class="bottomright">
<div class="links"> </div>
<br class="clear"/>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Ur-Tag - The messenger</span></span>
</div><br/>
<p>
Meet Ur-tag, the Cave goblin that facilitates communications between the Cave Goblins and Humans.
The sole point of this bot is to connect matrix users with discord users. As tradition, we mention
all additions to our bot family on our website.
</p>
</div>
<div style="margin-left: 6%;">
<tr>
<td colspan="2">
<div class="bold">Further Help</div>
Need more help? Come chat with us!
<ul class="further">
<li><a href="https://discord.gg/43YPGND">Discord</a>
</li>
<li>
<a href="https://forum.2009scape.org/">Forums</a>
</li>
</ul>
</td>
</tr>
</div>
<br/>
<br/>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="search">
<div class="searchtop">
<div class="bottombordershad">
<div class="leftshadow">
<div class="rightshadow">
<div class="topleft">
<div class="topright">
<div class="bottomleftshad">
<div class="bottomrightshad">
<div class="searchtext">
<p style="text-align: center;font-size:11px;font-weight:bold; margin-bottom: 0px;">
<img src="/site/img/2009img/main/kbase/redpartyhat.webp" alt="Cute Red Partyhat icon"/>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>

15
site/game_guide/ur-tag.md Normal file
View File

@ -0,0 +1,15 @@
---
title: Ur-Tag
tags: game_guide
layout: guide
---
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Ur-Tag - The messenger</span></span>
</div>
Meet Ur-tag, the Cave goblin that facilitates communications between the Cave Goblins and Humans.
The sole point of this bot is to connect Matrix users with Discord users.
As tradition, we mention all additions to our bot family on our website.
{% include further-help.html %}

View File

@ -1,120 +0,0 @@
---
title: Zanik
tags: game_guide
layout: guide
---
<div id="content">
<div id="article">
<div class="sectionHeader">
<div class="left">
<div class="right">
<h1 class="plaque">
Zanik
</h1>
</div>
</div>
</div>
<div class="section">
<div class="article_theme_1">
<div class="article">
<div class="topshadow">
<div class="bottomborder">
<div class="leftshadow">
<div class="rightshadow">
<div class="leftcorner">
<div class="rightcorner">
<div class="bottomleft">
<div class="bottomright">
<div class="links"> </div>
<br class="clear"/>
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Zanik - Beloved Discord Bot</span></span>
</div><br/>
<p>
Meet <b style="color:goldenrod">Zanik</b>, our beloved discord bot written by <b style="color:darkred">Ceikry</b> in Rust.
The bot isn't to replace the 2009scape bot but to add even more functionality to the discord! With <b style="color:goldenrod">Zanik</b>, you
are able to use a few commands that will liven up your experience within discord and even more will be added in time.
<br/>
<br/>
<b>Normal Discord member commands</b>
</p><ul>
<li> ::level: Allows you to check your level in discord of your discord account. The levels are gained from just having conversation and <b style="color:goldenrod">Zanik</b> will keep track of your message total! </li>
<li> ::top: Will show you the top 10 people who have left messages within the discord.</li>
<li> ::wiki name: Will bring up the page for the specific thing but in 2009. Example: ::wiki potato , will bring up the 2009 page on RS Wiki for Potato.</li>
<li> ::goblify: It will randomly generate a goblin name for you like the land of goblin's quest. ( Currently on June 3rd 2022, command is not working. )</li>
</ul>
<br/>
<b>Staff commands</b>
<ul>
<li>::clear # : clears however messages you have specified. (up to 100 messages)</li>
<li>::exit : exits out of the bot to let it update.</li>
<li>::poll subject text here :: emoji1 option1, emoji 2 option2 - Runs a poll with two different emojis and options </li>
<li>::endpoll message_id: edits the given meesage to say end of poll.</li>
<li>::reboot: Reboots the server.</li>
</ul>
<b style="color:goldenrod">Zanik</b> will also say "scam!" after a user types in "woah".
This is an insider for our previous host, woahscam. You can find more about him here : <a href="../community/staff.html">Click.</a>
Make sure to keep updated with this new bot to make sure you're taking advantage of any new features that are released for it.
I'm sure more will come.
<br>
<br>
Ever since the removal of the 2009scape discord bot, Zanik has been ignoring the asterisk commands and started listening to users who use the colons. Also
as of May of 2022, Zanik no longer responds to the kickme command.
<br>
<br>
</p>
</div>
<div style="margin-left: 6%;">
<tr>
<td colspan="2">
<div class="bold">Further Help</div>
Need more help? Come chat with us!
<ul class="further">
<li><a href="https://discord.gg/43YPGND">Discord</a>
</li>
<li>
<a href="https://forum.2009scape.org/">Forums</a>
</li>
</ul>
</td>
</tr>
</div>
<br/>
<br/>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="search">
<div class="searchtop">
<div class="bottombordershad">
<div class="leftshadow">
<div class="rightshadow">
<div class="topleft">
<div class="topright">
<div class="bottomleftshad">
<div class="bottomrightshad">
<div class="searchtext">
<p style="text-align: center;font-size:11px;font-weight:bold; margin-bottom: 0px;">
<img src="/site/img/2009img/main/kbase/redpartyhat.webp" alt="Cute Red Partyhat icon"/>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>

38
site/game_guide/zanik.md Normal file
View File

@ -0,0 +1,38 @@
---
title: Zanik
tags: game_guide
layout: guide
---
<div class="headings">
<span class="headertitleleft"><span class="headertitleright">Zanik - Beloved Discord Bot</span></span>
</div>
Meet **Zanik**, our beloved discord bot written by *Ceikry* in Rust.
The bot isn't to replace the 2009scape bot but to add even more functionality to the discord! With **Zanik**, you are able to use a few commands that will liven up your experience within discord and even more will be added in time.
### Normal Discord member commands
- ::level: Allows you to check your level in discord of your discord account. The levels are gained from just having conversation and **Zanik** will keep track of your message total!
- ::top: Will show you the top 10 people who have left messages within the discord.
- ::wiki name: Will bring up the page for the specific thing but in 2009. Example: ::wiki potato , will bring up the 2009 page on RS Wiki for Potato.
- ::goblify: It will randomly generate a goblin name for you like the land of goblin's quest. ( Currently on June 3rd 2022, command is not working. )
### Staff commands
- ::clear # : clears however messages you have specified. (up to 100 messages)
- ::exit : exits out of the bot to let it update.
- ::poll subject text here :: emoji1 option1, emoji 2 option2 - Runs a poll with two different emojis and options
- ::endpoll message_id: edits the given meesage to say end of poll.
- ::reboot: Reboots the server.
**Zanik** will also say "scam!" after a user types in "woah".
This is an insider for our previous host, woahscam. You can find more about him here: [Click](/site/community/staff.html).
Make sure to keep updated with this new bot to make sure you're taking advantage of any new features that are released for it.
I'm sure more will come.
Ever since the removal of the 2009scape discord bot, Zanik has been ignoring the asterisk commands and started listening to users who use the colons.
Also as of May of 2022, Zanik no longer responds to the kickme command.
{% include further-help.html %}

Some files were not shown because too many files have changed in this diff Show More