gctGenerator/index.html

48 lines
2.6 KiB
HTML
Raw Normal View History

2017-09-28 22:21:01 +09:00
<!DOCTYPE HTML>
2017-09-28 01:14:25 +09:00
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
2017-11-09 03:35:31 +09:00
<meta name="description" content="Generates cheatfiles for Super Mario Sunshine speedrun practice.">
<link rel="stylesheet" href="style/style.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<title>SMS GCT Generator</title>
</head>
<body onload="updateChangelog()">
<div style="width: 100%; overflow: hidden;">
<div style="width: 400px; float: left;">
<center>
<select id="gameID" class="selectionHeader" onchange="updateCodelist()" autocomplete="off">
<option selected disabled hidden>Choose Version</option>
<option value="GMSE01">GMSE01 (NTSC-U)</option>
<option value="GMSJ01">GMSJ01 (NTSC-J 1.0)</option>
<option value="GMSP01">GMSP01 (PAL)</option>
</select>
<ul id="checkList">
</ul>
<button id="downloadButton" onclick="generateGCT()" style="visibility:hidden;">Download GCT</button>
2017-11-11 22:42:12 +09:00
<button id="dolphinDownloadButton" onclick="generateINI()" style="visibility:hidden; background-color:#5c90aa; margin-bottom: 20px;">Download for Dolphin</button>
</center>
</div>
<div style="margin-left: 420px;">
<table id="warningMessage">
<tr>
<th><img src="img/warning.png" width="40px" height="40px"></img></th>
<th>The 'Shine Get Timer' and 'Shine Touch Timer' now require the Level Select code to be active! See <a target="_blank" href="changelog.html#1711061">Changelog</a> for details.</th>
<th><img src="img/warning.png" width="40px" height="40px"></img></th>
</tr>
</table>
2017-10-19 04:19:45 +09:00
<div id="descriptionBox" class="framed">
<p>
<h2>Mario Sunshine Cheatfile Generator</h2>
</p>
2017-11-13 05:15:32 +09:00
<p><i>Authors: <a href="https://twitter.com/psychonauter">Psy</a> & <a href="https://twitter.com/srlmilk">Milk</a><br />Last Updated: Nov 12, 2017</i></p>
2017-11-10 18:24:31 +09:00
<p>Description:<br />This is a cheatfile generator for SMS Speedrun practice. A guide on how to use the generator and practice codes on your Wii can be found here: <a target="_blank" href="guide.html">Guide</a></p>
<h4>Changelog:</h4>
<p id="changelog"></p>
2017-09-28 22:21:01 +09:00
</div>
</div>
</div>
2017-11-06 22:23:13 +09:00
<script language="javascript" src="gctGenerator.js"></script>
</body>
2017-11-06 22:23:13 +09:00
</html>