-
Notifications
You must be signed in to change notification settings - Fork 9
/
iriscalc.html
67 lines (61 loc) · 2.96 KB
/
iriscalc.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<html>
<head>
<title>Clicker Lister - Clicker Heroes Data Decoder</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<div class="center">
<table width="100%" border="0">
<tr>
<td colspan="2" align="center" valign="middle"><p>
</p></td>
</tr>
<tr>
<td colspan="2" align="center" valign="middle"><p><em></em></p></td>
</tr>
<tr>
<td align="center" valign="middle"><strong>
<p>Input Data</p>
</strong></td>
<td align="center" valign="middle"><strong>
<p>Output Data</p>
</strong></td>
</tr>
<tr>
<td align="center" valign="middle"><span class="infotext">Paste your Clicker Heroes save into this box.</span></td>
<td align="center" valign="middle"><span class="infotext">Copy the text from this box into your chat window.</span></td>
</tr>
<tr>
<td align="center" valign="middle"><strong><span class="infotext">Click on the <span id="sprytrigger1" class="tooltip">spanner</span> icon at the top right ingame to export your save data to your clipboard.</strong></span></td>
<td align="center" valign="middle"><strong><span class="infotext">This tool automatically splits the output data into lines of 250 characters for the Kongregate chat limit.</strong></span></td>
</tr>
<tr>
<td align="center" valign="middle"><textarea id="input" cols="65" rows="40" type="text"></textarea></td>
<td align="center" valign="middle"><textarea id="output" cols="65" rows="40" type="text"></textarea></td>
</tr>
<tr>
<td align="center" valign="middle"><button id="calcButton" class="button">Calculate!</button></td>
<td align="center" valign="middle"><button onclick="ClearTextArea();" class="button">Clear Data!</button></td>
</tr>
<tr>
<td colspan="2" align="center" valign="middle" class="footer"><p>Coding By <a href="http://www.kongregate.com/accounts/Lilylicious">Lilylicious</a> | Page Design By <a href="http://www.kongregate.com/accounts/Deadmano">Deadmano</a> & <a href="http://www.kongregate.com/accounts/Lilylicious">Lilylicious</a> | <a href="http://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a> | <a href="https://github.com/Dwargkiller/clicker-lister">Source</a></p></td>
</tr>
</table>
</div>
<div class="tooltipContent" id="sprytooltip1"><img src="img/spanner.png"></div>
<script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/md5.js"></script>
<script src="js/jquery.js"></script>
<script src="common/saveDecoder.js"></script>
<script src="common/commonvars.js"></script>
<script src="common/datareader.js"></script>
<script src="calculators/iriscalc.js"></script>
<script src="js/SpryTooltip.js" type="text/javascript"></script>
<script type="text/javascript">
var sprytooltip1 = new Spry.Widget.Tooltip("sprytooltip1", "#sprytrigger1");
function ClearTextArea() {
document.getElementById("input").value='';
document.getElementById("output").value='';
}
</script>
</body>
</html>