2014-08-04 03:49:33 +00:00
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
2014-03-15 16:59:03 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>
|
|
|
|
Sonic Robo Blast 2 Manual
|
|
|
|
</title>
|
2014-08-04 03:49:33 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="srb2manstyle.css">
|
|
|
|
<!-- Borrowed some javascript code so the height of the iframe is equal to the size of the document - Sonict -->
|
|
|
|
<script type="text/javascript">
|
|
|
|
/* free code from dyn-web.com */
|
|
|
|
|
|
|
|
function getDocHeight(doc) {
|
|
|
|
doc = doc || document;
|
|
|
|
// from http://stackoverflow.com/questions/1145850/get-height-of-entire-document-with-javascript
|
|
|
|
var body = doc.body, html = doc.documentElement;
|
2014-11-12 00:55:07 +00:00
|
|
|
var height = Math.max( body.scrollHeight, body.offsetHeight,
|
2014-08-04 03:49:33 +00:00
|
|
|
html.clientHeight, html.scrollHeight, html.offsetHeight );
|
|
|
|
return height;
|
|
|
|
}
|
|
|
|
|
|
|
|
function setIframeHeight(id) {
|
|
|
|
var ifrm = document.getElementById(id);
|
|
|
|
var doc = ifrm.contentDocument? ifrm.contentDocument: ifrm.contentWindow.document;
|
|
|
|
ifrm.style.visibility = 'hidden';
|
|
|
|
ifrm.style.height = "10px"; // reset to minimal height in case going from longer to shorter doc
|
|
|
|
ifrm.style.height = getDocHeight( doc ) + "px";
|
|
|
|
ifrm.style.visibility = 'visible';
|
|
|
|
}
|
|
|
|
</script>
|
2014-03-15 16:59:03 +00:00
|
|
|
<meta http-equiv="Content-type" content="text/html; charset=UTF-8">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p class="c1">
|
2014-08-04 03:49:33 +00:00
|
|
|
<img src="manual_img/sonicname2.png" alt="SONIC" width="136" height="36">
|
2014-03-15 16:59:03 +00:00
|
|
|
<br>
|
2014-08-04 03:49:33 +00:00
|
|
|
<img src="manual_img/srb2banner.png" alt="ROBO BLAST 2" width="224" height="43">
|
2014-03-15 16:59:03 +00:00
|
|
|
</p>
|
|
|
|
<p class="c1">
|
2014-08-04 03:49:33 +00:00
|
|
|
<big><big><strong>Manual</strong></big></big>
|
2014-03-15 16:59:03 +00:00
|
|
|
</p>
|
2014-08-04 03:49:33 +00:00
|
|
|
<table class="cf" align="center">
|
|
|
|
<tr><td class="c">
|
|
|
|
<ul class="hmenu">
|
|
|
|
<li class="hmenu"><a class="hmenu" href="intro.htm" target="ifrm">Main</a></li>
|
|
|
|
<li class="hmenu"><a class="hmenu" href="items.htm" target="ifrm">Items</a></li>
|
|
|
|
<li class="hmenu"><a class="hmenu" href="playerabilities.htm" target="ifrm">Player Abilities</a></li>
|
|
|
|
<li class="hmenu"><a class="hmenu" href="basicplay.htm" target="ifrm">Gameplay</a></li>
|
|
|
|
<li class="hmenu"><a class="hmenu" href="surroundings.htm" target="ifrm">Surroundings</a></li>
|
|
|
|
</ul>
|
|
|
|
</td></tr>
|
|
|
|
<tr><td class="c">
|
|
|
|
<ul class="hmenu">
|
|
|
|
<li class="hmenu"><a class="hmenu" href="multiplayer.htm" target="ifrm">Multiplayer</a></li>
|
|
|
|
<li class="hmenu"><a class="hmenu" href="zones.htm" target="ifrm">Zones</a></li>
|
|
|
|
<li class="hmenu"><a class="hmenu" href="controls.htm" target="ifrm">Controls</a></li>
|
|
|
|
<li class="hmenu"><a class="hmenu" href="consolecommands.htm" target="ifrm">Console Commands</a></li>
|
|
|
|
<li class="hmenu"><a class="hmenu" href="misc.htm" target="ifrm">Misc</a></li>
|
|
|
|
</ul>
|
|
|
|
</td></tr>
|
2014-03-15 16:59:03 +00:00
|
|
|
</table>
|
|
|
|
<hr>
|
|
|
|
<p class="c1">
|
2014-08-04 03:49:33 +00:00
|
|
|
<!-- The "onload" property of the iframe makes an error when validated through the W3C validation checker. -->
|
|
|
|
<!-- This will not be fixed as it isn't worth the time to fix it up properly. - Sonict -->
|
|
|
|
<iframe id="ifrm" name="ifrm" src="intro.htm" onload="setIframeHeight(this.id)"> </iframe>
|
2014-03-15 16:59:03 +00:00
|
|
|
</p>
|
|
|
|
</body>
|
2014-11-12 00:55:07 +00:00
|
|
|
</html>
|