gctGenerator/index.html

61 lines
4.3 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="GMSP01">GMSP01 (PAL)</option>
2018-01-17 06:42:49 +09:00
<option value="GMSJ01">GMSJ01 (NTSC-J 1.0)</option>
<option value="GMSJ0A">GMSJ01 (NTSC-J 1.1/A)</option>
</select>
<ul id="checkList">
</ul>
2017-12-05 14:58:00 +09:00
<button id="downloadButton" onclick="generateGCT()" onmouseover="setButtonDescription(this)" style="visibility:hidden;">Download .GCT</button>
<button id="dolphinDownloadButton" onclick="generateTXT(this)" onmouseover="setButtonDescription(this)" style="visibility:hidden;">Dolphin INI</button>
<button id="gcmDownloadButton" onclick="generateTXT(this)" onmouseover="setButtonDescription(this)" style="visibility:hidden;">GCM TXT</button>
</center>
</div>
<div style="margin-left:420px;">
2018-01-18 12:28:55 +09:00
<table id="warningMessage">
<tr>
2018-01-18 12:40:50 +09:00
<th><a target="_blank" href="http://smsunshine.challonge.com/any2018"><img src="img/challonge.png" alt="Challonge" align="left" /></a></th>
2018-01-18 12:28:55 +09:00
<th style="text-align:center">
<a target="_blank" href="http://smsunshine.challonge.com/any2018">2018 Super Mario Sunshine Any% Tournament</a><br />
Signup deadline: February 14th
</th>
2018-01-18 12:40:50 +09:00
<th><a target="_blank" href="http://smsunshine.challonge.com/any2018"><img src="img/challonge.png" alt="Challonge" align="right" /></a></th>
</tr>
</table>
2017-10-19 04:19:45 +09:00
<div id="descriptionBox" class="framed">
<h2>Mario Sunshine Cheatfile Generator</h2>
<p style="margin:0"><i>Authors: <a target="_blank" href="https://twitter.com/psychonauter">Psy</a> &amp; <a target="_blank" href="https://twitter.com/srlmilk">Milk</a></i></p>
2018-01-20 09:04:18 +09:00
<p style="margin:0"><i>Last Updated: Jan 20, 2018</i></p>
<h4>Description:</h4>
<p>This is a cheatfile generator for Super Mario Sunshine 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>. Visit the <a target="_blank" href="guide.html#3">troubleshooting section</a> if you encounter any issues.</p>
<h4>Changelog:</h4>
<p id="changelog"></p>
2018-01-09 07:27:11 +09:00
<hr style="border-color:grey;">
<div style="text-align:center;margin:18px 0px 7px 0px">
<a target="_blank" href="https://discord.gg/0SoktBcRDw8B1NJB" title="Sunshine Community Discord"><img src="img/discord_bubble.png" style="margin:0px 7px;vertical-align:middle" alt="Sunshine Community Discord" /></a>
<a target="_blank" href="https://speedrun.com/sms" title="Sunshine Leaderboards"><img src="img/src_bubble.png" style="margin:0px 7px;vertical-align:middle" alt="Sunshine Leaderboards" /></a>
<h4 style="display:inline;vertical-align:middle;margin:0px 10px">Sunshine Community</h4>
<a target="_blank" href="https://twitter.com/SMSCommunity" title="Sunshine Community Twitter"><img src="img/twitter_bubble.png" style="margin:0px 7px;vertical-align:middle" alt="Sunshine Community Twitter" /></a>
<a target="_blank" href="https://www.twitch.tv/SunshineCommunity" title="Sunshine Community Twitch"><img src="img/twitch_bubble.png" style="margin:0px 7px;vertical-align:middle" alt="Sunshine Community Twitch" /></a>
</div>
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>
2018-01-18 05:19:23 +09:00
</html>