mirror of
https://github.com/2009scape/2009scape.github.io.git
synced 2024-11-09 04:22:40 +01:00
372 lines
14 KiB
HTML
372 lines
14 KiB
HTML
|
||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||
<html>
|
||
|
||
<!-- Mirrored from services/m=forum/sl=0/forums.ws?13,14,rules by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 12:17:03 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.png">
|
||
|
||
<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>
|
||
|
||
|
||
<link href="../../../site/css/forum3-7.css" rel="stylesheet" type="text/css" media="all"/>
|
||
<script type="text/javascript">//<![CDATA[
|
||
|
||
|
||
|
||
|
||
|
||
|
||
function save_state_change(group,hidden) {
|
||
|
||
var groups = get_groups();
|
||
|
||
var gstring = "";
|
||
|
||
if (groups!=null) {
|
||
for (var i=0;i<groups.length;i++) {
|
||
if (group!=groups[i] && groups[i]!=-1) {
|
||
if (gstring.length>0) gstring += ",";
|
||
gstring += groups[i];
|
||
}
|
||
}
|
||
}
|
||
if (hidden) {
|
||
if (gstring.length>0) gstring += ",";
|
||
gstring += group;
|
||
}
|
||
|
||
if (gstring=="") gstring = "-1";
|
||
var expires=new Date();
|
||
expires.setDate(expires.getDate()+5000);
|
||
document.cookie = "g="+gstring+";expires="+expires.toGMTString();
|
||
}
|
||
|
||
|
||
function get_groups() {
|
||
var cookie=document.cookie;
|
||
if (document.cookie!=null) {
|
||
|
||
var crumbs=cookie.split(";");
|
||
if (crumbs!=null) {
|
||
for (var i=0;i<crumbs.length;i++) {
|
||
pair = crumbs[i].split("=");
|
||
if (pair!=null && pair.length==2 && (pair[0]=="g" || pair[0]==" g")) {
|
||
|
||
var gstring = pair[1];
|
||
return gstring.split(",");
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
|
||
var groups_to_hide = get_groups();
|
||
|
||
function describe(what) {
|
||
a="";
|
||
for(part in what) a+=part + "=" + what[part] + "\n";
|
||
return a;
|
||
}
|
||
|
||
function replace_classname(node,oldclass,replacement) {
|
||
$(node).removeClass(oldclass).addClass(replacement);
|
||
}
|
||
|
||
var show_group = function() {}
|
||
var hide_group = function() {}
|
||
|
||
|
||
|
||
function showhide(show,group) {
|
||
var $table = $("#group"+group+" tr:not(:first), #group"+group+" tr:first td:not(:first)");
|
||
var $controls = $("#showhide"+group).unbind("click");
|
||
if(show){
|
||
$table.show();
|
||
$controls
|
||
.html("<span class='hidefgroup' title='Click to hide this forum group'></span>")
|
||
.click(function(){ return hide_group(group); });
|
||
}
|
||
else{
|
||
$table.hide();
|
||
$controls
|
||
.html("<span class='showfgroup' title='Click to show this forum group'></span>")
|
||
.click(function(){ return show_group(group); });
|
||
}
|
||
if($table.length + $controls.length > 3) return true;
|
||
return false;
|
||
}
|
||
show_group = function(group) {
|
||
var success = showhide(true,group);
|
||
if (success) {
|
||
save_state_change(group,false);
|
||
}
|
||
return false;
|
||
}
|
||
hide_group = function(group) {
|
||
var success = showhide(false,group);
|
||
if (success) {
|
||
save_state_change(group,true);
|
||
}
|
||
return false;
|
||
}
|
||
function is_group_hidden(group) {
|
||
if (groups_to_hide!=null) {
|
||
for (var i=0;i<groups_to_hide.length;i++) {
|
||
if (groups_to_hide[i]==group) {
|
||
return true;
|
||
}
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
|
||
//]]></script>
|
||
|
||
|
||
</head>
|
||
<body id="navcommunity" 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="../../../site/game.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="../../../secure/m%3dcreate/index.html" class="fly"><span>New Users</span></a></li>
|
||
<li><a href="../../../site/game.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="../../../secure/m%3dweblogin/members/members.html" class="fly"><span>Upgrade Your Account</span></a></li>
|
||
<li><a href="../../../secure/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]-->
|
||
<!--[if lte IE 6]><iframe src=""></iframe><![endif]-->
|
||
<ul>
|
||
<li><a href="../../../site/kbase/guid/manual.html" class="fly"><span>Manual</span></a></li>
|
||
<li><a href="../../../secure/m%3dweblogin/loginform802b.html" class="fly"><span>QuestHelp</span></a></li>
|
||
<li><a href="../../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="forums.html"><span class="ts">Community</span><!--[if gt IE 6]><!--></a><!--<![endif]-->
|
||
<!--[if lte IE 6]><table><tr><td><![endif]-->
|
||
<!--[if lte IE 6]><iframe src=""></iframe><![endif]-->
|
||
<ul>
|
||
<li><a href="forums.html" class="fly"><span>Forums</span></a></li>
|
||
<li><a href="../../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="../../m%3dadventurers-log/index.html" class="fly"><span>Adventurer's Log</span></a></li>
|
||
|
||
<li><a href="../../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 & 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]-->
|
||
<!--[if lte IE 6]><iframe src=""></iframe><![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&dest=loginapplet/loginapplet.ws?mod=accountappeal&dest=passwordchoice.ws" class="fly"><span>Password Recovery</span></a></li>
|
||
<li><a href="../../../site/loginapplet/loginappletef7e.html?mod=www&dest=loginapplet/loginapplet.ws?mod=accountappeal&dest=lockchoice.ws" class="fly"><span>Locked Account Recovery</span></a></li>
|
||
<li><a href="../../../secure/m%3dweblogin/loginform14d4.html?mod=offence-appeal&dest=index.ws" class="fly"><span>Appeal Bans & Mutes</span></a></li>
|
||
<li><a href="../../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="../../../secure/m%3dweblogin/loginformc089.html?mod=forum&ssl=0&dest=login.ws" id="login" class="tl"><span class="ts">Log In</span></a></li>
|
||
</ul>
|
||
<br class="clear" />
|
||
</div>
|
||
|
||
<div id="bannerNoad">
|
||
<a href="../../../site/game.html" class="HoverImg" id="playBannerNoad"><img src="../../../site/img/main/skins/default/playnowc20a.png?12" alt="Play Now" /></a>
|
||
</div>
|
||
<div id="scroll">
|
||
<div id="head"><div id="headBg">
|
||
<div id="langAndLogin">
|
||
|
||
<div id="lang">
|
||
<a href="forums.html"><img alt="English" title="English" src="../../../site/img/main/layout/en.gif" /></a>
|
||
<a href="http://services/m=forum_de/l=1/forums.ws"><img alt="Deutsch" title="Deutsch" src="../../../site/img/main/layout/de.gif" /></a>
|
||
<a href="http://services/m=forum_fr/l=2/forums.ws"><img alt="Français" title="Français" src="../../../site/img/main/layout/fr.gif" /></a>
|
||
<a href="http://services/m=forum_pt/l=3/forums.ws"><img alt="Português (BR)" title="Português (BR)" src="../../../site/img/main/layout/br.gif" /></a>
|
||
<a href="../sl%3d4/forums.html"><img alt="Finnish" title="Finnish" src="../../../site/img/forum/flags/finnish.gif" /></a>
|
||
<a href="../sl%3d1/forums.html"><img alt="Dutch" title="Dutch" src="../../../site/img/forum/flags/dutch.gif" /></a>
|
||
<a href="../sl%3d3/forums.html"><img alt="Spanish" title="Spanish" src="../../../site/img/forum/flags/spanish.gif" /></a>
|
||
<a href="../sl%3d7/forums.html"><img alt="Polish" title="Polish" src="../../../site/img/forum/flags/polish.gif" /></a>
|
||
<a href="../sl%3d5/forums.html"><img alt="Swedish" title="Swedish" src="../../../site/img/forum/flags/swedish.gif" /></a>
|
||
<a href="../sl%3d2/forums.html"><img alt="Danish" title="Danish" src="../../../site/img/forum/flags/danish.gif" /></a>
|
||
<a href="../sl%3d6/forums.html"><img alt="Norwegian" title="Norwegian" src="../../../site/img/forum/flags/norwegian.gif" /></a>
|
||
</div>
|
||
|
||
|
||
</div>
|
||
|
||
|
||
<div class="navigation">
|
||
<div class="location">
|
||
<b>Location: </b> <a href="../../../site/title.html">Home</a> >
|
||
<a href="forums.html"><span>RuneScape Forums</span></a>
|
||
|
||
<span class="divider">></span>
|
||
<span><span>News & Announcements Rules</span></span>
|
||
</div>
|
||
</div>
|
||
</div></div>
|
||
<div id="content">
|
||
<div id="article">
|
||
<div class="sectionHeader">
|
||
<div class="left">
|
||
<div class="right">
|
||
<h1 class="plaque">
|
||
RuneScape Forums
|
||
</h1>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="section">
|
||
<div class="brown_background">
|
||
<div id="contrast_panel">
|
||
<div id="infopane">
|
||
<span class="title">News & Announcements</span>
|
||
<div class="about">
|
||
<ul class="flat">
|
||
<li><img src="../../../site/img/forum/cmdicons/code_of_conduct.gif" alt=""/> <a href="codeofconduct.html">Code of Conduct</a></li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
<div id="nocontrols" class="phold"></div>
|
||
<div class="plhold" id="top">
|
||
</div>
|
||
<div id="info">
|
||
<div class="bk"></div>
|
||
<div class="cont"><font color="gold"><b><u>News & Announcements Forum Guide</u></b></font>
|
||
|
||
<p>Welcome to the News Forum. :)</p>
|
||
|
||
<font color="#00FF33"><b><u>What is the News & Announcements Forum for?</u></b></font>
|
||
|
||
<p>The News & Announcements forum is where Jagex staff will post the latest information about RuneScape.
|
||
|
||
To discuss recent updates, please use the <a href="forums99d0.html?15,16" target="_blank">Recent Updates Forum</a>.</p>
|
||
|
||
<font color="#00FF33"><b><u>FAQ</u></b></font>
|
||
<ul>
|
||
<li>I<EFBFBD>ve found a bug! How do I let Jagex know?
|
||
<p><i>If you think you may have found a bug, then there are two ways to report it to us:<p>
|
||
i. Complete a bug report form by following this link: <a href=%94http__/bugtracker-v4.runescape.com/index.html index.html<EFBFBD> target=<EFBFBD>_blank<EFBFBD>>Submit a Bug Report</a><p>
|
||
ii. Make a post in the appropriate category within the <a href=%94forums6a80.html?120,121<32> target=<EFBFBD>_blank<EFBFBD>>Bug Reporting Forum</a><p>
|
||
Either of these will send the information directly to our bugtracking staff. Please don't post about bugs anywhere else in the forums, as there is no guarantee that your post will be seen by the people who need to see it. Thanks!
|
||
</p></i>
|
||
</ul></div>
|
||
</div>
|
||
<div id="menu">
|
||
<a href="forumsb65c.html?13,14">Back to thread list</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<br class="clear"/>
|
||
</div>
|
||
<div class="navigation">
|
||
<div class="location">
|
||
<b>Location: </b> <a href="../../../site/title.html">Home</a> >
|
||
<a href="forums.html"><span>RuneScape Forums</span></a>
|
||
|
||
<span class="divider">></span>
|
||
<span><span>News & Announcements Rules</span></span>
|
||
</div>
|
||
</div>
|
||
<div id="footer">
|
||
<div class="contain">
|
||
<div class="footerdesc">
|
||
This website and its contents are copyright <20> under AGPL.<br />
|
||
Use of this website is subject to our <a href="../../../site/terms/terms.html">Terms & Conditions</a> and <a href="../../../site/privacy/privacy.html">Privacy Policy</a>.
|
||
</div>
|
||
<a class="jagexlink" href="../../../www.jagex.com/index.html" target="_blank">
|
||
<img src="../../../site/img/main/layout/jagexc20a.png?12" 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 services/m=forum/sl=0/forums.ws?13,14,rules by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 18 Jul 2010 12:17:03 GMT -->
|
||
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
|
||
</html>
|